Skip to content

Commit

Permalink
[PATCH] __mod_page_state(): pass unsigned long instead of unsigned
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
bcrl authored and Linus Torvalds committed Jun 22, 2005
1 parent 1ad539b commit 83e5d8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/linux/page-flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct page_state {
extern void get_page_state(struct page_state *ret);
extern void get_full_page_state(struct page_state *ret);
extern unsigned long __read_page_state(unsigned offset);
extern void __mod_page_state(unsigned offset, unsigned long delta);
extern void __mod_page_state(unsigned long offset, unsigned long delta);

#define read_page_state(member) \
__read_page_state(offsetof(struct page_state, member))
Expand Down
2 changes: 1 addition & 1 deletion mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 83e5d8f

Please sign in to comment.