cregit-Linux how code gets into the kernel

Release 4.7 arch/powerpc/include/asm/linkage.h

#ifndef _ASM_POWERPC_LINKAGE_H

#define _ASM_POWERPC_LINKAGE_H

#ifdef CONFIG_PPC64
#if !defined(_CALL_ELF) || _CALL_ELF != 2

#define cond_syscall(x) \
	asm ("\t.weak " #x "\n\t.set " #x ", sys_ni_syscall\n"          \
             "\t.weak ." #x "\n\t.set ." #x ", .sys_ni_syscall\n")

#define SYSCALL_ALIAS(alias, name)					\
	asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n"      \
             "\t.globl ." #alias "\n\t.set ." #alias ", ." #name)
#endif
#endif

#endif	/* _ASM_POWERPC_LINKAGE_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
al viroal viro3271.11%150.00%
anton blanchardanton blanchard1328.89%150.00%
Total45100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}