sysfs.h 910 字节
Newer Older
G
Greg Kroah-Hartman 已提交
1
/* SPDX-License-Identifier: GPL-2.0 */
T
Tejun Heo 已提交
2 3 4 5 6 7 8 9
/*
 * 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>
 */

10 11
#ifndef __SYSFS_INTERNAL_H
#define __SYSFS_INTERNAL_H
12

13
#include <linux/sysfs.h>
14

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

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

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

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

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

#endif	/* __SYSFS_INTERNAL_H */