Message ID | 07d4758b3ce8b3680c7b0107329033925832a15d.1690990427.git.ehem+xen@m5p.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show
Return-Path: <xen-devel-bounces@lists.xenproject.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 062FEC001DF for <xen-devel@archiver.kernel.org>; Wed, 2 Aug 2023 21:21:27 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.575318.901093 (Exim 4.92) (envelope-from <xen-devel-bounces@lists.xenproject.org>) id 1qRJHS-0004vc-FR; Wed, 02 Aug 2023 21:21:18 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 575318.901093; Wed, 02 Aug 2023 21:21:18 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from <xen-devel-bounces@lists.xenproject.org>) id 1qRJHS-0004vV-C7; Wed, 02 Aug 2023 21:21:18 +0000 Received: by outflank-mailman (input) for mailman id 575318; Wed, 02 Aug 2023 21:21:17 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from <SRS0=w0qL=DT=m5p.com=ehem@srs-se1.protection.inumbo.net>) id 1qRJHR-0004vP-NF for xen-devel@lists.xenproject.org; Wed, 02 Aug 2023 21:21:17 +0000 Received: from mailhost.m5p.com (mailhost.m5p.com [74.104.188.4]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 83949012-317a-11ee-b263-6b7b168915f2; Wed, 02 Aug 2023 23:21:16 +0200 (CEST) Received: from m5p.com (mailhost.m5p.com [IPv6:2001:470:1f07:15ff:0:0:0:f7]) by mailhost.m5p.com (8.16.1/8.15.2) with ESMTPS id 372LL7DC008373 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Wed, 2 Aug 2023 17:21:12 -0400 (EDT) (envelope-from ehem@m5p.com) Received: (from ehem@localhost) by m5p.com (8.16.1/8.15.2/Submit) id 372LL6lp008372; Wed, 2 Aug 2023 14:21:06 -0700 (PDT) (envelope-from ehem) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion <xen-devel.lists.xenproject.org> List-Unsubscribe: <https://lists.xenproject.org/mailman/options/xen-devel>, <mailto:xen-devel-request@lists.xenproject.org?subject=unsubscribe> List-Post: <mailto:xen-devel@lists.xenproject.org> List-Help: <mailto:xen-devel-request@lists.xenproject.org?subject=help> List-Subscribe: <https://lists.xenproject.org/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xenproject.org?subject=subscribe> Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" <xen-devel-bounces@lists.xenproject.org> X-Inumbo-ID: 83949012-317a-11ee-b263-6b7b168915f2 Message-Id: <07d4758b3ce8b3680c7b0107329033925832a15d.1690990427.git.ehem+xen@m5p.com> In-Reply-To: <cover.1690990427.git.ehem+xen@m5p.com> References: <cover.1690990427.git.ehem+xen@m5p.com> From: Elliott Mitchell <ehem+xen@m5p.com> To: xen-devel@lists.xenproject.org Cc: Wei Liu <wl@xen.org> Cc: Anthony PERARD <anthony.perard@citrix.com> Cc: Juergen Gross <jgross@suse.com> Date: Tue, 18 Jul 2023 22:02:48 -0700 Subject: [PATCH 06/22] tools/utils: remove libxlu_cfg_i.h from libxlu_disk.c |
Series |
Cleanup and splitting of xl.cfg parsing
|
expand
|
diff --git a/tools/libs/util/libxlu_disk.c b/tools/libs/util/libxlu_disk.c index 1de16a6a06..e94f4d06cd 100644 --- a/tools/libs/util/libxlu_disk.c +++ b/tools/libs/util/libxlu_disk.c @@ -1,7 +1,6 @@ #include "libxlu_internal.h" #include "libxlu_disk_l.h" #include "libxlu_disk_i.h" -#include "libxlu_cfg_i.h" void xlu__disk_err(DiskParseContext *dpc, const char *erroneous, const char *message) {
The upper layer disk string parser doesn't need the internals of the lower layer file parser. Split the layers apart. This looks to have been a copy&paste issue. Fixes: 5c206536ad ("libxl: disks: new xlu_disk_parse function") Signed-off-by: Elliott Mitchell <ehem+xen@m5p.com> --- tools/libs/util/libxlu_disk.c | 1 - 1 file changed, 1 deletion(-)