From nobody Fri Apr 26 07:37:16 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.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; dkim=fail; spf=none (zohomail.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=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1574908022; cv=none; d=zohomail.com; s=zohoarc; b=MZlS5q1oXihNiMnP0mPpbvuecYrSNReZoKg/e/7evIRfDhRsIJLJt7+GcgIf0dv9xpVnI8GIPg07otUFkTBszp3TKy3740xdWdTrf6nqRvSevV1NX9PN1oJ+PoiXqz3uuqhPzR8jnbvtk/z+QIjIgGT2b3Ywu8nkp5LFf5ZuHVg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1574908022; 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=m3Y6ixqkeYiuBr/HObntfDI8x4LuaLrDpSqaUcBFIik=; b=Obp9ITKfcWJR1YxpV4abAykTosKQ8LDGYep9dLbUYfd5xp7XFJ+EvQo26Bmrxy2Op4a0bgIAFMsBdxjvUXY/5GNn6lO6gyvII7fnYPh9zlcOZ2LZraqcQQrdVzRu944Jo2XQ8cATAkE2LMWXuOTtBid2DzdQvyLOG5b68UjBU8s= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=fail; spf=none (zohomail.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 15749080223211000.6369365462725; Wed, 27 Nov 2019 18:27:02 -0800 (PST) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ia9UO-0007yk-CN; Thu, 28 Nov 2019 02:25:04 +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 1ia9UM-0007yf-Lz for xen-devel@lists.xenproject.org; Thu, 28 Nov 2019 02:25:02 +0000 Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 474cbe0c-1186-11ea-a3c4-12813bfff9fa; Thu, 28 Nov 2019 02:25:01 +0000 (UTC) Received: from sstabellini-ThinkPad-T480s.hsd1.ca.comcast.net (c-67-164-102-47.hsd1.ca.comcast.net [67.164.102.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3AF622158A; Thu, 28 Nov 2019 02:25:00 +0000 (UTC) X-Inumbo-ID: 474cbe0c-1186-11ea-a3c4-12813bfff9fa DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574907900; bh=tk8j4Ysai55R6RgR9CzIi4LtogjbEdt1GnJcC9zWv+s=; h=From:To:Cc:Subject:Date:From; b=eBv6XjI7i9FtmSEdJ1Fge2wEFNhmNXVyAkinS6tN7z/8qy6XCbnxFWzq3spULgvQb bblXFMGE01EBQcfH7e9OYB8EAGu86srd5mrPQcJ2Sox3oU/AVcrljFAmQuJvl9pMtN Dc55hLrlxGzyIqNyZEAT5iwKKAVpFyNIr4W57ZA8= From: Stefano Stabellini To: xen-devel@lists.xenproject.org Date: Wed, 27 Nov 2019 18:24:58 -0800 Message-Id: <20191128022458.4428-1-sstabellini@kernel.org> X-Mailer: git-send-email 2.17.1 Subject: [Xen-devel] [PATCH] tools/arm: include xen-tools/libs.h from libxl_arm_acpi.c 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: sstabellini@kernel.org, julien@xen.org, wl@xen.org, ian.jackson@eu.citrix.com, anthony.perard@citrix.com, Stefano Stabellini MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) libxl_arm_acpi.c is using BUILD_BUG_ON but it is not including xen-tools/libs.h that defines it. Signed-off-by: Stefano Stabellini Acked-by: Wei Liu --- tools/libxl/libxl_arm_acpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxl/libxl_arm_acpi.c b/tools/libxl/libxl_arm_acpi.c index ba874c3d32..52c476ff65 100644 --- a/tools/libxl/libxl_arm_acpi.c +++ b/tools/libxl/libxl_arm_acpi.c @@ -19,6 +19,7 @@ #include "libxl_arm.h" =20 #include +#include =20 /* Below typedefs are useful for the headers under acpi/ */ typedef uint8_t u8; --=20 2.17.1 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel