diff options
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) | |||
| 291 | return 0; | 291 | return 0; |
| 292 | } | 292 | } |
| 293 | 293 | ||
| 294 | #define DEFINE_SHOW_FUNC(name) \ | 294 | #define DEFINE_SHOW_FUNC(name) \ |
| 295 | static int name##_open(struct inode *inode, struct file *file) \ | 295 | static int name##_open(struct inode *inode, struct file *file) \ |
| 296 | { \ | 296 | { \ |
| 297 | struct seq_file *sf; \ | 297 | struct seq_file *sf; \ |
| @@ -432,11 +432,12 @@ int ceph_debugfs_client_init(struct ceph_client *client) | |||
| 432 | if (!client->debugfs_caps) | 432 | if (!client->debugfs_caps) |
| 433 | goto out; | 433 | goto out; |
| 434 | 434 | ||
| 435 | client->debugfs_congestion_kb = debugfs_create_file("writeback_congestion_kb", | 435 | client->debugfs_congestion_kb = |
| 436 | 0600, | 436 | debugfs_create_file("writeback_congestion_kb", |
| 437 | client->debugfs_dir, | 437 | 0600, |
| 438 | client, | 438 | client->debugfs_dir, |
| 439 | &congestion_kb_fops); | 439 | client, |
| 440 | &congestion_kb_fops); | ||
| 440 | if (!client->debugfs_congestion_kb) | 441 | if (!client->debugfs_congestion_kb) |
| 441 | goto out; | 442 | goto out; |
| 442 | 443 | ||
| @@ -466,7 +467,7 @@ void ceph_debugfs_client_cleanup(struct ceph_client *client) | |||
| 466 | debugfs_remove(client->debugfs_dir); | 467 | debugfs_remove(client->debugfs_dir); |
| 467 | } | 468 | } |
| 468 | 469 | ||
| 469 | #else // CONFIG_DEBUG_FS | 470 | #else /* CONFIG_DEBUG_FS */ |
| 470 | 471 | ||
| 471 | int __init ceph_debugfs_init(void) | 472 | int __init ceph_debugfs_init(void) |
| 472 | { | 473 | { |
| @@ -486,4 +487,4 @@ void ceph_debugfs_client_cleanup(struct ceph_client *client) | |||
| 486 | { | 487 | { |
| 487 | } | 488 | } |
| 488 | 489 | ||
| 489 | #endif // CONFIG_DEBUG_FS | 490 | #endif /* CONFIG_DEBUG_FS */ |
