* [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity.
@ 2009-04-24 12:46 Robert P. J. Day
2009-04-27 15:59 ` Christoph Lameter
2009-04-27 17:04 ` Johannes Weiner
0 siblings, 2 replies; 4+ messages in thread
From: Robert P. J. Day @ 2009-04-24 12:46 UTC (permalink / raw)
To: linux-mm; +Cc: Andrew Morton
Replace some conditional tests with the semantically clearer call to
is_power_of_2().
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
there are other tests of the form "n & (n - 1)" in mm/, but they are
testing for single bitness so they should be left alone.
compile-tested on x86_64 with "make defconfig".
diff --git a/mm/bootmem.c b/mm/bootmem.c
index daf9271..5b379c2 100644
--- a/mm/bootmem.c
+++ b/mm/bootmem.c
@@ -12,6 +12,7 @@
#include <linux/pfn.h>
#include <linux/bootmem.h>
#include <linux/module.h>
+#include <linux/log2.h>
#include <asm/bug.h>
#include <asm/io.h>
@@ -438,7 +439,7 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
align, goal, limit);
BUG_ON(!size);
- BUG_ON(align & (align - 1));
+ BUG_ON(!is_power_of_2(align));
BUG_ON(limit && goal + size > limit);
if (!bdata->node_bootmem_map)
diff --git a/mm/dmapool.c b/mm/dmapool.c
index b1f0885..2a26e5e 100644
--- a/mm/dmapool.c
+++ b/mm/dmapool.c
@@ -36,6 +36,7 @@
#include <linux/string.h>
#include <linux/types.h>
#include <linux/wait.h>
+#include <linux/log2.h>
#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB_DEBUG_ON)
#define DMAPOOL_DEBUG 1
@@ -135,7 +136,7 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
if (align == 0) {
align = 1;
- } else if (align & (align - 1)) {
+ } else if (!is_power_of_2(align)) {
return NULL;
}
@@ -152,7 +153,7 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
if (!boundary) {
boundary = allocation;
- } else if ((boundary < size) || (boundary & (boundary - 1))) {
+ } else if ((boundary < size) || !is_power_of_2(boundary)) {
return NULL;
}
diff --git a/mm/slub.c b/mm/slub.c
index 7ab54ec..640831a 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -26,6 +26,7 @@
#include <linux/memory.h>
#include <linux/math64.h>
#include <linux/fault-inject.h>
+#include <linux/log2.h>
/*
* Lock order:
@@ -3056,7 +3057,7 @@ void __init kmem_cache_init(void)
* around with ARCH_KMALLOC_MINALIGN
*/
BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
- (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
+ (!is_power_of_2(KMALLOC_MIN_SIZE)));
for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Annoying Kernel Pedantry.
Web page: http://crashcourse.ca
Linked In: http://www.linkedin.com/in/rpjday
Twitter: http://twitter.com/rpjday
========================================================================
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity.
2009-04-24 12:46 [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity Robert P. J. Day
@ 2009-04-27 15:59 ` Christoph Lameter
2009-04-27 17:04 ` Johannes Weiner
1 sibling, 0 replies; 4+ messages in thread
From: Christoph Lameter @ 2009-04-27 15:59 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: linux-mm, Andrew Morton
Acked-by: Christoph Lameter <cl@linux-foundation.org>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity.
2009-04-24 12:46 [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity Robert P. J. Day
2009-04-27 15:59 ` Christoph Lameter
@ 2009-04-27 17:04 ` Johannes Weiner
2009-04-27 19:58 ` Andrew Morton
1 sibling, 1 reply; 4+ messages in thread
From: Johannes Weiner @ 2009-04-27 17:04 UTC (permalink / raw)
To: Robert P. J. Day; +Cc: linux-mm, Andrew Morton
On Fri, Apr 24, 2009 at 08:46:15AM -0400, Robert P. J. Day wrote:
>
> Replace some conditional tests with the semantically clearer call to
> is_power_of_2().
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
>
> ---
>
> there are other tests of the form "n & (n - 1)" in mm/, but they are
> testing for single bitness so they should be left alone.
>
> compile-tested on x86_64 with "make defconfig".
>
>
> diff --git a/mm/bootmem.c b/mm/bootmem.c
> index daf9271..5b379c2 100644
> --- a/mm/bootmem.c
> +++ b/mm/bootmem.c
> @@ -12,6 +12,7 @@
> #include <linux/pfn.h>
> #include <linux/bootmem.h>
> #include <linux/module.h>
> +#include <linux/log2.h>
>
> #include <asm/bug.h>
> #include <asm/io.h>
> @@ -438,7 +439,7 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
> align, goal, limit);
>
> BUG_ON(!size);
> - BUG_ON(align & (align - 1));
> + BUG_ON(!is_power_of_2(align));
Note that this is no 1:1 translation. align could be zero before but
not anymore. Have you checked whether all callsites are ready for
this? The common bootmem macros use alignment to cacheline or page
boundary. I haven't checked all callsites that might use __api,
though.
OTOH, it's doubtful that 'no alignment' should be expressed as 0
instead of 1.
Still, it probably makes sense to express this change in semantics in
the changelog.
> diff --git a/mm/slub.c b/mm/slub.c
> index 7ab54ec..640831a 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -26,6 +26,7 @@
> #include <linux/memory.h>
> #include <linux/math64.h>
> #include <linux/fault-inject.h>
> +#include <linux/log2.h>
>
> /*
> * Lock order:
> @@ -3056,7 +3057,7 @@ void __init kmem_cache_init(void)
> * around with ARCH_KMALLOC_MINALIGN
> */
> BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
> - (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
> + (!is_power_of_2(KMALLOC_MIN_SIZE)));
Maybe you can remove the parens here. But that's probably optional.
Hannes
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity.
2009-04-27 17:04 ` Johannes Weiner
@ 2009-04-27 19:58 ` Andrew Morton
0 siblings, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2009-04-27 19:58 UTC (permalink / raw)
To: Johannes Weiner; +Cc: rpjday, linux-mm
On Mon, 27 Apr 2009 19:04:28 +0200
Johannes Weiner <hannes@cmpxchg.org> wrote:
> > @@ -438,7 +439,7 @@ static void * __init alloc_bootmem_core(struct bootmem_data *bdata,
> > align, goal, limit);
> >
> > BUG_ON(!size);
> > - BUG_ON(align & (align - 1));
> > + BUG_ON(!is_power_of_2(align));
>
> Note that this is no 1:1 translation. align could be zero before but
> not anymore. Have you checked whether all callsites are ready for
> this? The common bootmem macros use alignment to cacheline or page
> boundary. I haven't checked all callsites that might use __api,
> though.
>
> OTOH, it's doubtful that 'no alignment' should be expressed as 0
> instead of 1.
>
> Still, it probably makes sense to express this change in semantics in
> the changelog.
ooh, yeah, well spotted. There may well be code out there which sets
align=0.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-04-27 20:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-24 12:46 [PATCH] MM: Rewrite some tests with is_power_of_2() for clarity Robert P. J. Day
2009-04-27 15:59 ` Christoph Lameter
2009-04-27 17:04 ` Johannes Weiner
2009-04-27 19:58 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).