The patch titled v850: call init_page_count() instead of set_page_count() has been added to the -mm tree. Its filename is v850-call-init_page_count-instead-of-set_page_count.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: v850: call init_page_count() instead of set_page_count() From: Miles Bader <miles@xxxxxxx> Signed-off-by: Miles Bader <miles@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/v850/kernel/setup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN arch/v850/kernel/setup.c~v850-call-init_page_count-instead-of-set_page_count arch/v850/kernel/setup.c --- a/arch/v850/kernel/setup.c~v850-call-init_page_count-instead-of-set_page_count +++ a/arch/v850/kernel/setup.c @@ -1,8 +1,8 @@ /* * arch/v850/kernel/setup.c -- Arch-dependent initialization functions * - * Copyright (C) 2001,02,03,05 NEC Electronics Corporation - * Copyright (C) 2001,02,03,05 Miles Bader <miles@xxxxxxx> + * Copyright (C) 2001,02,03,05,06 NEC Electronics Corporation + * Copyright (C) 2001,02,03,05,06 Miles Bader <miles@xxxxxxx> * * This file is subject to the terms and conditions of the GNU General * Public License. See the file COPYING in the main directory of this @@ -190,7 +190,7 @@ void free_initmem (void) for (addr = start; addr < end; addr += PAGE_SIZE) { struct page *page = virt_to_page (addr); ClearPageReserved (page); - set_page_count (page, 1); + init_page_count (page); __free_page (page); total_ram_pages++; } _ Patches currently in -mm which might be from miles@xxxxxxx are v850-remove-symbol-exports-which-duplicate-global-ones.patch v850-call-init_page_count-instead-of-set_page_count.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html