[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Prezeroing V2 [2/4]: add second parameter to clear_page() for all arches
- From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx>
- Date: Sat, 1 Jan 2005 11:24:43 +0100 (MET)
- References: <B8E391BBE9FE384DAA4C5C003888BE6F02900FBD@scsmsx401.amr.corp.intel.com> <41C20E3E.3070209@yahoo.com.au> <Pine.LNX.4.58.0412211154100.1313@schroedinger.engr.sgi.com> <Pine.LNX.4.58.0412231119540.31791@schroedinger.engr.sgi.com> <Pine.LNX.4.58.0412231132170.31791@schroedinger.engr.sgi.com> <Pine.LNX.4.58.0412231133130.31791@schroedinger.engr.sgi.com>
On Thu, 23 Dec 2004, Christoph Lameter wrote:
> o Extend clear_page to take an order parameter for all architectures.
> Index: linux-2.6.9/include/asm-m68k/page.h
> ===================================================================
> --- linux-2.6.9.orig/include/asm-m68k/page.h 2004-10-18 14:55:36.000000000 -0700
> +++ linux-2.6.9/include/asm-m68k/page.h 2004-12-23 07:44:14.000000000 -0800
> @@ -50,7 +50,7 @@
> );
> }
>
> -static inline void clear_page(void *page)
> +static inline void clear_page(void *page, int order)
> {
> unsigned long tmp;
> unsigned long *sp = page;
> @@ -69,16 +69,16 @@
> "dbra %1,1b\n\t"
> : "=a" (sp), "=d" (tmp)
> : "a" (page), "0" (sp),
> - "1" ((PAGE_SIZE - 16) / 16 - 1));
> + "1" (((PAGE_SIZE<<(order)) - 16) / 16 - 1));
> }
>
> #else
> -#define clear_page(page) memset((page), 0, PAGE_SIZE)
> +#define clear_page(page, 0) memset((page), 0, PAGE_SIZE << (order))
^
order
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Follow-Ups: