[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>
This commit is contained in:
committed by
Linus Torvalds
parent
1ad539b2bd
commit
83e5d8f725
@@ -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;
|
||||
|
Reference in New Issue
Block a user