diff options
author | 2014-02-18 15:49:40 -0800 | |
---|---|---|
committer | 2014-02-18 15:49:40 -0800 | |
commit | 341bbdc512633592198e6b434ca99a29bab7e02a (patch) | |
tree | 0530cd642156b9da3f768fb663f1e90a73134924 | |
parent | Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 (diff) | |
parent | jfs: set i_ctime when setting ACL (diff) | |
download | wireguard-linux-341bbdc512633592198e6b434ca99a29bab7e02a.tar.xz wireguard-linux-341bbdc512633592198e6b434ca99a29bab7e02a.zip |
Merge tag 'jfs-3.14-rc4' of git://github.com/kleikamp/linux-shaggy
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
Diffstat (limited to '')
-rw-r--r-- | fs/jfs/acl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/jfs/acl.c b/fs/jfs/acl.c index e973b85d6afd..5a8ea16eedbc 100644 --- a/fs/jfs/acl.c +++ b/fs/jfs/acl.c @@ -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; |