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