2007-09-20 10:31:38 +02: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 20:54:31 +01:00
|
|
|
#ifndef __SYSFS_INTERNAL_H
|
|
|
|
#define __SYSFS_INTERNAL_H
|
2009-09-09 20:25:37 +02:00
|
|
|
|
2013-11-28 20:54:31 +01:00
|
|
|
#include <linux/sysfs.h>
|
2007-06-13 21:27:24 +02:00
|
|
|
|
2007-09-20 09:05:10 +02:00
|
|
|
/*
|
|
|
|
* mount.c
|
|
|
|
*/
|
2013-12-11 20:11:53 +01:00
|
|
|
extern struct kernfs_node *sysfs_root_kn;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-09-20 09:05:10 +02:00
|
|
|
/*
|
|
|
|
* dir.c
|
|
|
|
*/
|
2013-10-30 15:28:36 +01:00
|
|
|
extern spinlock_t sysfs_symlink_target_lock;
|
2007-09-20 09:05:10 +02:00
|
|
|
|
2013-12-11 20:11:53 +01:00
|
|
|
void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
|
2007-09-20 09:05:10 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* file.c
|
|
|
|
*/
|
2013-12-11 20:11:53 +01:00
|
|
|
int sysfs_add_file(struct kernfs_node *parent,
|
2013-11-28 20:54:23 +01:00
|
|
|
const struct attribute *attr, bool is_bin);
|
2013-12-11 20:11:53 +01:00
|
|
|
int sysfs_add_file_mode_ns(struct kernfs_node *parent,
|
2013-11-28 20:54:23 +01:00
|
|
|
const struct attribute *attr, bool is_bin,
|
2013-09-12 04:29:04 +02:00
|
|
|
umode_t amode, const void *ns);
|
2013-10-01 23:42:07 +02:00
|
|
|
|
2007-09-20 09:05:10 +02:00
|
|
|
/*
|
|
|
|
* symlink.c
|
|
|
|
*/
|
2013-12-11 20:11:53 +01:00
|
|
|
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
|
2013-01-25 21:51:13 +01:00
|
|
|
const char *name);
|
2013-11-28 20:54:31 +01:00
|
|
|
|
|
|
|
#endif /* __SYSFS_INTERNAL_H */
|