[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1337029525-8760-1-git-send-email-levinsasha928@gmail.com>
Date: Mon, 14 May 2012 23:05:25 +0200
From: Sasha Levin <levinsasha928@...il.com>
To: dledford@...hat.com, kosaki.motohiro@...fujitsu.com,
akpm@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org, Sasha Levin <levinsasha928@...il.com>
Subject: [PATCH] ipc/mqueue: use correct gfp flags in msg_insert
msg_insert() tries to allocate using GFP_KERNEL, while in both cases when it's called,
it's coming from an atomic context. Introduced by 7dd7edf ("ipc/mqueue: improve
performance of send/recv").
Use GFP_ATOMIC instead.
Also, fix up coding style in the kzalloc while we're there.
Signed-off-by: Sasha Levin <levinsasha928@...il.com>
---
ipc/mqueue.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 30f6f8f..9ec6896 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -133,7 +133,7 @@ static int msg_insert(struct msg_msg *msg, struct mqueue_inode_info *info)
else
p = &(*p)->rb_right;
}
- leaf = kzalloc(sizeof(struct posix_msg_tree_node), GFP_KERNEL);
+ leaf = kzalloc(sizeof(*leaf), GFP_ATOMIC);
if (!leaf)
return -ENOMEM;
rb_init_node(&leaf->rb_node);
--
1.7.8.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists