2013-11-24 09:54:58 -05: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-23 17:21:49 -05:00
|
|
|
#include <linux/kernel.h>
|
2013-11-23 17:21:50 -05:00
|
|
|
#include <linux/err.h>
|
2013-11-23 17:21:49 -05:00
|
|
|
|
2013-11-23 17:21:52 -05:00
|
|
|
struct file;
|
|
|
|
struct iattr;
|
|
|
|
|
2013-11-24 09:54:58 -05:00
|
|
|
struct sysfs_dirent;
|
|
|
|
|
2013-11-23 17:21:49 -05:00
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
|
2013-11-28 14:54:15 -05:00
|
|
|
struct sysfs_dirent *kernfs_create_dir_ns(struct sysfs_dirent *parent,
|
|
|
|
const char *name, void *priv,
|
|
|
|
const void *ns);
|
2013-11-23 17:21:50 -05:00
|
|
|
struct sysfs_dirent *kernfs_create_link(struct sysfs_dirent *parent,
|
|
|
|
const char *name,
|
|
|
|
struct sysfs_dirent *target);
|
2013-11-23 17:21:49 -05: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-23 17:21:51 -05:00
|
|
|
int kernfs_rename_ns(struct sysfs_dirent *sd, struct sysfs_dirent *new_parent,
|
|
|
|
const char *new_name, const void *new_ns);
|
2013-11-28 14:54:15 -05:00
|
|
|
void kernfs_enable_ns(struct sysfs_dirent *sd);
|
2013-11-23 17:21:52 -05:00
|
|
|
int kernfs_setattr(struct sysfs_dirent *sd, const struct iattr *iattr);
|
2013-11-23 17:21:49 -05:00
|
|
|
|
|
|
|
#else /* CONFIG_SYSFS */
|
|
|
|
|
2013-11-28 14:54:15 -05:00
|
|
|
static inline struct sysfs_dirent *
|
|
|
|
kernfs_create_dir_ns(struct sysfs_dirent *parent, const char *name, void *priv,
|
|
|
|
const void *ns)
|
|
|
|
{ return ERR_PTR(-ENOSYS); }
|
|
|
|
|
2013-11-23 17:21:50 -05: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-23 17:21:49 -05: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-23 17:21:51 -05: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-28 14:54:15 -05:00
|
|
|
static inline void kernfs_enable_ns(struct sysfs_dirent *sd) { }
|
|
|
|
|
2013-11-23 17:21:52 -05:00
|
|
|
static inline int kernfs_setattr(struct sysfs_dirent *sd,
|
|
|
|
const struct iattr *iattr)
|
|
|
|
{ return -ENOSYS; }
|
|
|
|
|
2013-11-23 17:21:49 -05:00
|
|
|
#endif /* CONFIG_SYSFS */
|
|
|
|
|
2013-11-28 14:54:15 -05:00
|
|
|
static inline struct sysfs_dirent *
|
|
|
|
kernfs_create_dir(struct sysfs_dirent *parent, const char *name, void *priv)
|
|
|
|
{
|
|
|
|
return kernfs_create_dir_ns(parent, name, priv, NULL);
|
|
|
|
}
|
|
|
|
|
2013-11-23 17:21:49 -05:00
|
|
|
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 09:54:58 -05:00
|
|
|
#endif /* __LINUX_KERNFS_H */
|