]> Git Repo - linux.git/commit - mm/memory.c
calculation of pgoff in do_linear_fault() uses mixed units
authorDean Nelson <[email protected]>
Tue, 16 Oct 2007 08:24:45 +0000 (01:24 -0700)
committerLinus Torvalds <[email protected]>
Tue, 16 Oct 2007 16:42:53 +0000 (09:42 -0700)
commit0da7e01f5f37f441cccd7c8c0586e06db0981907
tree3d43edc4166667948415de84254bd60cfb457734
parent2408c55037c3f7d51a8a100025c47595e71b838c
calculation of pgoff in do_linear_fault() uses mixed units

The calculation of pgoff in do_linear_fault() should use PAGE_SHIFT and not
PAGE_CACHE_SHIFT since vma->vm_pgoff is in units of PAGE_SIZE and not
PAGE_CACHE_SIZE.  At the moment linux/pagemap.h has PAGE_CACHE_SHIFT
defined as PAGE_SHIFT, but should that ever change this calculation would
break.

Signed-off-by: Dean Nelson <[email protected]>
Acked-by: Nick Piggin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/memory.c
This page took 0.053426 seconds and 4 git commands to generate.