Messages in this thread Patch in this message |  | | | Date | Mon, 15 Jun 2009 18:13:26 GMT | | From | tip-bot for Li Zefan <> | | Subject | [tip:tracing/urgent] tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation |
| |
Commit-ID: e4f2d10f479d18198ebafcb5e124cc3dd8b8817a Gitweb: http://git.kernel.org/tip/e4f2d10f479d18198ebafcb5e124cc3dd8b8817a Author: Li Zefan <lizf@cn.fujitsu.com> AuthorDate: Mon, 15 Jun 2009 10:57:28 +0800 Committer: Steven Rostedt <rostedt@goodmis.org> CommitDate: Mon, 15 Jun 2009 11:37:14 -0400
tracing: replace a GFP_ATOMIC with GFP_KERNEL allocation
Atomic allocation is not needed here.
[ Impact: clean up of memory alloction type ]
Acked-by: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> LKML-Reference: <4A35B898.2050607@cn.fujitsu.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
--- kernel/trace/trace.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 7355a38..0f57f1b 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c @@ -3627,7 +3627,7 @@ tracing_stats_read(struct file *filp, char __user *ubuf, struct trace_seq *s; unsigned long cnt; - s = kmalloc(sizeof(*s), GFP_ATOMIC); + s = kmalloc(sizeof(*s), GFP_KERNEL); if (!s) return ENOMEM;
|  |