ocfs2: ocfs2_link() journal credits update
Commit 592282cf2e
fixed some missing directory
c/mtime updates in part by introducing a dinode update in ocfs2_add_entry().
Unfortunately, ocfs2_link() (which didn't update the directory inode before)
is now missing a single journal credit. Fix this by doubling the number of
inode updates expected during hard link creation.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
Родитель
190ff5b3a1
Коммит
e051fda4fd
|
@ -306,8 +306,8 @@ int ocfs2_journal_dirty_data(handle_t *handle,
|
||||||
* for the dinode, one for the new block. */
|
* for the dinode, one for the new block. */
|
||||||
#define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2)
|
#define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2)
|
||||||
|
|
||||||
/* file update (nlink, etc) + dir entry block */
|
/* file update (nlink, etc) + directory mtime/ctime + dir entry block */
|
||||||
#define OCFS2_LINK_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
|
#define OCFS2_LINK_CREDITS (2*OCFS2_INODE_UPDATE_CREDITS + 1)
|
||||||
|
|
||||||
/* inode + dir inode (if we unlink a dir), + dir entry block + orphan
|
/* inode + dir inode (if we unlink a dir), + dir entry block + orphan
|
||||||
* dir inode link */
|
* dir inode link */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче