aboutsummaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorBenjamin LaHaise <bcrl@kvack.org>2005-06-21 17:14:54 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 18:46:17 -0700
commit83e5d8f7253cb7b14472385a6d57df1e9f848e8e (patch)
treebafb314103aefbb5699aed2b2b284d8954a888d9 /mm
parent1ad539b2bd89bf2e129123eb24d5bcc4484a35de (diff)
[PATCH] __mod_page_state(): pass unsigned long instead of unsigned
By making the offset argument of __mod_page_state an unsigned long instead of unsigned, we can avoid forcing the compiler to sign extend a usually constant argument. This saves 1 instruction on x86-64. Signed-off-by: Benjamin LaHaise <benjamin.c.lahaise@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/page_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 70f710286ce..c976628f9d9 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1158,7 +1158,7 @@ unsigned long __read_page_state(unsigned offset)
return ret;
}
-void __mod_page_state(unsigned offset, unsigned long delta)
+void __mod_page_state(unsigned long offset, unsigned long delta)
{
unsigned long flags;
void* ptr;