Contributors: 14
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Linus Torvalds (pre-git) |
19 |
14.62% |
2 |
10.00% |
| Brian Gerst |
18 |
13.85% |
1 |
5.00% |
| Serge E. Hallyn |
18 |
13.85% |
2 |
10.00% |
| Al Viro |
18 |
13.85% |
2 |
10.00% |
| Christian Brauner |
16 |
12.31% |
3 |
15.00% |
| Linus Torvalds |
10 |
7.69% |
2 |
10.00% |
| Masahiro Yamada |
8 |
6.15% |
1 |
5.00% |
| Roman Zippel |
8 |
6.15% |
1 |
5.00% |
| Vasily Gorbik |
5 |
3.85% |
1 |
5.00% |
| Kirill V Tkhai |
3 |
2.31% |
1 |
5.00% |
| Eric W. Biedermann |
3 |
2.31% |
1 |
5.00% |
| Rusty Russell |
2 |
1.54% |
1 |
5.00% |
| David Howells |
1 |
0.77% |
1 |
5.00% |
| Thomas Gleixner |
1 |
0.77% |
1 |
5.00% |
| Total |
130 |
|
20 |
|
// SPDX-License-Identifier: GPL-2.0-only
#include <generated/compile.h>
#include <generated/utsrelease.h>
#include <linux/proc_ns.h>
#include <linux/refcount.h>
#include <linux/uts.h>
#include <linux/utsname.h>
struct uts_namespace init_uts_ns = {
.ns.ns_type = ns_common_type(&init_uts_ns),
.ns.__ns_ref = REFCOUNT_INIT(2),
.name = {
.sysname = UTS_SYSNAME,
.nodename = UTS_NODENAME,
.release = UTS_RELEASE,
.version = UTS_VERSION,
.machine = UTS_MACHINE,
.domainname = UTS_DOMAINNAME,
},
.user_ns = &init_user_ns,
.ns.inum = ns_init_inum(&init_uts_ns),
#ifdef CONFIG_UTS_NS
.ns.ops = &utsns_operations,
#endif
};
/* FIXED STRINGS! Don't touch! */
const char linux_banner[] =
"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";