Commit d740820a authored by Chris Wright's avatar Chris Wright Committed by Linus Torvalds

[PATCH] uninline __sigqueue_alloc

Christoph suggests letting the compiler choose.  No real compelling reason
to inline anyhow.  I had some vmlinux size numbers suggesting inline was
better, but re-running them on newer kernel is giving different results,
favoring uninline.  Best let compiler choose.  Un-inline __sigqueue_alloc.
Signed-off-by: default avatarChris Wright <chrisw@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4fd830f9
......@@ -265,7 +265,7 @@ next_signal(struct sigpending *pending, sigset_t *mask)
return sig;
}
static inline struct sigqueue *__sigqueue_alloc(struct task_struct *t, int flags)
static struct sigqueue *__sigqueue_alloc(struct task_struct *t, int flags)
{
struct sigqueue *q = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment