[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080311095631.GT25110@elte.hu>
Date: Tue, 11 Mar 2008 10:56:31 +0100
From: Ingo Molnar <mingo@...e.hu>
To: Alexander van Heukelum <heukelum@...lshack.com>
Cc: Alexander van Heukelum <heukelum@...tmail.fm>,
Andi Kleen <andi@...stfloor.org>,
Thomas Gleixner <tglx@...utronix.de>,
"H. Peter Anvin" <hpa@...or.com>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [RFC/PATCH] x86: Optimize find_next_(zero_)bit for small
constant-size bitmaps
* Alexander van Heukelum <heukelum@...lshack.com> wrote:
> x86: Optimize find_next_(zero_)bit for small constant-size bitmaps
thanks, looks nice, except for a small detail:
> +#ifdef CONFIG_GENERIC_FIND_NEXT_BIT
> +unsigned long __find_next_bit(const unsigned long *addr,
> + unsigned long size, unsigned long offset);
> +
> +static __always_inline unsigned long
> +find_next_bit(const unsigned long *addr, unsigned long size,
> + unsigned long offset)
> +#endif /* CONFIG_GENERIC_FIND_NEXT_BIT */
there should be an #else here i think, which maps find_next_bit to
__find_next_bit / etc.
small syntactic nit:
> +unsigned long __find_next_bit(const unsigned long *addr,
> + unsigned long size, unsigned long offset);
should be explicitly "extern", so that we see that it's a prototype
declaration.
Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists