diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-01-25 11:44:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-01-25 11:44:29 -0500 |
commit | b47711bfbcd4eb77ca61ef0162487b20e023ae55 (patch) | |
tree | b2a695dbd40f7ca2333664cf946ef34eda7b7dba /mm | |
parent | 7556afa0e0e436cad4f560ee83e5fbd5dac9359a (diff) | |
parent | 2e08c0c1c3977a5ddc88887dd3af1b26c433e9d0 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6:
selinux: make mls_compute_sid always polyinstantiate
security/selinux: constify function pointer tables and fields
security: add a secctx_to_secid() hook
security: call security_file_permission from rw_verify_area
security: remove security_sb_post_mountroot hook
Security: remove security.h include from mm.h
Security: remove security_file_mmap hook sparse-warnings (NULL as 0).
Security: add get, set, and cloning of superblock security information
security/selinux: Add missing "space"
Diffstat (limited to 'mm')
-rw-r--r-- | mm/mmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1620,7 +1620,7 @@ static inline int expand_downwards(struct vm_area_struct *vma, | |||
1620 | return -ENOMEM; | 1620 | return -ENOMEM; |
1621 | 1621 | ||
1622 | address &= PAGE_MASK; | 1622 | address &= PAGE_MASK; |
1623 | error = security_file_mmap(0, 0, 0, 0, address, 1); | 1623 | error = security_file_mmap(NULL, 0, 0, 0, address, 1); |
1624 | if (error) | 1624 | if (error) |
1625 | return error; | 1625 | return error; |
1626 | 1626 | ||
@@ -1941,7 +1941,7 @@ unsigned long do_brk(unsigned long addr, unsigned long len) | |||
1941 | if (is_hugepage_only_range(mm, addr, len)) | 1941 | if (is_hugepage_only_range(mm, addr, len)) |
1942 | return -EINVAL; | 1942 | return -EINVAL; |
1943 | 1943 | ||
1944 | error = security_file_mmap(0, 0, 0, 0, addr, 1); | 1944 | error = security_file_mmap(NULL, 0, 0, 0, addr, 1); |
1945 | if (error) | 1945 | if (error) |
1946 | return error; | 1946 | return error; |
1947 | 1947 | ||