[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/7] tools/libs/store: add get- and set-feature related functions
- To: Juergen Gross <jgross@xxxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Jason Andryuk <jason.andryuk@xxxxxxx>
- Date: Thu, 24 Jul 2025 18:31:51 -0400
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=suse.com 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=YcBeyMg0EuuF4q/pOmdqvwEFpKVTrktHkIJT4nmMAmQ=; b=k1N3tPpQBQa6KCWnLsDXh+q9sG0MHEPx35qiVxm042mUT817mHecjJ20Vy5yrgekbAEof5zvy5nVuI34G8Ytur9H81/Uaq8lAPlCzGFxVuUvA0YrVCWT9Wx9MioX7JDC8szBevxyOYrNGouI6rworSIAxfBMjGEQspYGaOHQmcFue0ZUZW0zewSU9jPmFxedb01VZYlhN1hvsH/e3lldPn6oldk2aVjypSvJFcoLWYz2Uc21Wrx1ZNWfcUVqypvo9NNEwKB41i6xEid23vMVEIKXpLWmqgPGP89MUK/ng2yWMm9P2VCEglLY3Y6wT+C1nwweRGAp1QPGJt+xQQzbmQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=jHbCVA+0J+Tj2kibNfRk1Ekyq1FzJZF31ghbf/NxfGlZYR/qfhbufSxNADfg7T1urGnOUVRZzeO6GBdrZpauExO/PIWHUB9HD+HJRR8M/wwsmm+QnufCQ4EvLAwUvclLhWtIWCMYS2tkxhV9o2uRldFGIdeeNYmCNTWTWkBSwc+yiMraYvbuILOC07F0aT2i6du6qm6MSBLoI/AgY1FCebRTGDUJPR3MAsYH0iqzpqG1r+q9F6Ieh28X1SWyASUB5tVgQQbbLc9E6zJLZ18yna7oLSzeMky0nE8f5g7xmG8+028Xem0RIhI+j/xy1M00AQGlbnIyEY3Y/GiO29GZwA==
- Cc: Julien Grall <julien@xxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>
- Delivery-date: Fri, 25 Jul 2025 00:16:42 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 2025-07-22 10:06, Juergen Gross wrote:
Add functions for getting and setting Xenstore features to libxenstore:
xs_get_features_supported(): return the features supported by the
running Xenstore implementation as defined in xs_wire.h via the
XENSTORE_SERVER_FEATURE_* macros.
xs_get_features_domain(): return the features offered for a specific
domain.
xs_set_features_domain(): set the features available for a specific
domain.
Signed-off-by: Juergen Gross <jgross@xxxxxxxx>
Reviewed-by: Jason Andryuk <jason.andryuk@xxxxxxx>
|