From nobody Mon Apr 29 12:01:50 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=codethink.co.uk ARC-Seal: i=1; a=rsa-sha256; t=1571748772; cv=none; d=zoho.com; s=zohoarc; b=gKRiLHK/VXzbc3DeVeBov58A/efTbYunUoUm2/uUSVd/z2kKPbcw9Di3lA8UaPQOX7CwlAczloEJGSE5y+OEiJTZD6tZVN7wKW3eWiihmMYv+NDX+tlJuvuE7Hi3aGa92ztBMETsn10yGxFRPELH4OMmvwbjKMeSnabI3+ZHS74= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1571748772; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=RXWqolez4vXKRfTxY28zJTp8QTU0XkR3upvKerk36mE=; b=Kz9nkpJPaU9psgGxnhsRyP+pOZPl00zWrdIePqlXF3Cy/+f+hcCKCgBUenUcwTrEjCSm8C4m5RVUPjSUrVd7/q/aMe+1GJKm5HzE6TuJUD3GReqAw75vJeAX0aYVDIHfdXDGe9JKiA37723THHhAbpkeeC9AcGnO7Ij2xRgVUsI= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1571748771923782.9963151138159; Tue, 22 Oct 2019 05:52:51 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iMtd9-00014Q-QC; Tue, 22 Oct 2019 12:51:19 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iMtc6-000129-9g for xen-devel@lists.xenproject.org; Tue, 22 Oct 2019 12:50:14 +0000 Received: from imap1.codethink.co.uk (unknown [176.9.8.82]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 7c4b284d-f4ca-11e9-9468-12813bfff9fa; Tue, 22 Oct 2019 12:50:12 +0000 (UTC) Received: from [167.98.27.226] (helo=rainbowdash.codethink.co.uk) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1iMtc0-0002GG-5U; Tue, 22 Oct 2019 13:50:08 +0100 Received: from ben by rainbowdash.codethink.co.uk with local (Exim 4.92.3) (envelope-from ) id 1iMtbz-0000zI-En; Tue, 22 Oct 2019 13:50:07 +0100 X-Inumbo-ID: 7c4b284d-f4ca-11e9-9468-12813bfff9fa From: "Ben Dooks (Codethink)" To: linux-kernel@lists.codethink.co.uk Date: Tue, 22 Oct 2019 13:50:06 +0100 Message-Id: <20191022125006.3746-1-ben.dooks@codethink.co.uk> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 X-Mailman-Approved-At: Tue, 22 Oct 2019 12:51:19 +0000 Subject: [Xen-devel] [PATCH] xen: mm: include for missing declarations X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: xen-devel@lists.xenproject.org, "Ben Dooks \(Codethink\)" , Stefano Stabellini , linux-arm-kernel@lists.infradead.org, Russell King Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Include for xen_{create,destroy}_contigous_region call declarations. Fixes the following sparse warnings: arch/arm/xen/mm.c:119:5: warning: symbol 'xen_create_contiguous_region' was= not declared. Should it be static? arch/arm/xen/mm.c:131:6: warning: symbol 'xen_destroy_contiguous_region' wa= s not declared. Should it be static? Signed-off-by: Ben Dooks (Codethink) Reviewed-by: Stefano Stabellini --- Cc: Stefano Stabellini Cc: Russell King Cc: xen-devel@lists.xenproject.org Cc: linux-arm-kernel@lists.infradead.org --- arch/arm/xen/mm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/xen/mm.c b/arch/arm/xen/mm.c index 38fa917c8585..6feb6b78b13c 100644 --- a/arch/arm/xen/mm.c +++ b/arch/arm/xen/mm.c @@ -15,6 +15,7 @@ #include #include #include +#include #include =20 #include --=20 2.23.0 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel