2013-11-24 22:54:58 +08:00
|
|
|
/*
|
|
|
|
* kernfs.h - pseudo filesystem decoupled from vfs locking
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_KERNFS_H
|
|
|
|
#define __LINUX_KERNFS_H
|
|
|
|
|
2013-11-24 06:21:49 +08:00
|
|
|
#include <linux/kernel.h>
|
2013-11-24 06:21:50 +08:00
|
|
|
#include <linux/err.h>
|
2013-11-24 06:21:49 +08:00
|
|
|
|
2013-11-24 06:21:52 +08:00
|
|
|
struct file;
|
|
|
|
struct iattr;
|
|
|
|
|
2013-11-24 22:54:58 +08:00
|
|
|
struct sysfs_dirent;
|
|
|
|
|
2013-11-24 06:21:49 +08:00
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
|
2013-11-24 06:21:50 +08:00
|
|
|
struct sysfs_dirent *kernfs_create_link(struct sysfs_dirent *parent,
|
|
|
|
const char *name,
|
|
|
|
struct sysfs_dirent *target);
|
2013-11-24 06:21:49 +08:00
|
|
|
void kernfs_remove(struct sysfs_dirent *sd);
|
|
|
|
int kernfs_remove_by_name_ns(struct sysfs_dirent *parent, const char *name,
|
|
|
|
const void *ns);
|
2013-11-24 06:21:51 +08:00
|
|
|
int kernfs_rename_ns(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent,
|
|
|
|
const char *new_name, const void *new_ns);
|
2013-11-24 06:21:52 +08:00
|
|
|
int kernfs_setattr(struct sysfs_dirent *sd, const struct iattr *iattr);
|
2013-11-24 06:21:49 +08:00
|
|
|
|
|
|
|
#else /* CONFIG_SYSFS */
|
|
|
|
|
2013-11-24 06:21:50 +08:00
|
|
|
static inline struct sysfs_dirent *
|
|
|
|
kernfs_create_link(struct sysfs_dirent *parent, const char *name,
|
|
|
|
struct sysfs_dirent *target)
|
|
|
|
{ return ERR_PTR(-ENOSYS); }
|
|
|
|
|
2013-11-24 06:21:49 +08:00
|
|
|
static inline void kernfs_remove(struct sysfs_dirent *sd) { }
|
|
|
|
|
|
|
|
static inline int kernfs_remove_by_name_ns(struct sysfs_dirent *parent,
|
|
|
|
const char *name, const void *ns)
|
|
|
|
{ return -ENOSYS; }
|
|
|
|
|
2013-11-24 06:21:51 +08:00
|
|
|
static inline int kernfs_rename_ns(struct sysfs_dirent *sd,
|
|
|
|
struct sysfs_dirent *new_parent,
|
|
|
|
const char *new_name, const void *new_ns)
|
|
|
|
{ return -ENOSYS; }
|
|
|
|
|
2013-11-24 06:21:52 +08:00
|
|
|
static inline int kernfs_setattr(struct sysfs_dirent *sd,
|
|
|
|
const struct iattr *iattr)
|
|
|
|
{ return -ENOSYS; }
|
|
|
|
|
2013-11-24 06:21:49 +08:00
|
|
|
#endif /* CONFIG_SYSFS */
|
|
|
|
|
|
|
|
static inline int kernfs_remove_by_name(struct sysfs_dirent *parent,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return kernfs_remove_by_name_ns(parent, name, NULL);
|
|
|
|
}
|
|
|
|
|
2013-11-24 22:54:58 +08:00
|
|
|
#endif /* __LINUX_KERNFS_H */
|