From patchwork Mon Oct 1 20:10:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wade Farnsworth X-Patchwork-Id: 1532561 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 7BD9A3FE1C for ; Mon, 1 Oct 2012 20:12:57 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TImK2-0001eC-CD; Mon, 01 Oct 2012 20:10:34 +0000 Received: from casper.infradead.org ([2001:770:15f::2]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TImJz-0001e7-NN for linux-arm-kernel@merlin.infradead.org; Mon, 01 Oct 2012 20:10:32 +0000 Received: from relay1.mentorg.com ([192.94.38.131]) by casper.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TImJx-0008H3-5P for linux-arm-kernel@lists.infradead.org; Mon, 01 Oct 2012 20:10:30 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1TImJh-00015h-69 from wade_farnsworth@mentor.com for linux-arm-kernel@lists.infradead.org; Mon, 01 Oct 2012 13:10:13 -0700 Received: from SVR-ORW-FEM-02.mgc.mentorg.com ([147.34.96.206]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Mon, 1 Oct 2012 13:10:12 -0700 Received: from [172.30.0.250] (147.34.91.1) by svr-orw-fem-02.mgc.mentorg.com (147.34.96.168) with Microsoft SMTP Server id 14.1.289.1; Mon, 1 Oct 2012 13:10:12 -0700 Message-ID: <5069F8A0.5020801@mentor.com> Date: Mon, 1 Oct 2012 13:10:08 -0700 From: Wade Farnsworth User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: "linux-arm-kernel@lists.infradead.org" Subject: [PATCH] arm: include linux/sched.h in syscall.h X-OriginalArrivalTime: 01 Oct 2012 20:10:13.0079 (UTC) FILETIME=[C3EF8E70:01CDA010] X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121001_211029_436810_71D2D0D5 X-CRM114-Status: GOOD ( 11.90 ) X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on casper.infradead.org summary: Content analysis details: (-1.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org task_thread_info() is defined in linux/sched.h. Explicitly include this file in arch/arm/include/asm/syscall.h. This fixes an lttng-modules compile error. Signed-off-by: Wade Farnsworth Acked-by: Will Deacon --- arch/arm/include/asm/syscall.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/syscall.h b/arch/arm/include/asm/syscall.h index c334a23..fce38a6 100644 --- a/arch/arm/include/asm/syscall.h +++ b/arch/arm/include/asm/syscall.h @@ -8,6 +8,7 @@ #define _ASM_ARM_SYSCALL_H #include +#include extern const unsigned long sys_call_table[];