fs: kernfs: add poll file operation
[linux-2.6-block.git] / include / linux / kernfs.h
CommitLineData
b8441ed2
TH
1/*
2 * kernfs.h - pseudo filesystem decoupled from vfs locking
3 *
4 * This file is released under the GPLv2.
5 */
6
7#ifndef __LINUX_KERNFS_H
8#define __LINUX_KERNFS_H
9
879f40d1 10#include <linux/kernel.h>
5d0e26bb 11#include <linux/err.h>
dd8a5b03
TH
12#include <linux/list.h>
13#include <linux/mutex.h>
bc755553 14#include <linux/idr.h>
517e64f5 15#include <linux/lockdep.h>
cf9e5a73
TH
16#include <linux/rbtree.h>
17#include <linux/atomic.h>
488dee96 18#include <linux/uidgid.h>
abd54f02 19#include <linux/wait.h>
879f40d1 20
5d60418e 21struct file;
917f56ca 22struct dentry;
5d60418e 23struct iattr;
dd8a5b03
TH
24struct seq_file;
25struct vm_area_struct;
4b93dc9b
TH
26struct super_block;
27struct file_system_type;
147e1a97 28struct poll_table_struct;
5d60418e 29
c525aadd
TH
30struct kernfs_open_node;
31struct kernfs_iattrs;
cf9e5a73
TH
32
33enum kernfs_node_type {
df23fc39
TH
34 KERNFS_DIR = 0x0001,
35 KERNFS_FILE = 0x0002,
36 KERNFS_LINK = 0x0004,
cf9e5a73
TH
37};
38
df23fc39 39#define KERNFS_TYPE_MASK 0x000f
df23fc39 40#define KERNFS_FLAG_MASK ~KERNFS_TYPE_MASK
cf9e5a73
TH
41
42enum kernfs_node_flag {
d35258ef 43 KERNFS_ACTIVATED = 0x0010,
df23fc39
TH
44 KERNFS_NS = 0x0020,
45 KERNFS_HAS_SEQ_SHOW = 0x0040,
46 KERNFS_HAS_MMAP = 0x0080,
47 KERNFS_LOCKDEP = 0x0100,
6b0afc2a
TH
48 KERNFS_SUICIDAL = 0x0400,
49 KERNFS_SUICIDED = 0x0800,
ea015218 50 KERNFS_EMPTY_DIR = 0x1000,
0e67db2f 51 KERNFS_HAS_RELEASE = 0x2000,
cf9e5a73
TH
52};
53
d35258ef
TH
54/* @flags for kernfs_create_root() */
55enum kernfs_root_flag {
555724a8
TH
56 /*
57 * kernfs_nodes are created in the deactivated state and invisible.
58 * They require explicit kernfs_activate() to become visible. This
59 * can be used to make related nodes become visible atomically
60 * after all nodes are created successfully.
61 */
62 KERNFS_ROOT_CREATE_DEACTIVATED = 0x0001,
63
64 /*
65 * For regular flies, if the opener has CAP_DAC_OVERRIDE, open(2)
66 * succeeds regardless of the RW permissions. sysfs had an extra
67 * layer of enforcement where open(2) fails with -EACCES regardless
68 * of CAP_DAC_OVERRIDE if the permission doesn't have the
69 * respective read or write access at all (none of S_IRUGO or
70 * S_IWUGO) or the respective operation isn't implemented. The
71 * following flag enables that behavior.
72 */
73 KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 0x0002,
aa818825
SL
74
75 /*
76 * The filesystem supports exportfs operation, so userspace can use
77 * fhandle to access nodes of the fs.
78 */
79 KERNFS_ROOT_SUPPORT_EXPORTOP = 0x0004,
d35258ef
TH
80};
81
324a56e1
TH
82/* type-specific structures for kernfs_node union members */
83struct kernfs_elem_dir {
cf9e5a73 84 unsigned long subdirs;
adc5e8b5 85 /* children rbtree starts here and goes through kn->rb */
cf9e5a73
TH
86 struct rb_root children;
87
88 /*
89 * The kernfs hierarchy this directory belongs to. This fits
324a56e1 90 * better directly in kernfs_node but is here to save space.
cf9e5a73
TH
91 */
92 struct kernfs_root *root;
93};
94
324a56e1
TH
95struct kernfs_elem_symlink {
96 struct kernfs_node *target_kn;
cf9e5a73
TH
97};
98
324a56e1 99struct kernfs_elem_attr {
cf9e5a73 100 const struct kernfs_ops *ops;
c525aadd 101 struct kernfs_open_node *open;
cf9e5a73 102 loff_t size;
ecca47ce 103 struct kernfs_node *notify_next; /* for kernfs_notify() */
cf9e5a73
TH
104};
105
c53cd490
SL
106/* represent a kernfs node */
107union kernfs_node_id {
108 struct {
aa818825
SL
109 /*
110 * blktrace will export this struct as a simplified 'struct
111 * fid' (which is a big data struction), so userspace can use
112 * it to find kernfs node. The layout must match the first two
113 * fields of 'struct fid' exactly.
114 */
c53cd490
SL
115 u32 ino;
116 u32 generation;
117 };
118 u64 id;
119};
120
cf9e5a73 121/*
324a56e1
TH
122 * kernfs_node - the building block of kernfs hierarchy. Each and every
123 * kernfs node is represented by single kernfs_node. Most fields are
cf9e5a73
TH
124 * private to kernfs and shouldn't be accessed directly by kernfs users.
125 *
324a56e1
TH
126 * As long as s_count reference is held, the kernfs_node itself is
127 * accessible. Dereferencing elem or any other outer entity requires
128 * active reference.
cf9e5a73 129 */
324a56e1 130struct kernfs_node {
adc5e8b5
TH
131 atomic_t count;
132 atomic_t active;
cf9e5a73
TH
133#ifdef CONFIG_DEBUG_LOCK_ALLOC
134 struct lockdep_map dep_map;
135#endif
3eef34ad
TH
136 /*
137 * Use kernfs_get_parent() and kernfs_name/path() instead of
138 * accessing the following two fields directly. If the node is
139 * never moved to a different parent, it is safe to access the
140 * parent directly.
141 */
adc5e8b5
TH
142 struct kernfs_node *parent;
143 const char *name;
cf9e5a73 144
adc5e8b5 145 struct rb_node rb;
cf9e5a73 146
adc5e8b5 147 const void *ns; /* namespace tag */
9b0925a6 148 unsigned int hash; /* ns + name hash */
cf9e5a73 149 union {
adc5e8b5
TH
150 struct kernfs_elem_dir dir;
151 struct kernfs_elem_symlink symlink;
152 struct kernfs_elem_attr attr;
cf9e5a73
TH
153 };
154
155 void *priv;
156
c53cd490 157 union kernfs_node_id id;
adc5e8b5
TH
158 unsigned short flags;
159 umode_t mode;
c525aadd 160 struct kernfs_iattrs *iattr;
cf9e5a73 161};
b8441ed2 162
80b9bbef 163/*
90c07c89
TH
164 * kernfs_syscall_ops may be specified on kernfs_create_root() to support
165 * syscalls. These optional callbacks are invoked on the matching syscalls
166 * and can perform any kernfs operations which don't necessarily have to be
167 * the exact operation requested. An active reference is held for each
168 * kernfs_node parameter.
80b9bbef 169 */
90c07c89 170struct kernfs_syscall_ops {
6a7fed4e
TH
171 int (*remount_fs)(struct kernfs_root *root, int *flags, char *data);
172 int (*show_options)(struct seq_file *sf, struct kernfs_root *root);
173
80b9bbef
TH
174 int (*mkdir)(struct kernfs_node *parent, const char *name,
175 umode_t mode);
176 int (*rmdir)(struct kernfs_node *kn);
177 int (*rename)(struct kernfs_node *kn, struct kernfs_node *new_parent,
178 const char *new_name);
4f41fc59
SH
179 int (*show_path)(struct seq_file *sf, struct kernfs_node *kn,
180 struct kernfs_root *root);
80b9bbef
TH
181};
182
ba7443bc
TH
183struct kernfs_root {
184 /* published fields */
324a56e1 185 struct kernfs_node *kn;
d35258ef 186 unsigned int flags; /* KERNFS_ROOT_* flags */
bc755553
TH
187
188 /* private fields, do not use outside kernfs proper */
7d35079f 189 struct idr ino_idr;
4a3ef68a 190 u32 next_generation;
90c07c89 191 struct kernfs_syscall_ops *syscall_ops;
7d568a83
TH
192
193 /* list of kernfs_super_info of this root, protected by kernfs_mutex */
194 struct list_head supers;
195
abd54f02 196 wait_queue_head_t deactivate_waitq;
ba7443bc
TH
197};
198
c525aadd 199struct kernfs_open_file {
dd8a5b03 200 /* published fields */
324a56e1 201 struct kernfs_node *kn;
dd8a5b03 202 struct file *file;
0e67db2f 203 struct seq_file *seq_file;
2536390d 204 void *priv;
dd8a5b03
TH
205
206 /* private fields, do not use outside kernfs proper */
207 struct mutex mutex;
e4234a1f 208 struct mutex prealloc_mutex;
dd8a5b03
TH
209 int event;
210 struct list_head list;
2b75869b 211 char *prealloc_buf;
dd8a5b03 212
b7ce40cf 213 size_t atomic_write_len;
a1d82aff 214 bool mmapped:1;
0e67db2f 215 bool released:1;
dd8a5b03
TH
216 const struct vm_operations_struct *vm_ops;
217};
218
f6acf8bb 219struct kernfs_ops {
0e67db2f
TH
220 /*
221 * Optional open/release methods. Both are called with
222 * @of->seq_file populated.
223 */
224 int (*open)(struct kernfs_open_file *of);
225 void (*release)(struct kernfs_open_file *of);
226
f6acf8bb
TH
227 /*
228 * Read is handled by either seq_file or raw_read().
229 *
d19b9846
TH
230 * If seq_show() is present, seq_file path is active. Other seq
231 * operations are optional and if not implemented, the behavior is
232 * equivalent to single_open(). @sf->private points to the
c525aadd 233 * associated kernfs_open_file.
f6acf8bb
TH
234 *
235 * read() is bounced through kernel buffer and a read larger than
236 * PAGE_SIZE results in partial operation of PAGE_SIZE.
237 */
238 int (*seq_show)(struct seq_file *sf, void *v);
d19b9846
TH
239
240 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
241 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
242 void (*seq_stop)(struct seq_file *sf, void *v);
f6acf8bb 243
c525aadd 244 ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
f6acf8bb
TH
245 loff_t off);
246
247 /*
4d3773c4
TH
248 * write() is bounced through kernel buffer. If atomic_write_len
249 * is not set, a write larger than PAGE_SIZE results in partial
250 * operations of PAGE_SIZE chunks. If atomic_write_len is set,
251 * writes upto the specified size are executed atomically but
252 * larger ones are rejected with -E2BIG.
f6acf8bb 253 */
4d3773c4 254 size_t atomic_write_len;
2b75869b
N
255 /*
256 * "prealloc" causes a buffer to be allocated at open for
257 * all read/write requests. As ->seq_show uses seq_read()
258 * which does its own allocation, it is incompatible with
259 * ->prealloc. Provide ->read and ->write with ->prealloc.
260 */
261 bool prealloc;
c525aadd 262 ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
f6acf8bb
TH
263 loff_t off);
264
147e1a97
JW
265 __poll_t (*poll)(struct kernfs_open_file *of,
266 struct poll_table_struct *pt);
267
c525aadd 268 int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
517e64f5
TH
269
270#ifdef CONFIG_DEBUG_LOCK_ALLOC
271 struct lock_class_key lockdep_key;
272#endif
f6acf8bb
TH
273};
274
ba341d55 275#ifdef CONFIG_KERNFS
879f40d1 276
df23fc39 277static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
cf9e5a73 278{
df23fc39 279 return kn->flags & KERNFS_TYPE_MASK;
cf9e5a73
TH
280}
281
282/**
283 * kernfs_enable_ns - enable namespace under a directory
324a56e1 284 * @kn: directory of interest, should be empty
cf9e5a73 285 *
324a56e1
TH
286 * This is to be called right after @kn is created to enable namespace
287 * under it. All children of @kn must have non-NULL namespace tags and
cf9e5a73
TH
288 * only the ones which match the super_block's tag will be visible.
289 */
324a56e1 290static inline void kernfs_enable_ns(struct kernfs_node *kn)
cf9e5a73 291{
df23fc39 292 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
adc5e8b5 293 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
df23fc39 294 kn->flags |= KERNFS_NS;
cf9e5a73
TH
295}
296
ac9bba03
TH
297/**
298 * kernfs_ns_enabled - test whether namespace is enabled
324a56e1 299 * @kn: the node to test
ac9bba03
TH
300 *
301 * Test whether namespace filtering is enabled for the children of @ns.
302 */
324a56e1 303static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
ac9bba03 304{
df23fc39 305 return kn->flags & KERNFS_NS;
ac9bba03
TH
306}
307
3eef34ad 308int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
9f6df573
AK
309int kernfs_path_from_node(struct kernfs_node *root_kn, struct kernfs_node *kn,
310 char *buf, size_t buflen);
3eef34ad
TH
311void pr_cont_kernfs_name(struct kernfs_node *kn);
312void pr_cont_kernfs_path(struct kernfs_node *kn);
313struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
324a56e1
TH
314struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
315 const char *name, const void *ns);
bd96f76a
TH
316struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
317 const char *path, const void *ns);
324a56e1
TH
318void kernfs_get(struct kernfs_node *kn);
319void kernfs_put(struct kernfs_node *kn);
ccf73cf3 320
0c23b225
TH
321struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
322struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
fb02915f 323struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
0c23b225 324
fb3c8315
AK
325struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
326 struct super_block *sb);
90c07c89 327struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
d35258ef 328 unsigned int flags, void *priv);
ba7443bc
TH
329void kernfs_destroy_root(struct kernfs_root *root);
330
324a56e1 331struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
bb8b9d09 332 const char *name, umode_t mode,
488dee96 333 kuid_t uid, kgid_t gid,
bb8b9d09 334 void *priv, const void *ns);
ea015218
EB
335struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
336 const char *name);
2063d608 337struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
488dee96
DT
338 const char *name, umode_t mode,
339 kuid_t uid, kgid_t gid,
340 loff_t size,
2063d608
TH
341 const struct kernfs_ops *ops,
342 void *priv, const void *ns,
2063d608 343 struct lock_class_key *key);
324a56e1
TH
344struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
345 const char *name,
346 struct kernfs_node *target);
d35258ef 347void kernfs_activate(struct kernfs_node *kn);
324a56e1 348void kernfs_remove(struct kernfs_node *kn);
6b0afc2a
TH
349void kernfs_break_active_protection(struct kernfs_node *kn);
350void kernfs_unbreak_active_protection(struct kernfs_node *kn);
351bool kernfs_remove_self(struct kernfs_node *kn);
324a56e1 352int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
879f40d1 353 const void *ns);
324a56e1 354int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
890ece16 355 const char *new_name, const void *new_ns);
324a56e1 356int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
147e1a97
JW
357__poll_t kernfs_generic_poll(struct kernfs_open_file *of,
358 struct poll_table_struct *pt);
324a56e1 359void kernfs_notify(struct kernfs_node *kn);
879f40d1 360
4b93dc9b
TH
361const void *kernfs_super_ns(struct super_block *sb);
362struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
363 struct kernfs_root *root, unsigned long magic,
364 bool *new_sb_created, const void *ns);
4b93dc9b 365void kernfs_kill_sb(struct super_block *sb);
4e26445f 366struct super_block *kernfs_pin_sb(struct kernfs_root *root, const void *ns);
4b93dc9b
TH
367
368void kernfs_init(void);
369
69fd5c39
SL
370struct kernfs_node *kernfs_get_node_by_id(struct kernfs_root *root,
371 const union kernfs_node_id *id);
ba341d55 372#else /* CONFIG_KERNFS */
879f40d1 373
df23fc39 374static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
cf9e5a73
TH
375{ return 0; } /* whatever */
376
324a56e1 377static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
cf9e5a73 378
324a56e1 379static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
ac9bba03
TH
380{ return false; }
381
3eef34ad
TH
382static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
383{ return -ENOSYS; }
384
0e0b2afd
TH
385static inline int kernfs_path_from_node(struct kernfs_node *root_kn,
386 struct kernfs_node *kn,
387 char *buf, size_t buflen)
388{ return -ENOSYS; }
389
3eef34ad
TH
390static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
391static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
392
393static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
394{ return NULL; }
395
324a56e1
TH
396static inline struct kernfs_node *
397kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
ccf73cf3
TH
398 const void *ns)
399{ return NULL; }
bd96f76a
TH
400static inline struct kernfs_node *
401kernfs_walk_and_get_ns(struct kernfs_node *parent, const char *path,
402 const void *ns)
403{ return NULL; }
ccf73cf3 404
324a56e1
TH
405static inline void kernfs_get(struct kernfs_node *kn) { }
406static inline void kernfs_put(struct kernfs_node *kn) { }
ccf73cf3 407
0c23b225
TH
408static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
409{ return NULL; }
410
411static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
412{ return NULL; }
413
fb02915f
TH
414static inline struct inode *
415kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
416{ return NULL; }
417
80b9bbef 418static inline struct kernfs_root *
d35258ef
TH
419kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
420 void *priv)
ba7443bc
TH
421{ return ERR_PTR(-ENOSYS); }
422
423static inline void kernfs_destroy_root(struct kernfs_root *root) { }
424
324a56e1 425static inline struct kernfs_node *
bb8b9d09 426kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
488dee96
DT
427 umode_t mode, kuid_t uid, kgid_t gid,
428 void *priv, const void *ns)
93b2b8e4
TH
429{ return ERR_PTR(-ENOSYS); }
430
324a56e1 431static inline struct kernfs_node *
2063d608 432__kernfs_create_file(struct kernfs_node *parent, const char *name,
488dee96
DT
433 umode_t mode, kuid_t uid, kgid_t gid,
434 loff_t size, const struct kernfs_ops *ops,
dfeb0750 435 void *priv, const void *ns, struct lock_class_key *key)
496f7394
TH
436{ return ERR_PTR(-ENOSYS); }
437
324a56e1
TH
438static inline struct kernfs_node *
439kernfs_create_link(struct kernfs_node *parent, const char *name,
440 struct kernfs_node *target)
5d0e26bb
TH
441{ return ERR_PTR(-ENOSYS); }
442
d35258ef
TH
443static inline void kernfs_activate(struct kernfs_node *kn) { }
444
324a56e1 445static inline void kernfs_remove(struct kernfs_node *kn) { }
879f40d1 446
6b0afc2a
TH
447static inline bool kernfs_remove_self(struct kernfs_node *kn)
448{ return false; }
449
324a56e1 450static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
879f40d1
TH
451 const char *name, const void *ns)
452{ return -ENOSYS; }
453
324a56e1
TH
454static inline int kernfs_rename_ns(struct kernfs_node *kn,
455 struct kernfs_node *new_parent,
890ece16
TH
456 const char *new_name, const void *new_ns)
457{ return -ENOSYS; }
458
324a56e1 459static inline int kernfs_setattr(struct kernfs_node *kn,
5d60418e
TH
460 const struct iattr *iattr)
461{ return -ENOSYS; }
462
324a56e1 463static inline void kernfs_notify(struct kernfs_node *kn) { }
024f6471 464
4b93dc9b
TH
465static inline const void *kernfs_super_ns(struct super_block *sb)
466{ return NULL; }
467
468static inline struct dentry *
469kernfs_mount_ns(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
470 struct kernfs_root *root, unsigned long magic,
471 bool *new_sb_created, const void *ns)
4b93dc9b
TH
472{ return ERR_PTR(-ENOSYS); }
473
474static inline void kernfs_kill_sb(struct super_block *sb) { }
475
476static inline void kernfs_init(void) { }
477
ba341d55 478#endif /* CONFIG_KERNFS */
879f40d1 479
3abb1d90
TH
480/**
481 * kernfs_path - build full path of a given node
482 * @kn: kernfs_node of interest
483 * @buf: buffer to copy @kn's name into
484 * @buflen: size of @buf
485 *
8f5be0ec
KK
486 * If @kn is NULL result will be "(null)".
487 *
488 * Returns the length of the full path. If the full length is equal to or
489 * greater than @buflen, @buf contains the truncated path with the trailing
490 * '\0'. On error, -errno is returned.
3abb1d90
TH
491 */
492static inline int kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
493{
494 return kernfs_path_from_node(kn, NULL, buf, buflen);
495}
496
324a56e1
TH
497static inline struct kernfs_node *
498kernfs_find_and_get(struct kernfs_node *kn, const char *name)
ccf73cf3 499{
324a56e1 500 return kernfs_find_and_get_ns(kn, name, NULL);
ccf73cf3
TH
501}
502
bd96f76a
TH
503static inline struct kernfs_node *
504kernfs_walk_and_get(struct kernfs_node *kn, const char *path)
505{
506 return kernfs_walk_and_get_ns(kn, path, NULL);
507}
508
324a56e1 509static inline struct kernfs_node *
bb8b9d09
TH
510kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
511 void *priv)
93b2b8e4 512{
488dee96
DT
513 return kernfs_create_dir_ns(parent, name, mode,
514 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
515 priv, NULL);
93b2b8e4
TH
516}
517
324a56e1
TH
518static inline struct kernfs_node *
519kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
488dee96
DT
520 umode_t mode, kuid_t uid, kgid_t gid,
521 loff_t size, const struct kernfs_ops *ops,
517e64f5
TH
522 void *priv, const void *ns)
523{
524 struct lock_class_key *key = NULL;
525
526#ifdef CONFIG_DEBUG_LOCK_ALLOC
527 key = (struct lock_class_key *)&ops->lockdep_key;
528#endif
488dee96
DT
529 return __kernfs_create_file(parent, name, mode, uid, gid,
530 size, ops, priv, ns, key);
517e64f5
TH
531}
532
324a56e1
TH
533static inline struct kernfs_node *
534kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
496f7394
TH
535 loff_t size, const struct kernfs_ops *ops, void *priv)
536{
488dee96
DT
537 return kernfs_create_file_ns(parent, name, mode,
538 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
539 size, ops, priv, NULL);
496f7394
TH
540}
541
324a56e1 542static inline int kernfs_remove_by_name(struct kernfs_node *parent,
879f40d1
TH
543 const char *name)
544{
545 return kernfs_remove_by_name_ns(parent, name, NULL);
546}
547
0c23b225
TH
548static inline int kernfs_rename(struct kernfs_node *kn,
549 struct kernfs_node *new_parent,
550 const char *new_name)
551{
552 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
553}
554
4b93dc9b
TH
555static inline struct dentry *
556kernfs_mount(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
557 struct kernfs_root *root, unsigned long magic,
558 bool *new_sb_created)
4b93dc9b 559{
26fc9cd2
JZ
560 return kernfs_mount_ns(fs_type, flags, root,
561 magic, new_sb_created, NULL);
4b93dc9b
TH
562}
563
b8441ed2 564#endif /* __LINUX_KERNFS_H */