Contributors: 12
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Tejun Heo |
52 |
41.94% |
9 |
40.91% |
| James Bottomley |
15 |
12.10% |
1 |
4.55% |
| Patrick Mochel |
15 |
12.10% |
2 |
9.09% |
| Dmitry Torokhov |
12 |
9.68% |
1 |
4.55% |
| Christoph Hellwig |
9 |
7.26% |
1 |
4.55% |
| Rafael J. Wysocki |
7 |
5.65% |
1 |
4.55% |
| Christian Brauner |
4 |
3.23% |
1 |
4.55% |
| Thomas Weißschuh |
3 |
2.42% |
1 |
4.55% |
| Andrew Morton |
2 |
1.61% |
2 |
9.09% |
| Mikulas Patocka |
2 |
1.61% |
1 |
4.55% |
| Greg Kroah-Hartman |
2 |
1.61% |
1 |
4.55% |
| Al Viro |
1 |
0.81% |
1 |
4.55% |
| Total |
124 |
|
22 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* 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
#include <linux/sysfs.h>
/*
* mount.c
*/
extern struct kernfs_node *sysfs_root_kn;
/*
* dir.c
*/
extern spinlock_t sysfs_symlink_target_lock;
void sysfs_warn_dup(struct kernfs_node *parent, const char *name);
/*
* 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);
/*
* symlink.c
*/
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
const char *name);
#endif /* __SYSFS_INTERNAL_H */