diff options
author | Sage Weil <sage@newdream.net> | 2010-08-03 10:25:11 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-08-03 10:25:11 -0700 |
commit | 213c99ee0cf17ff0fbffb6fb540bd29615cd19d5 (patch) | |
tree | 168f72ba71feff5bf24707be622135b1016cdff5 /fs/ceph/debugfs.c | |
parent | 40819f6fb227c1832935b775ac22aef10aa6f6dd (diff) | |
download | linux-213c99ee0cf17ff0fbffb6fb540bd29615cd19d5.tar.gz linux-213c99ee0cf17ff0fbffb6fb540bd29615cd19d5.tar.bz2 linux-213c99ee0cf17ff0fbffb6fb540bd29615cd19d5.zip |
ceph: whitespace cleanup
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/debugfs.c')
-rw-r--r-- | fs/ceph/debugfs.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c index 968dc5a86c3e..360c4f22718d 100644 --- a/fs/ceph/debugfs.c +++ b/fs/ceph/debugfs.c @@ -291,7 +291,7 @@ static int dentry_lru_show(struct seq_file *s, void *ptr) return 0; } -#define DEFINE_SHOW_FUNC(name) \ +#define DEFINE_SHOW_FUNC(name) \ static int name##_open(struct inode *inode, struct file *file) \ { \ struct seq_file *sf; \ @@ -432,11 +432,12 @@ int ceph_debugfs_client_init(struct ceph_client *client) if (!client->debugfs_caps) goto out; - client->debugfs_congestion_kb = debugfs_create_file("writeback_congestion_kb", - 0600, - client->debugfs_dir, - client, - &congestion_kb_fops); + client->debugfs_congestion_kb = + debugfs_create_file("writeback_congestion_kb", + 0600, + client->debugfs_dir, + client, + &congestion_kb_fops); if (!client->debugfs_congestion_kb) goto out; @@ -466,7 +467,7 @@ void ceph_debugfs_client_cleanup(struct ceph_client *client) debugfs_remove(client->debugfs_dir); } -#else // CONFIG_DEBUG_FS +#else /* CONFIG_DEBUG_FS */ int __init ceph_debugfs_init(void) { @@ -486,4 +487,4 @@ void ceph_debugfs_client_cleanup(struct ceph_client *client) { } -#endif // CONFIG_DEBUG_FS +#endif /* CONFIG_DEBUG_FS */ |