1DEBUGFS_CREATE_X32(9) The debugfs filesystem DEBUGFS_CREATE_X32(9)
2
3
4
6 debugfs_create_x32 - create a debugfs file that is used to read and
7 write an unsigned 32-bit value
8
10 struct dentry * debugfs_create_x32(const char * name, mode_t mode,
11 struct dentry * parent,
12 u32 * 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_X32(9)