1DEBUGFS_CREATE_SIZE_(9) The debugfs filesystem DEBUGFS_CREATE_SIZE_(9)
2
3
4
6 debugfs_create_size_t - create a debugfs file that is used to read and
7 write an size_t value
8
10 struct dentry * debugfs_create_size_t(const char * name, mode_t mode,
11 struct dentry * parent,
12 size_t * value);
13
15 name
16 a pointer to a string containing the name of the file to create.
17
18 mode
19 the permission that the file should have
20
21 parent
22 a pointer to the parent dentry for this file. This should be a
23 directory dentry if set. If this parameter is NULL, then the file
24 will be created in the root of the debugfs filesystem.
25
26 value
27 a pointer to the variable that the file should read to and write
28 from.
29
31Kernel Hackers Manual 2.6. June 2019 DEBUGFS_CREATE_SIZE_(9)