lkml.org 
[lkml]   [2005]   [Oct]   [28]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
DateFri, 28 Oct 2005 18:49:01 +0200
FromJean Delvare <>
Subject[PATCH] ext3: Fix warning without quota support (was: Linux 2.6.14)
Sorry for not spotting this one earlier...

Fix the following warning when ext3 fs is compiled without quota
support:

fs/ext3/super.c: In function `ext3_show_options':
fs/ext3/super.c:516: warning: unused variable `sbi'

Signed-off-by: Jean Delvare <khali@linux-fr.org>

---
 fs/ext3/super.c |    2 ++
 1 file changed, 2 insertions(+)
--- linux-2.6.14.orig/fs/ext3/super.c	2005-10-28 18:25:56.000000000 +0200
+++ linux-2.6.14/fs/ext3/super.c	2005-10-28 18:38:36.000000000 +0200
@@ -513,7 +513,9 @@
 static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs)
 {
 	struct super_block *sb = vfs->mnt_sb;
+#ifdef CONFIG_QUOTA
 	struct ext3_sb_info *sbi = EXT3_SB(sb);
+#endif
 
 	if (test_opt(sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA)
 		seq_puts(seq, ",data=journal");

-- 
Jean Delvare
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-10-28 18:50    [from the cache]
©2003-2008