[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] helpers: init-dom0less: Drop libxenevtchn from LDLIBS
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Michal Orzel <michal.orzel@xxxxxxx>
- Date: Tue, 10 Jun 2025 11:33:26 +0200
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=yvFNUsnb2CLbk+fKZWtVqD96AkaMpEGpKR+v0a3kJRM=; b=RtvaSecFqmRGz67kUlx3GYJUMXncdGJL3X2oCduofhL1Cf9SOAeuRt8e3bgSAwg82WIUU6ei3mhUdxnBXfH9Efbjl9iSJAsl3Unk+3ZmGRWJtGAFU3ZEQon2egxTrCjyyqk5rOXnzvWbtLsD7rGJatDGl84tEDbqW27Sy4bhMV5ilc7PwUpQTnN4TEAOyhuJa9Z/IKDc2l/XpBrxDbJ1BMzHhShqZPl4VjLksREXuX/oCkwXB5q+LwB6eZ5YEI6EbgumkdCpusqKHNLyhWnWrXY1ZwMi+yPg6m2sGEc/cT4eKy0PxxfoO+ANEzgYbYfK1ElsWDjraMJxEr5XieqZTw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=yEakf3QKw9GiWu0QDfnxnjWA+Tv9QnJFNDqXBnnMqMs2aynvS8auhnGwuMxVlcWKuD5uw2VLFWFrESfRF2JZFnxFv120jFveY2vhYrCRd1GT92XYkRz1L02UqGt7WJZEc0428m3XIHzYyDER32nN33RGTIn407JEetx4AC+yA1nx2hTTMsKCnf12YkruS7bOcuwVO9h03wA69qsWhMNO+ptSGybmA6YjMEJqk9tjuB6ASTHn+RDGGEH+wrDrGsM6pL+dR1speot8Hk5tY5tT/0aEVFBL5f6z9nuSj+Ca5tIHRoBxdTUm625GaBTmunURGNfd+UcTWvnbhf8dTjxa3g==
- Cc: Michal Orzel <michal.orzel@xxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>
- Delivery-date: Tue, 10 Jun 2025 09:33:47 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
It hasn't been used since the introduction of the script. Also drop
relevant CFLAGS and header inclusion.
Signed-off-by: Michal Orzel <michal.orzel@xxxxxxx>
---
tools/helpers/Makefile | 3 +--
tools/helpers/init-dom0less.c | 1 -
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/tools/helpers/Makefile b/tools/helpers/Makefile
index 09590eb5b6f0..8262d9e75a2c 100644
--- a/tools/helpers/Makefile
+++ b/tools/helpers/Makefile
@@ -36,8 +36,7 @@ $(INIT_DOM0LESS_OBJS): CFLAGS += $(CFLAGS_libxentoollog)
$(INIT_DOM0LESS_OBJS): CFLAGS += $(CFLAGS_libxenstore)
$(INIT_DOM0LESS_OBJS): CFLAGS += $(CFLAGS_libxenlight)
$(INIT_DOM0LESS_OBJS): CFLAGS += $(CFLAGS_libxenctrl)
-$(INIT_DOM0LESS_OBJS): CFLAGS += $(CFLAGS_libxenevtchn)
-init-dom0less: LDLIBS += $(call xenlibs-ldlibs,ctrl evtchn toollog store light
guest foreignmemory)
+init-dom0less: LDLIBS += $(call xenlibs-ldlibs,ctrl toollog store light guest
foreignmemory)
.PHONY: all
all: $(TARGETS)
diff --git a/tools/helpers/init-dom0less.c b/tools/helpers/init-dom0less.c
index 91edf17b6cef..a182dce56353 100644
--- a/tools/helpers/init-dom0less.c
+++ b/tools/helpers/init-dom0less.c
@@ -10,7 +10,6 @@
#include <xenctrl.h>
#include <xenguest.h>
#include <libxl.h>
-#include <xenevtchn.h>
#include <xenforeignmemory.h>
#include <xen/io/xs_wire.h>
--
2.25.1
|