Skip to content

Commit

Permalink
Merge tag 'jfs-3.14-rc4' of git://github.com/kleikamp/linux-shaggy
Browse files Browse the repository at this point in the history
Pull jfs fix from David Kleikamp:
 "Another ACL regression. This one more subtle"

* tag 'jfs-3.14-rc4' of git://github.com/kleikamp/linux-shaggy:
  jfs: set i_ctime when setting ACL
  • Loading branch information
Linus Torvalds committed Feb 18, 2014
2 parents 805937c + 844fa1b commit 341bbdc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/jfs/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ static int __jfs_set_acl(tid_t tid, struct inode *inode, int type,
rc = posix_acl_equiv_mode(acl, &inode->i_mode);
if (rc < 0)
return rc;
inode->i_ctime = CURRENT_TIME;
mark_inode_dirty(inode);
if (rc == 0)
acl = NULL;
break;
Expand Down

0 comments on commit 341bbdc

Please sign in to comment.