sysfs, kernfs: introduce kernfs_create_dir[_ns]()
authorTejun Heo <tj@kernel.org>
Thu, 28 Nov 2013 19:54:15 +0000 (14:54 -0500)
committerPawel Osmialowski <p.osmialowsk@mcdsrvbld02.digital.local>
Fri, 27 Mar 2015 17:13:15 +0000 (18:13 +0100)
commit032598adaf7e3d26e93fd6f5802473d93cc27a20
treed2b09d30de3724b3e3008e789312eb2fc350a937
parent14333aa575b182c8fd14cde1f1562a120d95eb09
sysfs, kernfs: introduce kernfs_create_dir[_ns]()

Introduce kernfs interface to manipulate a directory which takes and
returns sysfs_dirents.

create_dir() is renamed to kernfs_create_dir_ns() and its argumantes
and return value are updated.  create_dir() usages are replaced with
kernfs_create_dir_ns() and sysfs_create_subdir() usages are replaced
with kernfs_create_dir().  Dup warnings are handled explicitly by
sysfs users of the kernfs interface.

sysfs_enable_ns() is renamed to kernfs_enable_ns().

This patch doesn't introduce any behavior changes.

v2: Dummy implementation for !CONFIG_SYSFS updated to return -ENOSYS.

v3: kernfs_enable_ns() added.

v4: Refreshed on top of "sysfs: drop kobj_ns_type handling, take #2"
    so that this patch removes sysfs_enable_ns().

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/sysfs/dir.c
fs/sysfs/group.c
fs/sysfs/sysfs.h
include/linux/kernfs.h
include/linux/sysfs.h
lib/kobject.c