From d740820a03d139e6e1831ffe9dfbb14f6182348c Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Fri, 29 Oct 2004 00:53:12 -0700 Subject: [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: Chris Wright Signed-off-by: Linus Torvalds --- kernel/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel') diff --git a/kernel/signal.c b/kernel/signal.c index 0242f30e5206..cc50f2504365 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -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; -- cgit v1.2.3