Contributors: 13
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Linus Torvalds (pre-git) |
19 |
16.52% |
2 |
11.76% |
Al Viro |
18 |
15.65% |
2 |
11.76% |
Serge E. Hallyn |
18 |
15.65% |
2 |
11.76% |
Brian Gerst |
18 |
15.65% |
1 |
5.88% |
Linus Torvalds |
10 |
8.70% |
2 |
11.76% |
Roman Zippel |
8 |
6.96% |
1 |
5.88% |
Masahiro Yamada |
7 |
6.09% |
1 |
5.88% |
Vasily Gorbik |
5 |
4.35% |
1 |
5.88% |
Kirill V Tkhai |
4 |
3.48% |
1 |
5.88% |
Eric W. Biedermann |
4 |
3.48% |
1 |
5.88% |
Rusty Russell |
2 |
1.74% |
1 |
5.88% |
Thomas Gleixner |
1 |
0.87% |
1 |
5.88% |
David Howells |
1 |
0.87% |
1 |
5.88% |
Total |
115 |
|
17 |
|
// 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.count = 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 = PROC_UTS_INIT_INO,
#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";