Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ea0043a authored by Sage Weil's avatar Sage Weil
Browse files

ceph: drop unnecessary WARN_ON in caps migration



If we don't have the exported cap it's because we already released it. No
need to WARN.

Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent 12eadc19
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2550,9 +2550,8 @@ static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
			ci->i_cap_exporting_issued = cap->issued;
		}
		__ceph_remove_cap(cap);
	} else {
		WARN_ON(!cap);
	}
	/* else, we already released it */

	spin_unlock(&inode->i_lock);
}