linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Introduce CONFIG_MSHV_ROOT for root partition code
@ 2025-02-20 18:33 Nuno Das Neves
  2025-02-20 18:33 ` [PATCH v2 1/3] hyperv: Convert hypercall statuses to linux error codes Nuno Das Neves
                   ` (2 more replies)
  0 siblings, 3 replies; 24+ messages in thread
From: Nuno Das Neves @ 2025-02-20 18:33 UTC (permalink / raw)
  To: linux-hyperv, linux-arm-kernel, linux-kernel, linux-arch, iommu,
	mhklinux, eahariha
  Cc: kys, haiyangz, wei.liu, decui, catalin.marinas, will, tglx, mingo,
	bp, dave.hansen, x86, hpa, daniel.lezcano, joro, robin.murphy,
	arnd, jinankjain, muminulrussell, skinsburskii, mukeshrathor

Running in the root partition is a unique and specialized case that
requires additional code. CONFIG_MSHV_ROOT allows Hyper-V guest kernels
to exclude this code, which is important since significant additional code
specific to the root partition is expected to be added over time.

To do this, change hv_root_partition to be a function which is stubbed out
to return false if CONFIG_MSHV_ROOT=n, and don't compile hv_proc.c at all,
stubbing out those functions with inline versions.

Store the partition type (guest or root) in an enum hv_current_partition_type,
which can be extended beyond just guest and root partition.

While at it, introduce hv_result_to_errno() to convert Hyper-V status codes
to regular linux errors. This is useful because the caller of a hypercall
helper function (such as those in hv_proc.c) usually can't and doesn't
interpret the Hyper-V status, so it is better to convert it to an error code
and reduce the possibility of misinterpreting it. This also alows the stubbed
versions of the hv_proc.c functions to just return a linux error code.

Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
---
Changes in v2:
* Add patch to convert hypercall statuses to linux error codes [Easwar
  Hariharan]
* While at it, split the original patch into two logical pieces, one to change
  hv_root_partition into a function, and one to introduce MSHV_CONFIG_ROOT
* Improve the clarity of and add an error message to
  hv_identify_partition_type() [Easwar Hariharan] [Michael Kelley]
* Better explain *why* the patches are useful, in the commit messages [Michael
  Kelley]
* Add a Kconfig comment explaining why PAGE_SIZE_4KB is needed [Michael Kelley]
* Minor style and typo fixes

Nuno Das Neves (3):
  hyperv: Convert hypercall statuses to linux error codes
  hyperv: Change hv_root_partition into a function
  hyperv: Add CONFIG_MSHV_ROOT to gate root partition support

 arch/arm64/hyperv/mshyperv.c       |  2 +
 arch/x86/hyperv/hv_init.c          | 10 ++---
 arch/x86/kernel/cpu/mshyperv.c     | 24 +----------
 drivers/clocksource/hyperv_timer.c |  4 +-
 drivers/hv/Kconfig                 | 16 +++++++
 drivers/hv/Makefile                |  3 +-
 drivers/hv/hv.c                    | 10 ++---
 drivers/hv/hv_common.c             | 69 +++++++++++++++++++++++++++---
 drivers/hv/hv_proc.c               |  6 +--
 drivers/hv/vmbus_drv.c             |  2 +-
 drivers/iommu/hyperv-iommu.c       |  4 +-
 include/asm-generic/mshyperv.h     | 40 ++++++++++++++---
 12 files changed, 137 insertions(+), 53 deletions(-)

-- 
2.34.1



^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH v2 0/3] Introduce CONFIG_MSHV_ROOT for root partition code
@ 2025-02-21 19:56 Nuno Das Neves
  2025-02-21 20:01 ` Nuno Das Neves
  2025-02-22  2:32 ` Wei Liu
  0 siblings, 2 replies; 24+ messages in thread
From: Nuno Das Neves @ 2025-02-21 19:56 UTC (permalink / raw)
  To: linux-hyperv, linux-arm-kernel, linux-kernel, linux-arch, iommu,
	mhklinux, eahariha, mukeshrathor
  Cc: kys, haiyangz, wei.liu, decui, catalin.marinas, will, tglx, mingo,
	bp, dave.hansen, x86, hpa, daniel.lezcano, joro, robin.murphy,
	arnd, jinankjain, muminulrussell, skinsburskii

Running in the root partition is a unique and specialized case that
requires additional code. CONFIG_MSHV_ROOT allows Hyper-V guest kernels
to exclude this code, which is important since significant additional code
specific to the root partition is expected to be added over time.

