diff options
author | NeilBrown <neilb@suse.de> | 2006-01-06 03:20:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:34:07 -0500 |
commit | 1345b1d8adbdeceb1c871d9a4af5e2a700b341c6 (patch) | |
tree | 0da1db7d273752ad5281db415e9245f3f3a63383 /include | |
parent | 7dd5d34c6c2da04e8cd0732e08b33cd3359e4bae (diff) |
[PATCH] md: define and use safe_put_page for md
md sometimes call put_page on NULL pointers (treating it like kfree). This is
not safe, so define and use a 'safe_put_page' which checks for NULL.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/raid/md_k.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h index e559fb701aa1..12b3203e3419 100644 --- a/include/linux/raid/md_k.h +++ b/include/linux/raid/md_k.h | |||
@@ -324,5 +324,10 @@ do { \ | |||
324 | __wait_event_lock_irq(wq, condition, lock, cmd); \ | 324 | __wait_event_lock_irq(wq, condition, lock, cmd); \ |
325 | } while (0) | 325 | } while (0) |
326 | 326 | ||
327 | static inline void safe_put_page(struct page *p) | ||
328 | { | ||
329 | if (p) put_page(p); | ||
330 | } | ||
331 | |||
327 | #endif | 332 | #endif |
328 | 333 | ||