diff options
author | Tao Ma <tao.ma@oracle.com> | 2010-08-02 11:02:13 +0800 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2010-09-10 08:40:08 -0700 |
commit | f9c57ada32ea3f2e12600cf274035fff063b2e0f (patch) | |
tree | d8aaf4d6e6a3face4465258cd3cc6ec34f572994 /fs/ocfs2/journal.c | |
parent | 4c38881f87c21ada5609a4065cb10e3e74da0d6e (diff) | |
download | linux-f9c57ada32ea3f2e12600cf274035fff063b2e0f.tar.gz linux-f9c57ada32ea3f2e12600cf274035fff063b2e0f.tar.bz2 linux-f9c57ada32ea3f2e12600cf274035fff063b2e0f.zip |
ocfs2: Remove unused old_id in ocfs2_commit_cache.
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/journal.c')
-rw-r--r-- | fs/ocfs2/journal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c index 04d41dfeab9a..5787802c2d6a 100644 --- a/fs/ocfs2/journal.c +++ b/fs/ocfs2/journal.c @@ -301,7 +301,6 @@ static int ocfs2_commit_cache(struct ocfs2_super *osb) { int status = 0; unsigned int flushed; - unsigned long old_id; struct ocfs2_journal *journal = NULL; mlog_entry_void(); @@ -326,7 +325,7 @@ static int ocfs2_commit_cache(struct ocfs2_super *osb) goto finally; } - old_id = ocfs2_inc_trans_id(journal); + ocfs2_inc_trans_id(journal); flushed = atomic_read(&journal->j_num_trans); atomic_set(&journal->j_num_trans, 0); |