[PATCH] ufs: ufs_get_locked_page() race fix
authorEvgeniy Dushistov <dushistov@mail.ru>
Sat, 5 Aug 2006 19:13:55 +0000 (12:13 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sun, 6 Aug 2006 15:57:46 +0000 (08:57 -0700)
commit1fb32b7bd8203d0175649a75ede3ee7634d6a941
tree1c0b7bd06835ce37dc2fc18a95fe3fe22c2ce556
parente91467ecd1ef381377fd327c0ded922835ec52ab
[PATCH] ufs: ufs_get_locked_page() race fix

As discussed earlier:
http://lkml.org/lkml/2006/6/28/136
this patch fixes such issue:

`ufs_get_locked_page' takes page from cache
after that `vmtruncate' takes page and deletes it from cache
`ufs_get_locked_page' locks page, and reports about EIO error.

Also because of find_lock_page always return valid page or NULL, we have no
need to check it if page not NULL.

Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/ufs/util.c