2007-09-20 02:31:38 -06:00
|
|
|
/*
|
|
|
|
* fs/sysfs/sysfs.h - sysfs internal header file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001-3 Patrick Mochel
|
|
|
|
* Copyright (c) 2007 SUSE Linux Products GmbH
|
|
|
|
* Copyright (c) 2007 Tejun Heo <teheo@suse.de>
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2.
|
|
|
|
*/
|
|
|
|
|
2013-11-28 12:54:31 -07:00
|
|
|
#ifndef __SYSFS_INTERNAL_H
|
|
|
|
#define __SYSFS_INTERNAL_H
|
2009-09-09 12:25:37 -06:00
|
|
|
|
2013-11-28 12:54:31 -07:00
|
|
|
#include <linux/sysfs.h>
|
2007-06-13 13:27:24 -06:00
|
|
|
|
2007-09-20 01:05:10 -06:00
|
|
|
/*
|
|
|
|
* mount.c
|
|
|
|
*/
|
2013-12-11 12:11:53 -07:00
|
|
|
extern struct kernfs_node *sysfs_root_kn;
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2007-09-20 01:05:10 -06:00
|
|
|
/*
|
|
|
|
* dir.c
|
|
|
|
*/
|
2013-10-30 08:28:36 -06:00
|
|
|
extern spinlock_t sysfs_symlink_target_lock;
|
2007-09-20 01:05:10 -06:00
|
|
|
|
2013-12-11 12:11:53 -07:00
|
|
|
void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
|
2007-09-20 01:05:10 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* file.c
|
|
|
|
*/
|
2013-12-11 12:11:53 -07:00
|
|
|
int sysfs_add_file(struct kernfs_node *parent,
|
2013-11-28 12:54:23 -07:00
|
|
|
const struct attribute *attr, bool is_bin);
|
2013-12-11 12:11:53 -07:00
|
|
|
int sysfs_add_file_mode_ns(struct kernfs_node *parent,
|
2013-11-28 12:54:23 -07:00
|
|
|
const struct attribute *attr, bool is_bin,
|
2013-09-11 20:29:04 -06:00
|
|
|
umode_t amode, const void *ns);
|
2013-10-01 15:42:07 -06:00
|
|
|
|
2007-09-20 01:05:10 -06:00
|
|
|
/*
|
|
|
|
* symlink.c
|
|
|
|
*/
|
2013-12-11 12:11:53 -07:00
|
|
|
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
|
2013-01-25 13:51:13 -07:00
|
|
|
const char *name);
|
2013-11-28 12:54:31 -07:00
|
|
|
|
|
|
|
#endif /* __SYSFS_INTERNAL_H */
|