sysfs: add sysfs_file_change_owner()
Add helpers to change the owner of a sysfs files. This function will be used to correctly account for kobject ownership changes, e.g. when moving network devices between network namespaces. Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
d1c73cbdf9
commit
f70ce18568
@@ -310,6 +310,9 @@ static inline void sysfs_enable_ns(struct kernfs_node *kn)
|
||||
return kernfs_enable_ns(kn);
|
||||
}
|
||||
|
||||
int sysfs_file_change_owner(struct kobject *kobj, const char *name, kuid_t kuid,
|
||||
kgid_t kgid);
|
||||
|
||||
#else /* CONFIG_SYSFS */
|
||||
|
||||
static inline int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
|
||||
@@ -522,6 +525,13 @@ static inline void sysfs_enable_ns(struct kernfs_node *kn)
|
||||
{
|
||||
}
|
||||
|
||||
static inline int sysfs_file_change_owner(struct kobject *kobj,
|
||||
const char *name, kuid_t kuid,
|
||||
kgid_t kgid)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif /* CONFIG_SYSFS */
|
||||
|
||||
static inline int __must_check sysfs_create_file(struct kobject *kobj,
|
||||
|
Reference in New Issue
Block a user