sysfs.h 916 字节
Newer Older
T
Tejun Heo 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * 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.
 */

11 12
#ifndef __SYSFS_INTERNAL_H
#define __SYSFS_INTERNAL_H
13

14
#include <linux/sysfs.h>
15

T
Tejun Heo 已提交
16 17 18
/*
 * mount.c
 */
19
extern struct kernfs_node *sysfs_root_kn;
L
Linus Torvalds 已提交
20

T
Tejun Heo 已提交
21 22 23
/*
 * dir.c
 */
24
extern spinlock_t sysfs_symlink_target_lock;
T
Tejun Heo 已提交
25

26
void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
T
Tejun Heo 已提交
27 28 29 30

/*
 * file.c
 */
31
int sysfs_add_file(struct kernfs_node *parent,
32
		   const struct attribute *attr, bool is_bin);
33
int sysfs_add_file_mode_ns(struct kernfs_node *parent,
34
			   const struct attribute *attr, bool is_bin,
35
			   umode_t amode, const void *ns);
36

T
Tejun Heo 已提交
37 38 39
/*
 * symlink.c
 */
40
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
41
			 const char *name);
42 43

#endif	/* __SYSFS_INTERNAL_H */