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>

authored by

Randy Dunlap and committed by
Sage Weil
6f453ed6 f4cf3dee

+2 -1
+2 -1
fs/ceph/debugfs.c
··· 12 #include <linux/ceph/auth.h> 13 #include <linux/ceph/debugfs.h> 14 15 #ifdef CONFIG_DEBUG_FS 16 17 - #include "super.h" 18 #include "mds_client.h" 19 20 static int mdsmap_show(struct seq_file *s, void *p)
··· 12 #include <linux/ceph/auth.h> 13 #include <linux/ceph/debugfs.h> 14 15 + #include "super.h" 16 + 17 #ifdef CONFIG_DEBUG_FS 18 19 #include "mds_client.h" 20 21 static int mdsmap_show(struct seq_file *s, void *p)