aboutsummaryrefslogtreecommitdiffstats
path: root/fs/debugfs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r--fs/debugfs/file.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index ea62afa4fd57..f65d4455c5e5 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -97,7 +97,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_u8_wo, NULL, debugfs_u8_set, "%llu\n");
97 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 97 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
98 * code. 98 * code.
99 */ 99 */
100struct dentry *debugfs_create_u8(const char *name, mode_t mode, 100struct dentry *debugfs_create_u8(const char *name, umode_t mode,
101 struct dentry *parent, u8 *value) 101 struct dentry *parent, u8 *value)
102{ 102{
103 /* if there are no write bits set, make read only */ 103 /* if there are no write bits set, make read only */
@@ -149,7 +149,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_u16_wo, NULL, debugfs_u16_set, "%llu\n");
149 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 149 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
150 * code. 150 * code.
151 */ 151 */
152struct dentry *debugfs_create_u16(const char *name, mode_t mode, 152struct dentry *debugfs_create_u16(const char *name, umode_t mode,
153 struct dentry *parent, u16 *value) 153 struct dentry *parent, u16 *value)
154{ 154{
155 /* if there are no write bits set, make read only */ 155 /* if there are no write bits set, make read only */
@@ -201,7 +201,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_u32_wo, NULL, debugfs_u32_set, "%llu\n");
201 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 201 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
202 * code. 202 * code.
203 */ 203 */
204struct dentry *debugfs_create_u32(const char *name, mode_t mode, 204struct dentry *debugfs_create_u32(const char *name, umode_t mode,
205 struct dentry *parent, u32 *value) 205 struct dentry *parent, u32 *value)
206{ 206{
207 /* if there are no write bits set, make read only */ 207 /* if there are no write bits set, make read only */
@@ -254,7 +254,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_u64_wo, NULL, debugfs_u64_set, "%llu\n");
254 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 254 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
255 * code. 255 * code.
256 */ 256 */
257struct dentry *debugfs_create_u64(const char *name, mode_t mode, 257struct dentry *debugfs_create_u64(const char *name, umode_t mode,
258 struct dentry *parent, u64 *value) 258 struct dentry *parent, u64 *value)
259{ 259{
260 /* if there are no write bits set, make read only */ 260 /* if there are no write bits set, make read only */
@@ -300,7 +300,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_x64, debugfs_u64_get, debugfs_u64_set, "0x%016llx\n
300 * @value: a pointer to the variable that the file should read to and write 300 * @value: a pointer to the variable that the file should read to and write
301 * from. 301 * from.
302 */ 302 */
303struct dentry *debugfs_create_x8(const char *name, mode_t mode, 303struct dentry *debugfs_create_x8(const char *name, umode_t mode,
304 struct dentry *parent, u8 *value) 304 struct dentry *parent, u8 *value)
305{ 305{
306 /* if there are no write bits set, make read only */ 306 /* if there are no write bits set, make read only */
@@ -324,7 +324,7 @@ EXPORT_SYMBOL_GPL(debugfs_create_x8);
324 * @value: a pointer to the variable that the file should read to and write 324 * @value: a pointer to the variable that the file should read to and write
325 * from. 325 * from.
326 */ 326 */
327struct dentry *debugfs_create_x16(const char *name, mode_t mode, 327struct dentry *debugfs_create_x16(const char *name, umode_t mode,
328 struct dentry *parent, u16 *value) 328 struct dentry *parent, u16 *value)
329{ 329{
330 /* if there are no write bits set, make read only */ 330 /* if there are no write bits set, make read only */
@@ -348,7 +348,7 @@ EXPORT_SYMBOL_GPL(debugfs_create_x16);
348 * @value: a pointer to the variable that the file should read to and write 348 * @value: a pointer to the variable that the file should read to and write
349 * from. 349 * from.
350 */ 350 */
351struct dentry *debugfs_create_x32(const char *name, mode_t mode, 351struct dentry *debugfs_create_x32(const char *name, umode_t mode,
352 struct dentry *parent, u32 *value) 352 struct dentry *parent, u32 *value)
353{ 353{
354 /* if there are no write bits set, make read only */ 354 /* if there are no write bits set, make read only */
@@ -372,7 +372,7 @@ EXPORT_SYMBOL_GPL(debugfs_create_x32);
372 * @value: a pointer to the variable that the file should read to and write 372 * @value: a pointer to the variable that the file should read to and write
373 * from. 373 * from.
374 */ 374 */
375struct dentry *debugfs_create_x64(const char *name, mode_t mode, 375struct dentry *debugfs_create_x64(const char *name, umode_t mode,
376 struct dentry *parent, u64 *value) 376 struct dentry *parent, u64 *value)
377{ 377{
378 return debugfs_create_file(name, mode, parent, value, &fops_x64); 378 return debugfs_create_file(name, mode, parent, value, &fops_x64);
@@ -403,7 +403,7 @@ DEFINE_SIMPLE_ATTRIBUTE(fops_size_t, debugfs_size_t_get, debugfs_size_t_set,
403 * @value: a pointer to the variable that the file should read to and write 403 * @value: a pointer to the variable that the file should read to and write
404 * from. 404 * from.
405 */ 405 */
406struct dentry *debugfs_create_size_t(const char *name, mode_t mode, 406struct dentry *debugfs_create_size_t(const char *name, umode_t mode,
407 struct dentry *parent, size_t *value) 407 struct dentry *parent, size_t *value)
408{ 408{
409 return debugfs_create_file(name, mode, parent, value, &fops_size_t); 409 return debugfs_create_file(name, mode, parent, value, &fops_size_t);
@@ -475,7 +475,7 @@ static const struct file_operations fops_bool = {
475 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 475 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
476 * code. 476 * code.
477 */ 477 */
478struct dentry *debugfs_create_bool(const char *name, mode_t mode, 478struct dentry *debugfs_create_bool(const char *name, umode_t mode,
479 struct dentry *parent, u32 *value) 479 struct dentry *parent, u32 *value)
480{ 480{
481 return debugfs_create_file(name, mode, parent, value, &fops_bool); 481 return debugfs_create_file(name, mode, parent, value, &fops_bool);
@@ -520,7 +520,7 @@ static const struct file_operations fops_blob = {
520 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling 520 * %NULL or !%NULL instead as to eliminate the need for #ifdef in the calling
521 * code. 521 * code.
522 */ 522 */
523struct dentry *debugfs_create_blob(const char *name, mode_t mode, 523struct dentry *debugfs_create_blob(const char *name, umode_t mode,
524 struct dentry *parent, 524 struct dentry *parent,
525 struct debugfs_blob_wrapper *blob) 525 struct debugfs_blob_wrapper *blob)
526{ 526{