Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344852
b: refs/heads/master
c: 24ec19b
h: refs/heads/master
v: v3
  • Loading branch information
Eugene Shatokhin authored and Theodore Ts'o committed Nov 8, 2012
1 parent 674bd1c commit f2a6f0e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8b0f165f790c897fa744e7fed6f0bfeb6eb6f494
refs/heads/master: 24ec19b0ae83a385ad9c55520716da671274b96c
6 changes: 4 additions & 2 deletions trunk/fs/ext4/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,10 @@ ext4_xattr_set_acl(struct dentry *dentry, const char *name, const void *value,

retry:
handle = ext4_journal_start(inode, EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
if (IS_ERR(handle))
return PTR_ERR(handle);
if (IS_ERR(handle)) {
error = PTR_ERR(handle);
goto release_and_out;
}
error = ext4_set_acl(handle, inode, type, acl);
ext4_journal_stop(handle);
if (error == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Expand Down

0 comments on commit f2a6f0e

Please sign in to comment.