[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] xen/public: arch-arm: Drop XEN_DMOP_get_ioreq_server_info from supported
- To: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Oleksandr Tyshchenko <Oleksandr_Tyshchenko@xxxxxxxx>
- Date: Mon, 1 Sep 2025 12:58:38 +0000
- Accept-language: en-US, ru-RU
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
- 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=2o3P77ttyvIZEdJdklFoIAX7E+qAs5JkosERNNnEuiw=; b=ykvSSJF6QSBOloH3iwKHX2ZbEdjsd7ANlTRC2MOqi58x0NITVKhntkdCISpGqZWbG804mf1bq5QWkVWAWmm2t1Owi7sJlM32GN+Zku3GSpy7fEFBlWwQpgiIfHezTWAuh5UwSaeAOluLNYksmN0CE3CbvQu/ATi5xQ1kBW5T5R3M2xETRi2fAuNXnIYG2liyeaKp+nPl4S3IXxKGbYh2+IyWG56TVmC2SlqXETidG7CDNEFk3W7EZX33MWm18ADedh9XaWAnr8UfWgQ90eQ/dfPZvu4AlHTUCpF78hfP5o/fyHQYAP799Cp2+yeWzy/VbLi1HDJSGupsZNqfCtV5aA==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=OJ9jq0lTFevuC2sr5Fve4nLEtQU/phmAJs7Gvic2J2BIvT+uMx8yDcLEnc4LfFnUOgTx+Re8blcp3e9cfz0Fh1gNwulUF2mVPknTd3qTYjFwytC2WFfJQ+YnxK56bptzhfx2kjDPA07V9TmZn4PFRNGP1HPOlCYJ7KbH6Yt73JMMFftIHjaUy2tqt4MKZwlvr59CG/Q3m74xJkFHY7/E7KGnOAI5r/L+li7JgNLu5ij8pvQPiCfMJemVLh8htHKSp+1OD2s8S41Hs28ctD1M0H1zMZuuGr7lRF3lIUASxcXs/bBWSwFpZYAbmXGTNvdA2ueMo16nHDZmnQwfuFWTxQ==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=epam.com;
- Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>
- Delivery-date: Mon, 01 Sep 2025 12:58:44 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
- Thread-index: AQHcG0Ai/cd/D2azrkCw2pxNjrn41Q==
- Thread-topic: [PATCH] xen/public: arch-arm: Drop XEN_DMOP_get_ioreq_server_info from supported
The said sub-op is not supported on Arm64, since it:
- does not support the buffered emulation (so bufioreq_port/bufioreq_gfn
cannot be returned), please refer to ioreq_server_create()
- does not support "legacy" mechanism of mapping IOREQ Server
magic pages (so ioreq_gfn/bufioreq_gfn cannot be returned), please
refer to arch_ioreq_server_map_pages(). On Arm64, only the Acquire
Resource infrastructure is used to query and map the IOREQ Server pages.
Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx>
---
xen/include/public/arch-arm.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/xen/include/public/arch-arm.h b/xen/include/public/arch-arm.h
index e2412a1747..023cc2f468 100644
--- a/xen/include/public/arch-arm.h
+++ b/xen/include/public/arch-arm.h
@@ -130,7 +130,6 @@
* HYPERVISOR_dm_op
* Exactly these sub-operations are supported:
* * XEN_DMOP_create_ioreq_server
- * * XEN_DMOP_get_ioreq_server_info
* * XEN_DMOP_map_io_range_to_ioreq_server
* * XEN_DMOP_unmap_io_range_from_ioreq_server
* * XEN_DMOP_set_ioreq_server_state
--
2.34.1
|