From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756308AbaIZPFF (ORCPT ); Fri, 26 Sep 2014 11:05:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41343 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756283AbaIZPFB (ORCPT ); Fri, 26 Sep 2014 11:05:01 -0400 Date: Fri, 26 Sep 2014 17:02:04 +0200 From: Oleg Nesterov To: Stephen Rothwell , Andrew Morton Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Guenter Roeck , Josh Triplett Subject: [PATCH -mm] signal-use-build_bug-instead-of-_nsig_words_is_unsupported_size.fix Message-ID: <20140926150204.GA29926@redhat.com> References: <20140926201704.1e2a62c3@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140926201704.1e2a62c3@canb.auug.org.au> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Stephen Rothwell Fixes signal-use-build_bug-instead-of-_nsig_words_is_unsupported_size.patch which caused the build failure on powerpc. Add missing "include " which defines BUILD_BUG() used by that patch. Signed-off-by: Stephen Rothwell Signed-off-by: Oleg Nesterov --- include/linux/signal.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/signal.h b/include/linux/signal.h index 14acfd5..ab1e039 100644 --- a/include/linux/signal.h +++ b/include/linux/signal.h @@ -2,6 +2,7 @@ #define _LINUX_SIGNAL_H #include +#include #include struct task_struct; -- 1.5.5.1