mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 02:04:05 +08:00
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k update from Geert Uytterhoeven: - More barrier.h consolidation - Sched_[gs]etattr() syscalls * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k: m68k: Wire up sched_setattr and sched_getattr m68k: Switch to asm-generic/barrier.h m68k: Sort arch/m68k/include/asm/Kbuild
This commit is contained in:
commit
c378a65663
@ -1,4 +1,4 @@
|
|||||||
|
generic-y += barrier.h
|
||||||
generic-y += bitsperlong.h
|
generic-y += bitsperlong.h
|
||||||
generic-y += clkdev.h
|
generic-y += clkdev.h
|
||||||
generic-y += cputime.h
|
generic-y += cputime.h
|
||||||
@ -6,6 +6,7 @@ generic-y += device.h
|
|||||||
generic-y += emergency-restart.h
|
generic-y += emergency-restart.h
|
||||||
generic-y += errno.h
|
generic-y += errno.h
|
||||||
generic-y += exec.h
|
generic-y += exec.h
|
||||||
|
generic-y += hash.h
|
||||||
generic-y += hw_irq.h
|
generic-y += hw_irq.h
|
||||||
generic-y += ioctl.h
|
generic-y += ioctl.h
|
||||||
generic-y += ipcbuf.h
|
generic-y += ipcbuf.h
|
||||||
@ -18,6 +19,7 @@ generic-y += local.h
|
|||||||
generic-y += mman.h
|
generic-y += mman.h
|
||||||
generic-y += mutex.h
|
generic-y += mutex.h
|
||||||
generic-y += percpu.h
|
generic-y += percpu.h
|
||||||
|
generic-y += preempt.h
|
||||||
generic-y += resource.h
|
generic-y += resource.h
|
||||||
generic-y += scatterlist.h
|
generic-y += scatterlist.h
|
||||||
generic-y += sections.h
|
generic-y += sections.h
|
||||||
@ -31,5 +33,3 @@ generic-y += trace_clock.h
|
|||||||
generic-y += types.h
|
generic-y += types.h
|
||||||
generic-y += word-at-a-time.h
|
generic-y += word-at-a-time.h
|
||||||
generic-y += xor.h
|
generic-y += xor.h
|
||||||
generic-y += preempt.h
|
|
||||||
generic-y += hash.h
|
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
#ifndef _M68K_BARRIER_H
|
|
||||||
#define _M68K_BARRIER_H
|
|
||||||
|
|
||||||
#define nop() do { asm volatile ("nop"); barrier(); } while (0)
|
|
||||||
|
|
||||||
#include <asm-generic/barrier.h>
|
|
||||||
|
|
||||||
#endif /* _M68K_BARRIER_H */
|
|
@ -4,7 +4,7 @@
|
|||||||
#include <uapi/asm/unistd.h>
|
#include <uapi/asm/unistd.h>
|
||||||
|
|
||||||
|
|
||||||
#define NR_syscalls 349
|
#define NR_syscalls 351
|
||||||
|
|
||||||
#define __ARCH_WANT_OLD_READDIR
|
#define __ARCH_WANT_OLD_READDIR
|
||||||
#define __ARCH_WANT_OLD_STAT
|
#define __ARCH_WANT_OLD_STAT
|
||||||
|
@ -354,5 +354,7 @@
|
|||||||
#define __NR_process_vm_writev 346
|
#define __NR_process_vm_writev 346
|
||||||
#define __NR_kcmp 347
|
#define __NR_kcmp 347
|
||||||
#define __NR_finit_module 348
|
#define __NR_finit_module 348
|
||||||
|
#define __NR_sched_setattr 349
|
||||||
|
#define __NR_sched_getattr 350
|
||||||
|
|
||||||
#endif /* _UAPI_ASM_M68K_UNISTD_H_ */
|
#endif /* _UAPI_ASM_M68K_UNISTD_H_ */
|
||||||
|
@ -369,4 +369,6 @@ ENTRY(sys_call_table)
|
|||||||
.long sys_process_vm_writev
|
.long sys_process_vm_writev
|
||||||
.long sys_kcmp
|
.long sys_kcmp
|
||||||
.long sys_finit_module
|
.long sys_finit_module
|
||||||
|
.long sys_sched_setattr
|
||||||
|
.long sys_sched_getattr /* 350 */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user