From: Jan Kara Date: Tue, 17 Aug 2010 10:42:13 +0000 (+0200) Subject: vfs: update ctime when changing the file's permission by setfacl X-Git-Tag: v2.6.36-rc2~38^2~15 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dad5eb6daa7eeb63d4fc9d982892c59faa07e797;p=pandora-kernel.git vfs: update ctime when changing the file's permission by setfacl generic_acl_set didn't update the ctime of the file when its permission was changed. Steps to reproduce: # touch aaa # stat -c %Z aaa 1275289822 # setfacl -m 'u::x,g::x,o::x' aaa # stat -c %Z aaa 1275289822 <- unchanged But, according to the spec of the ctime, vfs must update it. Port of ext3 patch by Miao Xie . CC: Al Viro Signed-off-by: Jan Kara Signed-off-by: Al Viro --- Reading git-diff-tree failed