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 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6:
mmap_min_addr check CAP_SYS_RAWIO only for write

+1 -1
+1 -1
security/min_addr.c
··· 33 33 { 34 34 int ret; 35 35 36 - if (!capable(CAP_SYS_RAWIO)) 36 + if (write && !capable(CAP_SYS_RAWIO)) 37 37 return -EPERM; 38 38 39 39 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);