diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-06-27 22:25:23 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-07-04 18:58:23 -0400 |
commit | 516162b92d1b72995ce796b98bb8c7992d9f5b5f (patch) | |
tree | dce6d5cb4a83c21eae658ad2c8bbcd61448b2b6c /fs/ceph | |
parent | 570d7a98e7d6d5d8706d94ffd2d40adeaa318332 (diff) | |
download | linux-516162b92d1b72995ce796b98bb8c7992d9f5b5f.tar.gz linux-516162b92d1b72995ce796b98bb8c7992d9f5b5f.tar.bz2 linux-516162b92d1b72995ce796b98bb8c7992d9f5b5f.zip |
ceph: don't open-code the check for dead lockref
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 0637149fb9f9..206d3b56e8f1 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c @@ -1255,7 +1255,7 @@ __dentry_leases_walk(struct ceph_mds_client *mdsc, if (!spin_trylock(&dentry->d_lock)) continue; - if (dentry->d_lockref.count < 0) { + if (__lockref_is_dead(&dentry->d_lockref)) { list_del_init(&di->lease_list); goto next; } |