diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-05 10:59:33 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-05 10:59:33 -0400 |
commit | 84d08fa888e7c2d53b5bbc764db2ef02968b499c (patch) | |
tree | fa891009d778586eefdf3be8a11671ab9aefb13a /fs/locks.c | |
parent | 74b9272bbedf45cb01a048217830d64d59aaa73b (diff) |
helper for reading ->d_count
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/locks.c')
-rw-r--r-- | fs/locks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/locks.c b/fs/locks.c index 04e2c1fdb157..c98e1a1431ea 100644 --- a/fs/locks.c +++ b/fs/locks.c | |||
@@ -1454,7 +1454,7 @@ static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp | |||
1454 | if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0)) | 1454 | if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0)) |
1455 | goto out; | 1455 | goto out; |
1456 | if ((arg == F_WRLCK) | 1456 | if ((arg == F_WRLCK) |
1457 | && ((dentry->d_count > 1) | 1457 | && ((d_count(dentry) > 1) |
1458 | || (atomic_read(&inode->i_count) > 1))) | 1458 | || (atomic_read(&inode->i_count) > 1))) |
1459 | goto out; | 1459 | goto out; |
1460 | 1460 | ||