To do this, change hv_root_partition to be a function which is stubbed out
to return false if CONFIG_MSHV_ROOT=n, and don't compile hv_proc.c at all,
stubbing out those functions with inline versions.

Store the partition type (guest or root) in an enum hv_curr_partition_type,
which can be extended beyond just guest and root partition.

While at it, introduce hv_result_to_errno() to convert Hyper-V status codes
to regular linux errors. This is useful because the caller of a hypercall
helper function (such as those in hv_proc.c) usually can't and doesn't
interpret the Hyper-V status, so it is better to convert it to an error code
and reduce the possibility of misinterpreting it. This also alows the stubbed
versions of the hv_proc.c functions to just return a linux error code.

Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
---
Changes in v3:
* Fix a typo [Easwar Hariharan]
* Fix ret being initialized to HV_STATUS_SUCCESS in some hypercall helpers
  [Michael Kelley]
* Fix CONFIG_MSHV_ROOT being used in patch 2, before it is defined [Michael
  Kelley]
* Shorten hv_current_partition_type to hv_curr_partition_type [Mukesh Rathor]

Changes in v2:
* Add patch to convert hypercall statuses to linux error codes [Easwar
  Hariharan]
* While at it, split the original patch into two logical pieces, one to change
  hv_root_partition into a function, and one to introduce MSHV_CONFIG_ROOT
* Improve the clarity of and add an error message to
  hv_identify_partition_type() [Easwar Hariharan] [Michael Kelley]
* Better explain *why* the patches are useful, in the commit messages [Michael
  Kelley]
* Add a Kconfig comment explaining why PAGE_SIZE_4KB is needed [Michael Kelley]
* Minor style and typo fixes

Nuno Das Neves (3):
  hyperv: Convert hypercall statuses to linux error codes
  hyperv: Change hv_root_partition into a function
  hyperv: Add CONFIG_MSHV_ROOT to gate root partition support

 arch/arm64/hyperv/mshyperv.c       |  2 +
 arch/x86/hyperv/hv_init.c          | 10 ++---
 arch/x86/kernel/cpu/mshyperv.c     | 24 +----------
 drivers/clocksource/hyperv_timer.c |  4 +-
 drivers/hv/Kconfig                 | 16 +++++++
 drivers/hv/Makefile                |  3 +-
 drivers/hv/hv.c                    | 10 ++---
 drivers/hv/hv_common.c             | 69 +++++++++++++++++++++++++++---
 drivers/hv/hv_proc.c               | 10 ++---
 drivers/hv/vmbus_drv.c             |  2 +-
 drivers/iommu/hyperv-iommu.c       |  4 +-
 include/asm-generic/mshyperv.h     | 40 ++++++++++++++---
 12 files changed, 139 insertions(+), 55 deletions(-)

-- 
2.34.1



^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2025-02-22  2:34 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-20 18:33 [PATCH v2 0/3] Introduce CONFIG_MSHV_ROOT for root partition code Nuno Das Neves
2025-02-20 18:33 ` [PATCH v2 1/3] hyperv: Convert hypercall statuses to linux error codes Nuno Das Neves
2025-02-20 18:49   ` Easwar Hariharan
2025-02-20 21:59     ` Nuno Das Neves
2025-02-20 19:03   ` Michael Kelley
2025-02-20 21:58     ` Nuno Das Neves
2025-02-20 18:33 ` [PATCH v2 2/3] hyperv: Change hv_root_partition into a function Nuno Das Neves
2025-02-20 18:56   ` Easwar Hariharan
2025-02-20 19:08   ` Michael Kelley
2025-02-20 19:17   ` Michael Kelley
2025-02-20 21:57     ` Nuno Das Neves
2025-02-20 21:59   ` MUKESH RATHOR
2025-02-20 22:56     ` Easwar Hariharan
2025-02-20 22:59       ` MUKESH RATHOR
2025-02-21 18:10         ` Nuno Das Neves
2025-02-21 18:38           ` Easwar Hariharan
2025-02-21 18:47           ` MUKESH RATHOR
2025-02-20 18:33 ` [PATCH v2 3/3] hyperv: Add CONFIG_MSHV_ROOT to gate root partition support Nuno Das Neves
2025-02-20 19:02   ` Easwar Hariharan
2025-02-20 19:22   ` Michael Kelley
  -- strict thread matches above, loose matches on Subject: below --
2025-02-21 19:56 [PATCH v2 0/3] Introduce CONFIG_MSHV_ROOT for root partition code Nuno Das Neves
2025-02-21 20:01 ` Nuno Das Neves
2025-02-21 21:09   ` Easwar Hariharan
2025-02-22  2:32 ` Wei Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).