]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/sysfs/sysfs.h
Merge tag 'tty-4.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
[mirror_ubuntu-jammy-kernel.git] / fs / sysfs / sysfs.h
CommitLineData
619daeee 1/* SPDX-License-Identifier: GPL-2.0 */
6d66f5cd
TH
2/*
3 * fs/sysfs/sysfs.h - sysfs internal header file
4 *
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
6d66f5cd
TH
8 */
9
ae6621b0
TH
10#ifndef __SYSFS_INTERNAL_H
11#define __SYSFS_INTERNAL_H
ddd29ec6 12
ae6621b0 13#include <linux/sysfs.h>
fb6896da 14
59f69015
TH
15/*
16 * mount.c
17 */
324a56e1 18extern struct kernfs_node *sysfs_root_kn;
1da177e4 19
59f69015
TH
20/*
21 * dir.c
22 */
0cae60f9 23extern spinlock_t sysfs_symlink_target_lock;
59f69015 24
324a56e1 25void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
59f69015 26
59f69015
TH
27/*
28 * file.c
29 */
324a56e1 30int sysfs_add_file(struct kernfs_node *parent,
a7dc66df 31 const struct attribute *attr, bool is_bin);
324a56e1 32int sysfs_add_file_mode_ns(struct kernfs_node *parent,
a7dc66df 33 const struct attribute *attr, bool is_bin,
58292cbe 34 umode_t amode, const void *ns);
73d97146 35
59f69015
TH
36/*
37 * symlink.c
38 */
324a56e1 39int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
0bb8f3d6 40 const char *name);
ae6621b0
TH
41
42#endif /* __SYSFS_INTERNAL_H */