From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Kacur Subject: [PATCH] Compile error with allmodconfig and CONFIG_PREEMPT_RT_FULL=y Date: Sun, 13 Nov 2011 01:30:29 +0100 Message-ID: <1321144229-6108-1-git-send-email-jkacur@redhat.com> Cc: Thomas Gleixner , rt-users , John Kacur To: lkml , Steven Rostedt Return-path: Received: from mail-ww0-f44.google.com ([74.125.82.44]:62978 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751542Ab1KMAak (ORCPT ); Sat, 12 Nov 2011 19:30:40 -0500 Sender: linux-rt-users-owner@vger.kernel.org List-ID: ERROR: "in_serving_softirq" [net/sched/cls_cgroup.ko] undefined! The above can be fixed by exporting in_serving_softirq Signed-off-by: John Kacur --- kernel/softirq.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/kernel/softirq.c b/kernel/softirq.c index e8756aa..026a283 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -447,6 +447,7 @@ int in_serving_softirq(void) preempt_enable(); return res; } +EXPORT_SYMBOL(in_serving_softirq); /* * Called with bh and local interrupts disabled. For full RT cpu must -- 1.7.2.3