diff options
| author | Tao Ma <tao.ma@oracle.com> | 2009-02-16 15:39:28 -0500 |
|---|---|---|
| committer | Mark Fasheh <mfasheh@suse.com> | 2009-02-26 14:51:11 -0500 |
| commit | 89a907afe073b8971a83d0ad54f391542b64d327 (patch) | |
| tree | 0168dc1ee1a92981c74c73e9a224e9d4fe63b048 | |
| parent | 53ecd25e148615e0ed2a72635cc76f4773f97f90 (diff) | |
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>
| -rw-r--r-- | fs/ocfs2/xattr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c index 915039fffe6e..e3933158e1d7 100644 --- a/fs/ocfs2/xattr.c +++ b/fs/ocfs2/xattr.c | |||
| @@ -2592,8 +2592,9 @@ static int __ocfs2_xattr_set_handle(struct inode *inode, | |||
| 2592 | 2592 | ||
| 2593 | if (!ret) { | 2593 | if (!ret) { |
| 2594 | /* Update inode ctime. */ | 2594 | /* Update inode ctime. */ |
| 2595 | ret = ocfs2_journal_access(ctxt->handle, inode, xis->inode_bh, | 2595 | ret = ocfs2_journal_access_di(ctxt->handle, inode, |
| 2596 | OCFS2_JOURNAL_ACCESS_WRITE); | 2596 | xis->inode_bh, |
| 2597 | OCFS2_JOURNAL_ACCESS_WRITE); | ||
| 2597 | if (ret) { | 2598 | if (ret) { |
| 2598 | mlog_errno(ret); | 2599 | mlog_errno(ret); |
| 2599 | goto out; | 2600 | goto out; |
