| #ifndef _FS_CEPH_DEBUGFS_H |
| #define _FS_CEPH_DEBUGFS_H |
| #define CEPH_DEFINE_SHOW_FUNC(name) \ |
| static int name##_open(struct inode *inode, struct file *file) \ |
| ret = single_open(file, name, NULL); \ |
| sf = file->private_data; \ |
| sf->private = inode->i_private; \ |
| static const struct file_operations name##_fops = { \ |
| .release = single_release, \ |
| extern int ceph_debugfs_init(void); |
| extern void ceph_debugfs_cleanup(void); |
| extern int ceph_debugfs_client_init(struct ceph_client *client); |
| extern void ceph_debugfs_client_cleanup(struct ceph_client *client); |