aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/events
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-01-22 15:40:57 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2016-01-22 18:04:28 -0500
commit5955102c9984fa081b2d570cfac75c97eecf8f3b (patch)
treea4744386eac4b916e847eb4eedfada158f6527b4 /kernel/events
parent57b8f112cfe6622ddddb8c2641206bb5fa8a112d (diff)
wrappers for ->i_mutex access
parallel to mutex_{lock,unlock,trylock,is_locked,lock_nested}, inode_foo(inode) being mutex_foo(&inode->i_mutex). Please, use those for access to ->i_mutex; over the coming cycle ->i_mutex will become rwsem, with ->lookup() done with it held only shared. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/events')
-rw-r--r--kernel/events/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/events/core.c b/kernel/events/core.c
index c0957416b32e..06ae52e99ac2 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -4872,9 +4872,9 @@ static int perf_fasync(int fd, struct file *filp, int on)
4872 struct perf_event *event = filp->private_data; 4872 struct perf_event *event = filp->private_data;
4873 int retval; 4873 int retval;
4874 4874
4875 mutex_lock(&inode->i_mutex); 4875 inode_lock(inode);
4876 retval = fasync_helper(fd, filp, on, &event->fasync); 4876 retval = fasync_helper(fd, filp, on, &event->fasync);
4877 mutex_unlock(&inode->i_mutex); 4877 inode_unlock(inode);
4878 4878
4879 if (retval < 0) 4879 if (retval < 0)
4880 return retval; 4880 return retval;