diff options
Diffstat (limited to 'include/linux/sysfs.h')
-rw-r--r-- | include/linux/sysfs.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h index b8bfdc173ec0..3c12198c0103 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h | |||
@@ -237,6 +237,9 @@ int __must_check sysfs_create_files(struct kobject *kobj, | |||
237 | const struct attribute **attr); | 237 | const struct attribute **attr); |
238 | int __must_check sysfs_chmod_file(struct kobject *kobj, | 238 | int __must_check sysfs_chmod_file(struct kobject *kobj, |
239 | const struct attribute *attr, umode_t mode); | 239 | const struct attribute *attr, umode_t mode); |
240 | struct kernfs_node *sysfs_break_active_protection(struct kobject *kobj, | ||
241 | const struct attribute *attr); | ||
242 | void sysfs_unbreak_active_protection(struct kernfs_node *kn); | ||
240 | void sysfs_remove_file_ns(struct kobject *kobj, const struct attribute *attr, | 243 | void sysfs_remove_file_ns(struct kobject *kobj, const struct attribute *attr, |
241 | const void *ns); | 244 | const void *ns); |
242 | bool sysfs_remove_file_self(struct kobject *kobj, const struct attribute *attr); | 245 | bool sysfs_remove_file_self(struct kobject *kobj, const struct attribute *attr); |
@@ -350,6 +353,17 @@ static inline int sysfs_chmod_file(struct kobject *kobj, | |||
350 | return 0; | 353 | return 0; |
351 | } | 354 | } |
352 | 355 | ||
356 | static inline struct kernfs_node * | ||
357 | sysfs_break_active_protection(struct kobject *kobj, | ||
358 | const struct attribute *attr) | ||
359 | { | ||
360 | return NULL; | ||
361 | } | ||
362 | |||
363 | static inline void sysfs_unbreak_active_protection(struct kernfs_node *kn) | ||
364 | { | ||
365 | } | ||
366 | |||
353 | static inline void sysfs_remove_file_ns(struct kobject *kobj, | 367 | static inline void sysfs_remove_file_ns(struct kobject *kobj, |
354 | const struct attribute *attr, | 368 | const struct attribute *attr, |
355 | const void *ns) | 369 | const void *ns) |