cregit-Linux how code gets into the kernel

Release 4.17 init/version.c

Directory: init
/*
 *  linux/init/version.c
 *
 *  Copyright (C) 1992  Theodore Ts'o
 *
 *  May be freely distributed as part of Linux.
 */

#include <generated/compile.h>
#include <linux/export.h>
#include <linux/uts.h>
#include <linux/utsname.h>
#include <generated/utsrelease.h>
#include <linux/version.h>
#include <linux/proc_ns.h>

#ifndef CONFIG_KALLSYMS

#define version(a) Version_ ## a

#define version_string(a) version(a)

extern int version_string(LINUX_VERSION_CODE);
int version_string(LINUX_VERSION_CODE);
#endif


struct uts_namespace init_uts_ns = {
	.kref = KREF_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
};
EXPORT_SYMBOL_GPL(init_uts_ns);

/* FIXED STRINGS! Don't touch! */

const char linux_banner[] =
	"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
	LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";


const char linux_proc_banner[] =
	"%s version %s"
	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
	" (" LINUX_COMPILER ") %s\n";

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4325.60%417.39%
Roman Zippel3219.05%14.35%
Serge E. Hallyn2213.10%28.70%
Al Viro1810.71%28.70%
Brian Gerst1810.71%14.35%
Daniel Guilak127.14%28.70%
Eric W. Biedermann63.57%14.35%
Arnaldo Carvalho de Melo52.98%14.35%
Sam Ravnborg42.38%313.04%
Rusty Russell31.79%14.35%
Linus Torvalds21.19%28.70%
Masahiro Yamada10.60%14.35%
David Howells10.60%14.35%
Peter Zijlstra10.60%14.35%
Total168100.00%23100.00%
Directory: init
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.