diff options
Diffstat (limited to 'fs/xattr.c')
-rw-r--r-- | fs/xattr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/xattr.c b/fs/xattr.c index ca15fbd391c8..1780f062dbaf 100644 --- a/fs/xattr.c +++ b/fs/xattr.c | |||
@@ -296,11 +296,13 @@ vfs_removexattr(struct dentry *dentry, const char *name) | |||
296 | if (error) | 296 | if (error) |
297 | return error; | 297 | return error; |
298 | 298 | ||
299 | mutex_lock(&inode->i_mutex); | ||
299 | error = security_inode_removexattr(dentry, name); | 300 | error = security_inode_removexattr(dentry, name); |
300 | if (error) | 301 | if (error) { |
302 | mutex_unlock(&inode->i_mutex); | ||
301 | return error; | 303 | return error; |
304 | } | ||
302 | 305 | ||
303 | mutex_lock(&inode->i_mutex); | ||
304 | error = inode->i_op->removexattr(dentry, name); | 306 | error = inode->i_op->removexattr(dentry, name); |
305 | mutex_unlock(&inode->i_mutex); | 307 | mutex_unlock(&inode->i_mutex); |
306 | 308 | ||