Files

44 lines
1007 B
C
Raw Permalink Normal View History

2018-01-22 16:18:13 +01:00
/* SPDX-License-Identifier: GPL-2.0 */
2007-09-20 17:31:38 +09: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>
*/
#ifndef __SYSFS_INTERNAL_H
#define __SYSFS_INTERNAL_H
2009-09-09 14:25:37 -04:00
#include <linux/sysfs.h>
2007-09-20 16:05:10 +09:00
/*
* mount.c
*/
extern struct kernfs_node *sysfs_root_kn;
2005-04-16 15:20:36 -07:00
2007-09-20 16:05:10 +09:00
/*
* dir.c
*/
extern spinlock_t sysfs_symlink_target_lock;
2007-09-20 16:05:10 +09:00
void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
2007-09-20 16:05:10 +09:00
/*
* file.c
*/
int sysfs_add_file_mode_ns(struct kernfs_node *parent,
const struct attribute *attr, umode_t amode, kuid_t uid,
kgid_t gid, const struct ns_common *ns);
int sysfs_add_bin_file_mode_ns(struct kernfs_node *parent,
const struct bin_attribute *battr, umode_t mode, size_t size,
kuid_t uid, kgid_t gid, const struct ns_common *ns);
2007-09-20 16:05:10 +09:00
/*
* symlink.c
*/
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
const char *name);
#endif /* __SYSFS_INTERNAL_H */