kmalloc(GFP_ATOMIC) was needed because it was called under tasklist_lock.
The code was changed to use rcu_read_lock(), we can use GFP_KERNEL.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
binfmt_elf.c | 4 ++--
binfmt_elf_fdpic.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
--- 26-rc2/fs/binfmt_elf.c~NO_ATOMIC 2008-05-18 15:43:59.000000000 +0400
+++ 26-rc2/fs/binfmt_elf.c 2008-06-01 20:47:08.000000000 +0400
@@ -1524,7 +1524,7 @@ static int fill_note_info(struct elfhdr
if (p->mm == dump_task->mm) {
t = kzalloc(offsetof(struct elf_thread_core_info,
notes[info->thread_notes]),
- GFP_ATOMIC);
+ GFP_KERNEL);
if (unlikely(!t)) {
rcu_read_unlock();
return 0;
@@ -1726,7 +1726,7 @@ static int fill_note_info(struct elfhdr
rcu_read_lock();
do_each_thread(g, p)
if (current->mm == p->mm && current != p) {
- ets = kzalloc(sizeof(*ets), GFP_ATOMIC);
+ ets = kzalloc(sizeof(*ets), GFP_KERNEL);
if (!ets) {
rcu_read_unlock();
return 0;
--- 26-rc2/fs/binfmt_elf_fdpic.c~NO_ATOMIC 2008-05-18 15:43:59.000000000 +0400
+++ 26-rc2/fs/binfmt_elf_fdpic.c 2008-06-01 20:47:20.000000000 +0400
@@ -1626,7 +1626,7 @@ static int elf_fdpic_core_dump(long sign
rcu_read_lock();
do_each_thread(g,p)
if (current->mm == p->mm && current != p) {
- tmp = kzalloc(sizeof(*tmp), GFP_ATOMIC);
+ tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
if (!tmp) {
rcu_read_unlock();
goto cleanup;
--
| Greg Kroah-Hartman | [PATCH 002/196] Chinese: rephrase English introduction in HOWTO |
| david | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Jan Engelhardt | intel iommu (Re: -mm merge plans for 2.6.23) |
| Andi Kleen | Re: [PATCH] x86: Construct 32 bit boot time page tables in native format. |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | Re: Possible regression in HTB |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
git: | |
