diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2012-12-14 17:54:21 +0000 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-01-29 10:28:44 +0000 |
commit | c76c4d96bdd89027306cebc80eb3397286d8da66 (patch) | |
tree | 6e3de8b09e50d6a9fe1c690125e0a6118724de4c /fs/gfs2/lops.h | |
parent | 767f433f346959d6a09b85478eb5db133ab25c6f (diff) | |
download | op-kernel-dev-c76c4d96bdd89027306cebc80eb3397286d8da66.zip op-kernel-dev-c76c4d96bdd89027306cebc80eb3397286d8da66.tar.gz |
GFS2: Merge gfs2_attach_bufdata() into trans.c
The locking in gfs2_attach_bufdata() was type specific (data/meta)
which made the function rather confusing. This patch moves the core
of gfs2_attach_bufdata() into trans.c renaming it gfs2_alloc_bufdata()
and moving the locking into gfs2_trans_add_data()/gfs2_trans_add_meta()
As a result all of the locking related to adding data and metadata to
the journal is now in these two functions. This should help to clarify
what is going on, and give us some opportunities to simplify in
some cases.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/lops.h')
-rw-r--r-- | fs/gfs2/lops.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/gfs2/lops.h b/fs/gfs2/lops.h index d85b376..ba77b7d 100644 --- a/fs/gfs2/lops.h +++ b/fs/gfs2/lops.h @@ -47,13 +47,6 @@ static inline unsigned int databuf_limit(struct gfs2_sbd *sdp) return limit; } -static inline void lops_init_le(struct gfs2_bufdata *bd, - const struct gfs2_log_operations *lops) -{ - INIT_LIST_HEAD(&bd->bd_list); - bd->bd_ops = lops; -} - static inline void lops_before_commit(struct gfs2_sbd *sdp) { int x; |