Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e051fda4fd14fe878e6d2183b3a4640febe9e9a8
Commit:     e051fda4fd14fe878e6d2183b3a4640febe9e9a8
Parent:     190ff5b3a168b666925897558998b5d97fec8731
Author:     Mark Fasheh <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 1 11:40:16 2007 -0800
Committer:  Mark Fasheh <[EMAIL PROTECTED]>
CommitDate: Thu Feb 1 12:03:19 2007 -0800

    ocfs2: ocfs2_link() journal credits update
    
    Commit 592282cf2eaa33409c6511ddd3f3ecaa57daeaaa 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 <[EMAIL PROTECTED]>
---
 fs/ocfs2/journal.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/ocfs2/journal.h b/fs/ocfs2/journal.h
index e121636..d026b4f 100644
--- a/fs/ocfs2/journal.h
+++ b/fs/ocfs2/journal.h
@@ -306,8 +306,8 @@ int                  ocfs2_journal_dirty_data(handle_t 
*handle,
  * for the dinode, one for the new block. */
 #define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2)
 
-/* file update (nlink, etc) + dir entry block */
-#define OCFS2_LINK_CREDITS  (OCFS2_INODE_UPDATE_CREDITS + 1)
+/* file update (nlink, etc) + directory mtime/ctime + dir entry block */
+#define OCFS2_LINK_CREDITS  (2*OCFS2_INODE_UPDATE_CREDITS + 1)
 
 /* inode + dir inode (if we unlink a dir), + dir entry block + orphan
  * dir inode link */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to