diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-09-28 12:53:10 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-10-20 18:38:21 -0400 |
commit | 6f453ed6c07dbed83b368269c9c0fb170866ee71 (patch) | |
tree | f43e0bfd108aad49e8bbab9be395c74f97da5109 /fs/ceph/debugfs.c | |
parent | f4cf3deef4c474381e8fee2e6099d49edd9105cb (diff) |
ceph: fix debugfs warnings
Include "super.h" outside of CONFIG_DEBUG_FS to eliminate a compiler warning:
fs/ceph/debugfs.c:266: warning: 'struct ceph_fs_client' declared inside parameter list
fs/ceph/debugfs.c:266: warning: its scope is only this definition or declaration, which is probably not what you want
fs/ceph/debugfs.c:271: warning: 'struct ceph_fs_client' declared inside parameter list
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Diffstat (limited to 'fs/ceph/debugfs.c')
-rw-r--r-- | fs/ceph/debugfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c index 94fe1d284c3a..7ae1b3d55b58 100644 --- a/fs/ceph/debugfs.c +++ b/fs/ceph/debugfs.c | |||
@@ -12,9 +12,10 @@ | |||
12 | #include <linux/ceph/auth.h> | 12 | #include <linux/ceph/auth.h> |
13 | #include <linux/ceph/debugfs.h> | 13 | #include <linux/ceph/debugfs.h> |
14 | 14 | ||
15 | #include "super.h" | ||
16 | |||
15 | #ifdef CONFIG_DEBUG_FS | 17 | #ifdef CONFIG_DEBUG_FS |
16 | 18 | ||
17 | #include "super.h" | ||
18 | #include "mds_client.h" | 19 | #include "mds_client.h" |
19 | 20 | ||
20 | static int mdsmap_show(struct seq_file *s, void *p) | 21 | static int mdsmap_show(struct seq_file *s, void *p) |