public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Alexandru Elisei <alexandru.elisei@arm.com>
To: Oliver Upton <oliver.upton@linux.dev>
Cc: kvmarm@lists.linux.dev, kvm@vger.kernel.org,
	Will Deacon <will@kernel.org>,
	Julien Thierry <julien.thierry.kdev@gmail.com>,
	andre.przywara@arm.com, maz@kernel.org, jean-philippe@linaro.org
Subject: Re: [RFC kvmtool 0/9] arm: Drop support for 32-bit kvmtool
Date: Mon, 17 Mar 2025 10:39:44 +0000	[thread overview]
Message-ID: <Z9f78K-m9h7YlzUr@raptor> (raw)
In-Reply-To: <20250314222516.1302429-1-oliver.upton@linux.dev>

Hi Oliver,

I'm CC'ing Marc and Andre (Andre is the only person that I know for a fact
that ran 32 bit kvmtool).

Haven't looked at the patches in detail, but as someone who ocassionally
contributes to kvmtool, I have to say it's always nice to have fewer things
to worry about. I, for one, never used 32 bit kvmtool, I just compiled for
32 bit arm to make sure it doesn't break.

If nobody objects to dropping support for 32 bit kvmtool, I'm planning to
review the patches.

Thanks,
Alex

On Fri, Mar 14, 2025 at 03:25:07PM -0700, Oliver Upton wrote:
> The last stable kernel to support 32-bit KVM/arm is 5.4, which is on
> track for EOL at the end of this year. Considering this, and the fact
> that 32-bit KVM never saw much usage in the first place, it is probably
> time to toss out the coprolite.
> 
> Of course, this has no effect on the support for 32-bit guests on 64-bit
> KVM.
> 
> Oliver Upton (9):
>   Drop support for 32-bit arm
>   arm64: Move arm64-only features into main directory
>   arm64: Combine kvm.c
>   arm64: Merge kvm-cpu.c
>   arm64: Combine kvm-config-arch.h
>   arm64: Move remaining kvm/* headers
>   arm64: Move asm headers
>   arm64: Rename top-level directory
>   arm64: Get rid of the 'arm-common' include directory
> 
>  INSTALL                                       |   9 +-
>  Makefile                                      |  40 +--
>  arm/aarch32/arm-cpu.c                         |  50 ---
>  arm/aarch32/include/asm/kernel.h              |   8 -
>  arm/aarch32/include/asm/kvm.h                 | 311 ------------------
>  arm/aarch32/include/kvm/barrier.h             |  10 -
>  arm/aarch32/include/kvm/fdt-arch.h            |   6 -
>  arm/aarch32/include/kvm/kvm-arch.h            |  18 -
>  arm/aarch32/include/kvm/kvm-config-arch.h     |   8 -
>  arm/aarch32/include/kvm/kvm-cpu-arch.h        |  24 --
>  arm/aarch32/kvm-cpu.c                         | 132 --------
>  arm/aarch32/kvm.c                             |  14 -
>  arm/aarch64/include/kvm/fdt-arch.h            |   6 -
>  arm/aarch64/include/kvm/kvm-arch.h            |  22 --
>  arm/aarch64/include/kvm/kvm-config-arch.h     |  29 --
>  arm/aarch64/include/kvm/kvm-cpu-arch.h        |  19 --
>  arm/aarch64/kvm.c                             | 212 ------------
>  arm/kvm-cpu.c                                 | 153 ---------
>  {arm/aarch64 => arm64}/arm-cpu.c              |   4 +-
>  {arm => arm64}/fdt.c                          |   4 +-
>  {arm => arm64}/gic.c                          |   2 +-
>  {arm => arm64}/gicv2m.c                       |   2 +-
>  {arm/aarch64 => arm64}/include/asm/image.h    |   0
>  {arm/aarch64 => arm64}/include/asm/kernel.h   |   0
>  {arm/aarch64 => arm64}/include/asm/kvm.h      |   0
>  {arm/aarch64 => arm64}/include/asm/pmu.h      |   0
>  .../include/asm/sve_context.h                 |   0
>  .../arm-common => arm64/include}/gic.h        |   0
>  {arm/aarch64 => arm64}/include/kvm/barrier.h  |   0
>  .../include/kvm}/fdt-arch.h                   |   0
>  .../include/kvm}/kvm-arch.h                   |   6 +-
>  .../include/kvm}/kvm-config-arch.h            |  24 +-
>  .../include/kvm}/kvm-cpu-arch.h               |  10 +-
>  .../arm-common => arm64/include}/pci.h        |   0
>  .../arm-common => arm64/include}/timer.h      |   0
>  {arm => arm64}/ioport.c                       |   0
>  {arm/aarch64 => arm64}/kvm-cpu.c              | 289 ++++++++++++----
>  {arm => arm64}/kvm.c                          | 212 +++++++++++-
>  {arm => arm64}/pci.c                          |   4 +-
>  {arm/aarch64 => arm64}/pmu.c                  |   2 +-
>  {arm/aarch64 => arm64}/pvtime.c               |   0
>  {arm => arm64}/timer.c                        |   4 +-
>  42 files changed, 495 insertions(+), 1139 deletions(-)
>  delete mode 100644 arm/aarch32/arm-cpu.c
>  delete mode 100644 arm/aarch32/include/asm/kernel.h
>  delete mode 100644 arm/aarch32/include/asm/kvm.h
>  delete mode 100644 arm/aarch32/include/kvm/barrier.h
>  delete mode 100644 arm/aarch32/include/kvm/fdt-arch.h
>  delete mode 100644 arm/aarch32/include/kvm/kvm-arch.h
>  delete mode 100644 arm/aarch32/include/kvm/kvm-config-arch.h
>  delete mode 100644 arm/aarch32/include/kvm/kvm-cpu-arch.h
>  delete mode 100644 arm/aarch32/kvm-cpu.c
>  delete mode 100644 arm/aarch32/kvm.c
>  delete mode 100644 arm/aarch64/include/kvm/fdt-arch.h
>  delete mode 100644 arm/aarch64/include/kvm/kvm-arch.h
>  delete mode 100644 arm/aarch64/include/kvm/kvm-config-arch.h
>  delete mode 100644 arm/aarch64/include/kvm/kvm-cpu-arch.h
>  delete mode 100644 arm/aarch64/kvm.c
>  delete mode 100644 arm/kvm-cpu.c
>  rename {arm/aarch64 => arm64}/arm-cpu.c (96%)
>  rename {arm => arm64}/fdt.c (99%)
>  rename {arm => arm64}/gic.c (99%)
>  rename {arm => arm64}/gicv2m.c (99%)
>  rename {arm/aarch64 => arm64}/include/asm/image.h (100%)
>  rename {arm/aarch64 => arm64}/include/asm/kernel.h (100%)
>  rename {arm/aarch64 => arm64}/include/asm/kvm.h (100%)
>  rename {arm/aarch64 => arm64}/include/asm/pmu.h (100%)
>  rename {arm/aarch64 => arm64}/include/asm/sve_context.h (100%)
>  rename {arm/include/arm-common => arm64/include}/gic.h (100%)
>  rename {arm/aarch64 => arm64}/include/kvm/barrier.h (100%)
>  rename {arm/include/arm-common => arm64/include/kvm}/fdt-arch.h (100%)
>  rename {arm/include/arm-common => arm64/include/kvm}/kvm-arch.h (97%)
>  rename {arm/include/arm-common => arm64/include/kvm}/kvm-config-arch.h (54%)
>  rename {arm/include/arm-common => arm64/include/kvm}/kvm-cpu-arch.h (82%)
>  rename {arm/include/arm-common => arm64/include}/pci.h (100%)
>  rename {arm/include/arm-common => arm64/include}/timer.h (100%)
>  rename {arm => arm64}/ioport.c (100%)
>  rename {arm/aarch64 => arm64}/kvm-cpu.c (70%)
>  rename {arm => arm64}/kvm.c (59%)
>  rename {arm => arm64}/pci.c (98%)
>  rename {arm/aarch64 => arm64}/pmu.c (99%)
>  rename {arm/aarch64 => arm64}/pvtime.c (100%)
>  rename {arm => arm64}/timer.c (95%)
> 
> 
> base-commit: e48563f5c4a48fe6a6bc2a98a9a7c84a10f043be
> -- 
> 2.39.5
> 
> 

  parent reply	other threads:[~2025-03-17 10:39 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14 22:25 [RFC kvmtool 0/9] arm: Drop support for 32-bit kvmtool Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 1/9] Drop support for 32-bit arm Oliver Upton
2025-03-20 16:58   ` Alexandru Elisei
2025-03-25 17:08     ` Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 2/9] arm64: Move arm64-only features into main directory Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 3/9] arm64: Combine kvm.c Oliver Upton
2025-03-20 16:59   ` Alexandru Elisei
2025-03-14 22:25 ` [RFC kvmtool 4/9] arm64: Merge kvm-cpu.c Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 5/9] arm64: Combine kvm-config-arch.h Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 6/9] arm64: Move remaining kvm/* headers Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 7/9] arm64: Move asm headers Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 8/9] arm64: Rename top-level directory Oliver Upton
2025-03-14 22:25 ` [RFC kvmtool 9/9] arm64: Get rid of the 'arm-common' include directory Oliver Upton
2025-03-20 17:01   ` Alexandru Elisei
2025-03-25 17:02     ` Oliver Upton
2025-03-17 10:39 ` Alexandru Elisei [this message]
2025-03-17 10:51   ` [RFC kvmtool 0/9] arm: Drop support for 32-bit kvmtool Marc Zyngier
2025-03-18  1:10     ` Oliver Upton
2025-03-19 14:18   ` Andre Przywara
2025-03-17 11:14 ` Marc Zyngier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Z9f78K-m9h7YlzUr@raptor \
    --to=alexandru.elisei@arm.com \
    --cc=andre.przywara@arm.com \
    --cc=jean-philippe@linaro.org \
    --cc=julien.thierry.kdev@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.linux.dev \
    --cc=maz@kernel.org \
    --cc=oliver.upton@linux.dev \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox