[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1281490742.4423.10.camel@lovely.krouter>
Date: Wed, 11 Aug 2010 03:39:02 +0200
From: Christoph Fritz <chf.fritz@...glemail.com>
To: Theodore Ts'o <tytso@....edu>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
dingdinghua <dingdinghua@...hpc.ac.cn>,
Joel Becker <joel.becker@...cle.com>,
Mark Fasheh <mfasheh@...e.com>, linux-ext4@...r.kernel.org,
kernel-janitors <kernel-janitors@...r.kernel.org>
Subject: [PATCH] jbd2: fix warning if CONFIG_JBD2_DEBUG is not used
Commit 8dd420466c7bfc459fa04680bd5690bfc41a4553 makes variable ts unused
when CONFIG_JBD2_DEBUG is not used. This patch ifdefs it too.
fs/jbd2/transaction.c: In function ‘start_this_handle’:
fs/jbd2/transaction.c:98: warning: unused variable ‘ts’
Signed-off-by: Christoph Fritz <chf.fritz@...glemail.com>
---
fs/jbd2/transaction.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/jbd2/transaction.c b/fs/jbd2/transaction.c
index d95cc9d..745d3b2 100644
--- a/fs/jbd2/transaction.c
+++ b/fs/jbd2/transaction.c
@@ -95,7 +95,9 @@ static int start_this_handle(journal_t *journal, handle_t *handle,
int needed;
int nblocks = handle->h_buffer_credits;
transaction_t *new_transaction = NULL;
+#ifdef CONFIG_JBD2_DEBUG
unsigned long ts = jiffies;
+#endif
if (nblocks > journal->j_max_transaction_buffers) {
printk(KERN_ERR "JBD: %s wants too many credits (%d > %d)\n",
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists