mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
ceph: remove unnecessary NULL check
If page->mapping is NULL, releasepage() callback does not get called. Remove the unnecessary NULL check to make static code analysis tool happy Signed-off-by: Yan, Zheng <zyan@redhat.com>
This commit is contained in:
parent
a3d714c336
commit
4531126753
@ -175,8 +175,8 @@ static void ceph_invalidatepage(struct page *page, unsigned int offset,
|
||||
|
||||
static int ceph_releasepage(struct page *page, gfp_t g)
|
||||
{
|
||||
struct inode *inode = page->mapping ? page->mapping->host : NULL;
|
||||
dout("%p releasepage %p idx %lu\n", inode, page, page->index);
|
||||
dout("%p releasepage %p idx %lu\n", page->mapping->host,
|
||||
page, page->index);
|
||||
WARN_ON(PageDirty(page));
|
||||
|
||||
/* Can we release the page from the cache? */
|
||||
|
Loading…
Reference in New Issue
Block a user