ocfs2: Use the right access_* method in ctime update of xattr.
In ctime updating of xattr, it use the wrong type of access for inode, so use ocfs2_journal_access_di instead. Reported-and-Tested-by: Tristan Ye <tristan.ye@oracle.com> Signed-off-by: Tao Ma <tao.ma@oracle.com> Acked-by: Joel Becker <joel.becker@oracle.com> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
This commit is contained in:
@@ -2592,8 +2592,9 @@ static int __ocfs2_xattr_set_handle(struct inode *inode,
|
|||||||
|
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
/* Update inode ctime. */
|
/* Update inode ctime. */
|
||||||
ret = ocfs2_journal_access(ctxt->handle, inode, xis->inode_bh,
|
ret = ocfs2_journal_access_di(ctxt->handle, inode,
|
||||||
OCFS2_JOURNAL_ACCESS_WRITE);
|
xis->inode_bh,
|
||||||
|
OCFS2_JOURNAL_ACCESS_WRITE);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
mlog_errno(ret);
|
mlog_errno(ret);
|
||||||
goto out;
|
goto out;
|
||||||
|
Reference in New Issue
Block a user