diff options
author | David Howells <dhowells@redhat.com> | 2015-01-21 15:03:40 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-02-17 12:21:51 -0500 |
commit | e59b4e9187bd5175b9845dc10fedb0879b7efbfd (patch) | |
tree | d1194fe02bcb93cd0fbf4924c9756158717338e9 /drivers/scsi/csiostor | |
parent | 77b3da6e3232d3b4d4b8addb4b05799fe98f3bf8 (diff) |
debugfs: Provide a file creation function that also takes an initial size
Provide a file creation function that also takes an initial size so that the
caller doesn't have to set i_size, thus meaning that we don't have to call
deal with ->d_inode in the callers.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/scsi/csiostor')
-rw-r--r-- | drivers/scsi/csiostor/csio_init.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/scsi/csiostor/csio_init.c b/drivers/scsi/csiostor/csio_init.c index 34d20cc3e110..2617f15eaeeb 100644 --- a/drivers/scsi/csiostor/csio_init.c +++ b/drivers/scsi/csiostor/csio_init.c | |||
@@ -113,12 +113,9 @@ static const struct file_operations csio_mem_debugfs_fops = { | |||
113 | void csio_add_debugfs_mem(struct csio_hw *hw, const char *name, | 113 | void csio_add_debugfs_mem(struct csio_hw *hw, const char *name, |
114 | unsigned int idx, unsigned int size_mb) | 114 | unsigned int idx, unsigned int size_mb) |
115 | { | 115 | { |
116 | struct dentry *de; | 116 | debugfs_create_file_size(name, S_IRUSR, hw->debugfs_root, |
117 | 117 | (void *)hw + idx, &csio_mem_debugfs_fops, | |
118 | de = debugfs_create_file(name, S_IRUSR, hw->debugfs_root, | 118 | size_mb << 20); |
119 | (void *)hw + idx, &csio_mem_debugfs_fops); | ||
120 | if (de && de->d_inode) | ||
121 | de->d_inode->i_size = size_mb << 20; | ||
122 | } | 119 | } |
123 | 120 | ||
124 | static int csio_setup_debugfs(struct csio_hw *hw) | 121 | static int csio_setup_debugfs(struct csio_hw *hw) |