diff options
| author | Stephen Smalley <[email protected]> | 2006-02-01 11:05:55 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-02-01 16:53:18 +0000 |
| commit | 26d2a4be6a56eec575dac651f6606756a971f0fb (patch) | |
| tree | 3f27383674706bd535bc67c703827db8ecd5a1dc /security/selinux/hooks.c | |
| parent | [PATCH] selinux: fix and cleanup mprotect checks (diff) | |
| download | kernel-26d2a4be6a56eec575dac651f6606756a971f0fb.tar.gz kernel-26d2a4be6a56eec575dac651f6606756a971f0fb.zip | |
[PATCH] selinux: change file_alloc_security to use GFP_KERNEL
This patch changes the SELinux file_alloc_security function to use
GFP_KERNEL rather than GFP_ATOMIC; the use of GFP_ATOMIC appears to be a
remnant of when this function was being called with the files_lock spinlock
held, and is no longer necessary. Please apply.
Signed-off-by: Stephen Smalley <[email protected]>
Acked-by: James Morris <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 1bb5eea3b8c1..5e61635610bb 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -192,7 +192,7 @@ static int file_alloc_security(struct file *file) struct task_security_struct *tsec = current->security; struct file_security_struct *fsec; - fsec = kzalloc(sizeof(struct file_security_struct), GFP_ATOMIC); + fsec = kzalloc(sizeof(struct file_security_struct), GFP_KERNEL); if (!fsec) return -ENOMEM; |
