aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/snap.c
diff options
context:
space:
mode:
authorSF Markus Elfring <elfring@users.sourceforge.net>2014-11-02 09:20:59 -0500
committerIlya Dryomov <idryomov@redhat.com>2014-12-17 12:09:50 -0500
commite96a650a8174e20112b400e72e0b2429aa66de20 (patch)
tree44fa588afe9ee1b9504016e012c3dcffb184b87b /fs/ceph/snap.c
parent70db4f3629b3476cf506be869ef9d15688d2d44a (diff)
ceph, rbd: delete unnecessary checks before two function calls
The functions ceph_put_snap_context() and iput() test whether their argument is NULL and then return immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> [idryomov@redhat.com: squashed rbd.c hunk, changelog] Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
Diffstat (limited to 'fs/ceph/snap.c')
-rw-r--r--fs/ceph/snap.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index f01645a27752..c1cc993225e3 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -365,8 +365,7 @@ static int build_snap_context(struct ceph_snap_realm *realm)
365 realm->ino, realm, snapc, snapc->seq, 365 realm->ino, realm, snapc, snapc->seq,
366 (unsigned int) snapc->num_snaps); 366 (unsigned int) snapc->num_snaps);
367 367
368 if (realm->cached_context) 368 ceph_put_snap_context(realm->cached_context);
369 ceph_put_snap_context(realm->cached_context);
370 realm->cached_context = snapc; 369 realm->cached_context = snapc;
371 return 0; 370 return 0;
372 371
@@ -590,15 +589,13 @@ static void queue_realm_cap_snaps(struct ceph_snap_realm *realm)
590 if (!inode) 589 if (!inode)
591 continue; 590 continue;
592 spin_unlock(&realm->inodes_with_caps_lock); 591 spin_unlock(&realm->inodes_with_caps_lock);
593 if (lastinode) 592 iput(lastinode);
594 iput(lastinode);
595 lastinode = inode; 593 lastinode = inode;
596 ceph_queue_cap_snap(ci); 594 ceph_queue_cap_snap(ci);
597 spin_lock(&realm->inodes_with_caps_lock); 595 spin_lock(&realm->inodes_with_caps_lock);
598 } 596 }
599 spin_unlock(&realm->inodes_with_caps_lock); 597 spin_unlock(&realm->inodes_with_caps_lock);
600 if (lastinode) 598 iput(lastinode);
601 iput(lastinode);
602 599
603 list_for_each_entry(child, &realm->children, child_item) { 600 list_for_each_entry(child, &realm->children, child_item) {
604 dout("queue_realm_cap_snaps %p %llx queue child %p %llx\n", 601 dout("queue_realm_cap_snaps %p %llx queue child %p %llx\n",