Linux Audio

Check our new training course

Loading...
v6.9.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_POWERPC_PERCPU_H_
 3#define _ASM_POWERPC_PERCPU_H_
 4#ifdef __powerpc64__
 5
 6/*
 7 * Same as asm-generic/percpu.h, except that we store the per cpu offset
 8 * in the paca. Based on the x86-64 implementation.
 9 */
10
11#ifdef CONFIG_SMP
12
 
 
13#define __my_cpu_offset local_paca->data_offset
14
15#endif /* CONFIG_SMP */
16#endif /* __powerpc64__ */
17
18#include <asm-generic/percpu.h>
19
20#include <asm/paca.h>
21
22#endif /* _ASM_POWERPC_PERCPU_H_ */
v4.10.11
 
 1#ifndef _ASM_POWERPC_PERCPU_H_
 2#define _ASM_POWERPC_PERCPU_H_
 3#ifdef __powerpc64__
 4
 5/*
 6 * Same as asm-generic/percpu.h, except that we store the per cpu offset
 7 * in the paca. Based on the x86-64 implementation.
 8 */
 9
10#ifdef CONFIG_SMP
11
12#include <asm/paca.h>
13
14#define __my_cpu_offset local_paca->data_offset
15
16#endif /* CONFIG_SMP */
17#endif /* __powerpc64__ */
18
19#include <asm-generic/percpu.h>
 
 
20
21#endif /* _ASM_POWERPC_PERCPU_H_ */