diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2012-12-14 16:52:14 +0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-01-29 14:28:28 +0400 |
commit | 767f433f346959d6a09b85478eb5db133ab25c6f (patch) | |
tree | 876056d7569fcd96fbf8b08163abc00ef0878c66 /fs/gfs2/incore.h | |
parent | 350a9b0a7269c6f4b99eca34d0e773c3c2072520 (diff) | |
download | linux-767f433f346959d6a09b85478eb5db133ab25c6f.tar.xz |
GFS2: Copy gfs2_trans_add_bh into new data/meta functions
This patch copies the body of gfs2_trans_add_bh into the two newly
added gfs2_trans_add_data and gfs2_trans_add_meta functions. We can
then move the .lo_add functions from lops.c into trans.c and call
them directly.
As a result of this, we no longer need to use the .lo_add functions
at all, so that is removed from the log operations structure.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r-- | fs/gfs2/incore.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index c373a24fedd9..5d129ab89733 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h @@ -52,7 +52,6 @@ struct gfs2_log_header_host { */ struct gfs2_log_operations { - void (*lo_add) (struct gfs2_sbd *sdp, struct gfs2_bufdata *bd); void (*lo_before_commit) (struct gfs2_sbd *sdp); void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_ail *ai); void (*lo_before_scan) (struct gfs2_jdesc *jd, |