diff options
author | Steven Whitehouse | 2007-08-16 18:08:20 +0200 |
---|---|---|
committer | Steven Whitehouse | 2007-10-10 09:55:32 +0200 |
commit | 382e6e256b0cb1a84a45a520cef75d1b8ff44663 (patch) | |
tree | 897cb4a2df63f5f9304bc5d486ec110c1d7ef8c9 /fs/gfs2/dir.c | |
parent | [GFS2] Clean up invalidatepage/releasepage (diff) | |
download | kernel-qcow2-linux-382e6e256b0cb1a84a45a520cef75d1b8ff44663.tar.gz kernel-qcow2-linux-382e6e256b0cb1a84a45a520cef75d1b8ff44663.tar.xz kernel-qcow2-linux-382e6e256b0cb1a84a45a520cef75d1b8ff44663.zip |
[GFS2] Add a missing gfs2_trans_add_bh()
This was missing from the dir_split_leaf() function although in
most cases its not a problem due to other functions having
already previously called gfs2_trans_add_bh. This makes certain
that it is correct.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Cc: Wendy Cheng <wcheng@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r-- | fs/gfs2/dir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index 2beb2f401aa2..08c6dd0c6713 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c @@ -1043,6 +1043,7 @@ static int dir_split_leaf(struct inode *inode, const struct qstr *name) error = gfs2_meta_inode_buffer(dip, &dibh); if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) { + gfs2_trans_add_bh(dip->i_gl, dibh, 1); dip->i_di.di_blocks++; gfs2_set_inode_blocks(&dip->i_inode); gfs2_dinode_out(dip, dibh->b_data); |