aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorChris Wright <chrisw@osdl.org>2004-10-29 00:53:12 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-29 00:53:12 -0700
commitd740820a03d139e6e1831ffe9dfbb14f6182348c (patch)
treee3fc0ebc920be5bd756808f3ee677d737b970c4b /kernel
parent4fd830f9c5fff95aef470db1513913a2efff5e4d (diff)
downloadhistory-d740820a03d139e6e1831ffe9dfbb14f6182348c.tar.gz
[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 <chrisw@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c
index 0242f30e5206c3..cc50f250436545 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;