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,URIBL_BLOCKED,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 F2801C67839 for ; Fri, 14 Dec 2018 12:05:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B7CF22147D for ; Fri, 14 Dec 2018 12:05:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544789154; bh=6lfrRb5ZnkQPQMf7IQ9OYaHqiMDL+zEk+D8lT/Xyozc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=NIlR6eaFaOrbHeGWgTZbjXl8AvsAVTEnYdMqdYV6dvnlg51A/TcrOo3OWKn7hAfcG TrERzTJ1Py9DaAiGIoN6CKDDnUSEJPnunY5BmbittcZ41DC89sAEv96AUibvc+tarh AAxVqM45mfH0hw4q1b+E4ZCTZ0r2Z5I0cg8gc7B8= DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B7CF22147D 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 S1730813AbeLNMFx (ORCPT ); Fri, 14 Dec 2018 07:05:53 -0500 Received: from mail.kernel.org ([198.145.29.99]:50752 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729549AbeLNMFt (ORCPT ); Fri, 14 Dec 2018 07:05:49 -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 66E2A21486; Fri, 14 Dec 2018 12:05:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544789148; bh=6lfrRb5ZnkQPQMf7IQ9OYaHqiMDL+zEk+D8lT/Xyozc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EhcsqQwRE57X8sL/l/PezZwDnYh4edXqPQFg4wxzNfSbOuaNTvWMXmX49KNoIdF1M rLsxbJAAgJS9qd1M8oUxCTbQUbAu2Y3Ev9H6EHexoIEGAojaDXmuKUA2CBNAtYMgi9 ir+dRHu93oiZ1jpl1JSDAKFwRdvmU+IYP4JwV+9E= 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.19 112/142] xen: xlate_mmu: add missing header to fix W=1 warning Date: Fri, 14 Dec 2018 12:59:57 +0100 Message-Id: <20181214115751.521840531@linuxfoundation.org> X-Mailer: git-send-email 2.20.0 In-Reply-To: <20181214115747.053633987@linuxfoundation.org> References: <20181214115747.053633987@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.19-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 23f1387b3ef7..e7df65d32c91 100644 --- a/drivers/xen/xlate_mmu.c +++ b/drivers/xen/xlate_mmu.c @@ -36,6 +36,7 @@ #include #include +#include #include #include #include -- 2.19.1