From 22cbb1bd14275c52a659e8f42bfceddfea24d785 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Sat, 3 Aug 2013 12:57:06 +0200 Subject: [PATCH] ifb: Include commit b51c3427e95b ('ifb: fix rcu_sched self-detected stalls', commit 440d57bc5ff5 upstream) added a call to cond_resched(), which is declared in '#include '. In Linux 3.2.y that header is included indirectly in some but not all configurations, so add a direct #include. Reported-by: Teck Choon Giam Signed-off-by: Ben Hutchings --- drivers/net/ifb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ifb.c b/drivers/net/ifb.c index b19841aca42a..00f136705491 100644 --- a/drivers/net/ifb.c +++ b/drivers/net/ifb.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #include -- 2.39.2