Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'sh-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6

* 'sh-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6:
sh: wire up accept4 syscall (non-multiplexed path)
sh: Enable deprecated IRQ chip APIs for MFD and GPIOLIB drivers.

+5 -2
+2 -1
arch/sh/Kconfig
··· 22 22 select HAVE_SPARSE_IRQ 23 23 select RTC_LIB 24 24 select GENERIC_ATOMIC64 25 - select GENERIC_HARDIRQS_NO_DEPRECATED 25 + # Support the deprecated APIs until MFD and GPIOLIB catch up. 26 + select GENERIC_HARDIRQS_NO_DEPRECATED if !MFD_SUPPORT && !GPIOLIB 26 27 help 27 28 The SuperH is a RISC processor targeted for use in embedded systems 28 29 and consumer electronics; it was also used in the Sega Dreamcast
+2 -1
arch/sh/include/asm/unistd_32.h
··· 368 368 #define __NR_sendmsg 355 369 369 #define __NR_recvmsg 356 370 370 #define __NR_recvmmsg 357 371 + #define __NR_accept4 358 371 372 372 - #define NR_syscalls 358 373 + #define NR_syscalls 359 373 374 374 375 #ifdef __KERNEL__ 375 376
+1
arch/sh/kernel/syscalls_32.S
··· 375 375 .long sys_sendmsg /* 355 */ 376 376 .long sys_recvmsg 377 377 .long sys_recvmmsg 378 + .long sys_accept4