version.c (58e16d792a6a8c6b750f637a4649967fcac853dc) version.c (9a56493f6942c0e2df1579986128721da96e00d8)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * linux/init/version.c
4 *
5 * Copyright (C) 1992 Theodore Ts'o
6 *
7 * May be freely distributed as part of Linux.
8 */

--- 11 unchanged lines hidden (view full) ---

20#define version(a) Version_ ## a
21#define version_string(a) version(a)
22
23extern int version_string(LINUX_VERSION_CODE);
24int version_string(LINUX_VERSION_CODE);
25#endif
26
27struct uts_namespace init_uts_ns = {
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * linux/init/version.c
4 *
5 * Copyright (C) 1992 Theodore Ts'o
6 *
7 * May be freely distributed as part of Linux.
8 */

--- 11 unchanged lines hidden (view full) ---

20#define version(a) Version_ ## a
21#define version_string(a) version(a)
22
23extern int version_string(LINUX_VERSION_CODE);
24int version_string(LINUX_VERSION_CODE);
25#endif
26
27struct uts_namespace init_uts_ns = {
28 .kref = KREF_INIT(2),
28 .ns.count = REFCOUNT_INIT(2),
29 .name = {
30 .sysname = UTS_SYSNAME,
31 .nodename = UTS_NODENAME,
32 .release = UTS_RELEASE,
33 .version = UTS_VERSION,
34 .machine = UTS_MACHINE,
35 .domainname = UTS_DOMAINNAME,
36 },

--- 19 unchanged lines hidden ---
29 .name = {
30 .sysname = UTS_SYSNAME,
31 .nodename = UTS_NODENAME,
32 .release = UTS_RELEASE,
33 .version = UTS_VERSION,
34 .machine = UTS_MACHINE,
35 .domainname = UTS_DOMAINNAME,
36 },

--- 19 unchanged lines hidden ---