diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-08 15:19:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-08 15:19:57 -0500 |
commit | 972b2c719990f91eb3b2310d44ef8a2d38955a14 (patch) | |
tree | b25a250ec5bec4b7b6355d214642d8b57c5cab32 /fs/debugfs/file.c | |
parent | 02550d61f49266930e674286379d3601006b2893 (diff) | |
parent | c3aa077648e147783a7a53b409578234647db853 (diff) |
Merge branch 'for-linus2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
* 'for-linus2' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (165 commits)
reiserfs: Properly display mount options in /proc/mounts
vfs: prevent remount read-only if pending removes
vfs: count unlinked inodes
vfs: protect remounting superblock read-only
vfs: keep list of mounts for each superblock
vfs: switch ->show_options() to struct dentry *
vfs: switch ->show_path() to struct dentry *
vfs: switch ->show_devname() to struct dentry *
vfs: switch ->show_stats to struct dentry *
switch security_path_chmod() to struct path *
vfs: prefer ->dentry->d_sb to ->mnt->mnt_sb
vfs: trim includes a bit
switch mnt_namespace ->root to struct mount
vfs: take /proc/*/mounts and friends to fs/proc_namespace.c
vfs: opencode mntget() mnt_set_mountpoint()
vfs: spread struct mount - remaining argument of next_mnt()
vfs: move fsnotify junk to struct mount
vfs: move mnt_devname
vfs: move mnt_list to struct mount
vfs: switch pnode.h macros to struct mount *
...
Diffstat (limited to 'fs/debugfs/file.c')
-rw-r--r-- | fs/debugfs/file.c | 22 |
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 | */ |
100 | struct dentry *debugfs_create_u8(const char *name, mode_t mode, | 100 | struct 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 | */ |
152 | struct dentry *debugfs_create_u16(const char *name, mode_t mode, | 152 | struct 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 | */ |
204 | struct dentry *debugfs_create_u32(const char *name, mode_t mode, | 204 | struct 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 | */ |
257 | struct dentry *debugfs_create_u64(const char *name, mode_t mode, | 257 | struct 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 | */ |
303 | struct dentry *debugfs_create_x8(const char *name, mode_t mode, | 303 | struct 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 | */ |
327 | struct dentry *debugfs_create_x16(const char *name, mode_t mode, | 327 | struct 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 | */ |
351 | struct dentry *debugfs_create_x32(const char *name, mode_t mode, | 351 | struct 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 | */ |
375 | struct dentry *debugfs_create_x64(const char *name, mode_t mode, | 375 | struct 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 | */ |
406 | struct dentry *debugfs_create_size_t(const char *name, mode_t mode, | 406 | struct 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 | */ |
478 | struct dentry *debugfs_create_bool(const char *name, mode_t mode, | 478 | struct 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 | */ |
523 | struct dentry *debugfs_create_blob(const char *name, mode_t mode, | 523 | struct 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 | { |