From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 78844C67839 for ; Fri, 14 Dec 2018 12:14:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 339B1214F0 for ; Fri, 14 Dec 2018 12:14:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544789675; bh=OWseEIYx8ECBmlcLLIo4z/WP0eW5Kk2dUP6CWXzPe5Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=z/zoR3iHa2QFJBHV+27wHN8kL5A0MwnNqO6QNe41B0/OPd0gYeOghHzcKrPYnlUaT UIH3LIxwfbUnit4Giqo/moFNgL/VpZJ3WPqewWfvEIM1O+mZqJaik1aY+ihzAUKnWp JU1NyZxp4nRdzeLn0bkccbzhV4NOWX7MDB1FC4bE= DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 339B1214F0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732374AbeLNMOe (ORCPT ); Fri, 14 Dec 2018 07:14:34 -0500 Received: from mail.kernel.org ([198.145.29.99]:34218 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732335AbeLNMOc (ORCPT ); Fri, 14 Dec 2018 07:14:32 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 55ABF2133F; Fri, 14 Dec 2018 12:14:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544789671; bh=OWseEIYx8ECBmlcLLIo4z/WP0eW5Kk2dUP6CWXzPe5Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PtSPoQFiQFYFXUwZWaRIjDtDCXcaaBH0F+jh7txnMUy9FpYHkNhratvWHuE/bmD27 gnS9Ds+oU+Es9I4cLeZtsjl1twJaoucYjYup35KxMttCyrinL2JwIdPR4JUekVcWXI cwt90LEu++k/Mk/BNLEydSrnOoLJkybLYij750XE= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Srikanth Boddepalli , Boris Ostrovsky , Joey Pabalinas , Juergen Gross , Sasha Levin Subject: [PATCH 4.4 31/88] xen: xlate_mmu: add missing header to fix W=1 warning Date: Fri, 14 Dec 2018 13:00:05 +0100 Message-Id: <20181214115704.684232695@linuxfoundation.org> X-Mailer: git-send-email 2.20.0 In-Reply-To: <20181214115702.151309521@linuxfoundation.org> References: <20181214115702.151309521@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.4-stable review patch. If anyone has any objections, please let me know. ------------------ [ Upstream commit 72791ac854fea36034fa7976b748fde585008e78 ] Add a missing header otherwise compiler warns about missed prototype: drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma, ^~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Srikanth Boddepalli Reviewed-by: Boris Ostrovsky Reviewed-by: Joey Pabalinas Signed-off-by: Juergen Gross Signed-off-by: Sasha Levin --- drivers/xen/xlate_mmu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/xen/xlate_mmu.c b/drivers/xen/xlate_mmu.c index 5063c5e796b7..84a1fab0dd6b 100644 --- a/drivers/xen/xlate_mmu.c +++ b/drivers/xen/xlate_mmu.c @@ -34,6 +34,7 @@ #include #include +#include #include #include #include -- 2.19.1