Tejun Heo | b8441ed | 2013-11-24 09:54:58 -0500 | [diff] [blame] | 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 | |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 10 | #include <linux/kernel.h> |
Tejun Heo | 5d0e26b | 2013-11-23 17:21:50 -0500 | [diff] [blame] | 11 | #include <linux/err.h> |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 12 | |
Tejun Heo | b8441ed | 2013-11-24 09:54:58 -0500 | [diff] [blame] | 13 | struct sysfs_dirent; |
| 14 | |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 15 | #ifdef CONFIG_SYSFS |
| 16 | |
Tejun Heo | 5d0e26b | 2013-11-23 17:21:50 -0500 | [diff] [blame] | 17 | struct sysfs_dirent *kernfs_create_link(struct sysfs_dirent *parent, |
| 18 | const char *name, |
| 19 | struct sysfs_dirent *target); |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 20 | void kernfs_remove(struct sysfs_dirent *sd); |
| 21 | int kernfs_remove_by_name_ns(struct sysfs_dirent *parent, const char *name, |
| 22 | const void *ns); |
Tejun Heo | 890ece1 | 2013-11-23 17:21:51 -0500 | [diff] [blame^] | 23 | int kernfs_rename_ns(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent, |
| 24 | const char *new_name, const void *new_ns); |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 25 | |
| 26 | #else /* CONFIG_SYSFS */ |
| 27 | |
Tejun Heo | 5d0e26b | 2013-11-23 17:21:50 -0500 | [diff] [blame] | 28 | static inline struct sysfs_dirent * |
| 29 | kernfs_create_link(struct sysfs_dirent *parent, const char *name, |
| 30 | struct sysfs_dirent *target) |
| 31 | { return ERR_PTR(-ENOSYS); } |
| 32 | |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 33 | static inline void kernfs_remove(struct sysfs_dirent *sd) { } |
| 34 | |
| 35 | static inline int kernfs_remove_by_name_ns(struct sysfs_dirent *parent, |
| 36 | const char *name, const void *ns) |
| 37 | { return -ENOSYS; } |
| 38 | |
Tejun Heo | 890ece1 | 2013-11-23 17:21:51 -0500 | [diff] [blame^] | 39 | static inline int kernfs_rename_ns(struct sysfs_dirent *sd, |
| 40 | struct sysfs_dirent *new_parent, |
| 41 | const char *new_name, const void *new_ns) |
| 42 | { return -ENOSYS; } |
| 43 | |
Tejun Heo | 879f40d | 2013-11-23 17:21:49 -0500 | [diff] [blame] | 44 | #endif /* CONFIG_SYSFS */ |
| 45 | |
| 46 | static inline int kernfs_remove_by_name(struct sysfs_dirent *parent, |
| 47 | const char *name) |
| 48 | { |
| 49 | return kernfs_remove_by_name_ns(parent, name, NULL); |
| 50 | } |
| 51 | |
Tejun Heo | b8441ed | 2013-11-24 09:54:58 -0500 | [diff] [blame] | 52 | #endif /* __LINUX_KERNFS_H */ |