diff options
author | Mark Fasheh <mfasheh@suse.com> | 2008-11-18 16:53:43 -0800 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 08:36:55 -0800 |
commit | 53ef99cad9878f02f27bb30bc304fc42af8bdd6e (patch) | |
tree | bb5dcb223666197cf737d24e4cc87506c4473a79 /fs/ocfs2/journal.h | |
parent | 511308d90b53479b194cd067715f44dc99d39b08 (diff) | |
download | linux-3.10-53ef99cad9878f02f27bb30bc304fc42af8bdd6e.tar.gz linux-3.10-53ef99cad9878f02f27bb30bc304fc42af8bdd6e.tar.bz2 linux-3.10-53ef99cad9878f02f27bb30bc304fc42af8bdd6e.zip |
ocfs2: Remove JBD compatibility layer
JBD2 is fully backwards compatible with JBD and it's been tested enough with
Ocfs2 that we can clean this code up now.
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/journal.h')
-rw-r--r-- | fs/ocfs2/journal.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/fs/ocfs2/journal.h b/fs/ocfs2/journal.h index d4d14e9a3ce..8203980fefe 100644 --- a/fs/ocfs2/journal.h +++ b/fs/ocfs2/journal.h @@ -27,12 +27,7 @@ #define OCFS2_JOURNAL_H #include <linux/fs.h> -#ifndef CONFIG_OCFS2_COMPAT_JBD -# include <linux/jbd2.h> -#else -# include <linux/jbd.h> -# include "ocfs2_jbd_compat.h" -#endif +#include <linux/jbd2.h> enum ocfs2_journal_state { OCFS2_JOURNAL_FREE = 0, @@ -273,10 +268,6 @@ int ocfs2_journal_access(handle_t *handle, */ int ocfs2_journal_dirty(handle_t *handle, struct buffer_head *bh); -#ifdef CONFIG_OCFS2_COMPAT_JBD -int ocfs2_journal_dirty_data(handle_t *handle, - struct buffer_head *bh); -#endif /* * Credit Macros: |