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

Merge branch 'akpm' (sundry from Andrew)

Merge misc fixes from Andrew Morton:
"One maintainer change and three bugfixes"

* emailed patches from Andrew Morton <akpm@linux-foundation.org>: (4 commits)
c/r: prctl: fix build error for no-MMU case
lib/flex_proportions.c: fix corruption of denominator in flexible proportions
checksyscalls: fix "here document" handling
pwm-backlight: take over maintenance

+5 -2
+2
MAINTAINERS
··· 5544 5544 F: include/linux/pwm.h 5545 5545 F: include/linux/of_pwm.h 5546 5546 F: drivers/pwm/ 5547 + F: drivers/video/backlight/pwm_bl.c 5548 + F: include/linux/pwm_backlight.h 5547 5549 5548 5550 PXA2xx/PXA3xx SUPPORT 5549 5551 M: Eric Miao <eric.y.miao@gmail.com>
+1
include/linux/security.h
··· 118 118 extern unsigned long mmap_min_addr; 119 119 extern unsigned long dac_mmap_min_addr; 120 120 #else 121 + #define mmap_min_addr 0UL 121 122 #define dac_mmap_min_addr 0UL 122 123 #endif 123 124
+1 -1
lib/flex_proportions.c
··· 62 62 */ 63 63 bool fprop_new_period(struct fprop_global *p, int periods) 64 64 { 65 - u64 events; 65 + s64 events; 66 66 unsigned long flags; 67 67 68 68 local_irq_save(flags);
+1 -1
scripts/checksyscalls.sh
··· 200 200 syscall_list() { 201 201 grep '^[0-9]' "$1" | sort -n | ( 202 202 while read nr abi name entry ; do 203 - echo <<EOF 203 + cat <<EOF 204 204 #if !defined(__NR_${name}) && !defined(__IGNORE_${name}) 205 205 #warning syscall ${name} not implemented 206 206 #endif