From nobody Sun May 19 22:21:37 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1594617983; cv=none; d=zohomail.com; s=zohoarc; b=NpEyoaIVhqSy1ov90EDHcb5+fA66SUtNY9e7aHlU5HcN5Md59KA6AFNKeEEZPSgPkJWoCJmgAibtDr/PhTwtkrTzEJmP9zSy2J0JoJZezZLaegVv40Z9fhxRNvNxgePDO3o5DB40QUAQNPtqrvB0JU+dIHjkn2XpEeJS78UwgDY= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1594617983; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=hlQR+t3L67vzPUpSAu2JxGfRYQQX7dzg2Fj93XakINI=; b=GCsiU25O+F+M2pctP4EQfSKtKRutzCKGRsi+d3ixYXX8yDKZyyOUMcm46UYhJyldmJ6ofOahHuv4MEp0/TkYkA2I2nf3w/YInJ1MdZkYjNWNpQYoI2VByce8Yb9adT/4acNtIT0+o35kZ8qfZdTj13SvaUeZ6RWbiUa27u67iUk= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1594617983646947.2691165808303; Sun, 12 Jul 2020 22:26:23 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1juqyE-00057I-H3; Mon, 13 Jul 2020 05:25:42 +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.92) (envelope-from ) id 1juqyD-00057D-Go for xen-devel@lists.xenproject.org; Mon, 13 Jul 2020 05:25:41 +0000 Received: from mx2.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 49459df4-c4c9-11ea-9222-12813bfff9fa; Mon, 13 Jul 2020 05:25:39 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id D9E3BAB89; Mon, 13 Jul 2020 05:25:39 +0000 (UTC) X-Inumbo-ID: 49459df4-c4c9-11ea-9222-12813bfff9fa X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Juergen Gross To: xen-devel@lists.xenproject.org Subject: [PATCH] docs: specify stability of hypfs path documentation Date: Mon, 13 Jul 2020 07:16:39 +0200 Message-Id: <20200713051639.26948-1-jgross@suse.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Juergen Gross , Stefano Stabellini , Julien Grall , Wei Liu , paul@xen.org, Andrew Cooper , Ian Jackson , George Dunlap , Jan Beulich Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Content-Type: text/plain; charset="utf-8" In docs/misc/hypfs-paths.pandoc the supported paths in the hypervisor file system are specified. Make it more clear that path availability might change, e.g. due to scope widening or narrowing (e.g. being limited to a specific architecture). Signed-off-by: Juergen Gross --- This might be a candidate for 4.14, as hypfs is new in 4.14 and the documentation should be as clear as possible. --- docs/misc/hypfs-paths.pandoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/misc/hypfs-paths.pandoc b/docs/misc/hypfs-paths.pandoc index a111c6f25c..7ad4b7ba95 100644 --- a/docs/misc/hypfs-paths.pandoc +++ b/docs/misc/hypfs-paths.pandoc @@ -5,6 +5,9 @@ in the Xen hypervisor file system (hypfs). =20 The hypervisor file system can be accessed via the xenhypfs tool. =20 +The availability of the hypervisor file system depends on the hypervisor +config option CONFIG_HYPFS, which is on per default. + ## Notation =20 The hypervisor file system is similar to the Linux kernel's sysfs. @@ -55,6 +58,11 @@ tags enclosed in square brackets. * CONFIG_* -- Path is valid only in case the hypervisor was built with the respective config option. =20 +Path availability is subject to change, e.g. a specific path specified +for a single architecture now might be made available for other architectu= res +in future, or it could be made conditional by an additional config option +of the hypervisor. + So an entry could look like this: =20 /cpu-bugs/active-pv/xpti =3D ("No"|{"dom0", "domU", "PCID-on"}) [w,X86= ,PV] --=20 2.26.2