Commit 80310491 authored by Sage Weil's avatar Sage Weil

ceph: remove bogus invalidate_mapping_pages

We were invalidating mapping pages when dropping FILE_CACHE in
__send_cap().  But ceph_check_caps attempts to invalidate already, and
also checks for success, so we should never get to this point.
Signed-off-by: default avatarSage Weil <sage@newdream.net>
parent 0840d8af
......@@ -1137,12 +1137,6 @@ static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
spin_unlock(&inode->i_lock);
if (dropping & CEPH_CAP_FILE_CACHE) {
/* invalidate what we can */
dout("invalidating pages on %p\n", inode);
invalidate_mapping_pages(&inode->i_data, 0, -1);
}
ret = send_cap_msg(session, ceph_vino(inode).ino, cap_id,
op, keep, want, flushing, seq, flush_tid, issue_seq, mseq,
size, max_size, &mtime, &atime, time_warp_seq,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment