kernel/arch/x86/entry/vdso/vgetcpu.c
.. .. @@ -1,6 +1,6 @@ 1 +// SPDX-License-Identifier: GPL-2.0-only1 2 /* 2 3 * Copyright 2006 Andi Kleen, SUSE Labs. 3 - * Subject to the GNU Public License, v.24 4 * 5 5 * Fast user context implementation of getcpu() 6 6 */ .. .. @@ -14,6 +14,7 @@ 14 14 __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused) 15 15 { 16 16 vdso_read_cpunode(cpu, node); 17 +17 18 return 0; 18 19 } 19 20