summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Fasheh2006-10-10 01:50:32 +0200
committerMark Fasheh2006-12-02 03:28:13 +0100
commitdae85832ffe2879b57b23aea319a0ec17667898d (patch)
treea55d415868cef92c5a58e6282207413201063f4a
parentocfs2: pass ocfs2_super * into ocfs2_commit_trans() (diff)
downloadkernel-qcow2-linux-dae85832ffe2879b57b23aea319a0ec17667898d.tar.gz
kernel-qcow2-linux-dae85832ffe2879b57b23aea319a0ec17667898d.tar.xz
kernel-qcow2-linux-dae85832ffe2879b57b23aea319a0ec17667898d.zip
ocfs2: remove ocfs2_journal_handle journal field
It is no longer used. Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
-rw-r--r--fs/ocfs2/journal.c2
-rw-r--r--fs/ocfs2/journal.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c
index 00402e749fc6..81fb917475fd 100644
--- a/fs/ocfs2/journal.c
+++ b/fs/ocfs2/journal.c
@@ -122,8 +122,6 @@ static struct ocfs2_journal_handle *ocfs2_alloc_handle(struct ocfs2_super *osb)
}
retval->k_handle = NULL;
- retval->journal = osb->journal;
-
return retval;
}
diff --git a/fs/ocfs2/journal.h b/fs/ocfs2/journal.h
index d315179d0c07..d96f61abd668 100644
--- a/fs/ocfs2/journal.h
+++ b/fs/ocfs2/journal.h
@@ -135,7 +135,6 @@ static inline void ocfs2_inode_set_new(struct ocfs2_super *osb,
struct ocfs2_journal_handle {
handle_t *k_handle; /* kernel handle. */
- struct ocfs2_journal *journal;
};
/* Exported only for the journal struct init code in super.c. Do not call. */