Skip to content

Commit

Permalink
ceph: move dereference after NULL test
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
  • Loading branch information
Alexander Beregalov authored and Sage Weil committed Feb 23, 2010
1 parent 5b3a4db commit 4ce1e9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fs/ceph/addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ static int ceph_set_page_dirty(struct page *page)
*/
static void ceph_invalidatepage(struct page *page, unsigned long offset)
{
struct inode *inode = page->mapping->host;
struct inode *inode;
struct ceph_inode_info *ci;
struct ceph_snap_context *snapc = (void *)page->private;

Expand All @@ -153,6 +153,8 @@ static void ceph_invalidatepage(struct page *page, unsigned long offset)
BUG_ON(!PagePrivate(page));
BUG_ON(!page->mapping);

inode = page->mapping->host;

/*
* We can get non-dirty pages here due to races between
* set_page_dirty and truncate_complete_page; just spit out a
Expand Down

0 comments on commit 4ce1e9a

Please sign in to comment.