Skip to content

Commit

Permalink
mm/page_alloc.c: fix indentation
Browse files Browse the repository at this point in the history
zlc_setup(): handle jiffies wraparound
(10ed273) changes tab with spaces

Signed-off-by: S.Caglar Onur <caglar@pardus.org.tr>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
Cc: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
S.Caglar Onur authored and Linus Torvalds committed Apr 28, 2008
1 parent 7edf85a commit f05111f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm/page_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ static nodemask_t *zlc_setup(struct zonelist *zonelist, int alloc_flags)
if (!zlc)
return NULL;

if (time_after(jiffies, zlc->last_full_zap + HZ)) {
if (time_after(jiffies, zlc->last_full_zap + HZ)) {
bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
zlc->last_full_zap = jiffies;
}
Expand Down

0 comments on commit f05111f

Please sign in to comment.