public inbox for virtualization@lists.linux-foundation.org
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org, x86@kernel.org,
	virtualization@lists.linux.dev, kvm@vger.kernel.org,
	linux-block@vger.kernel.org
Cc: Thomas Gleixner <tglx@kernel.org>, Ingo Molnar <mingo@redhat.com>,
	Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Ajay Kaher <ajay.kaher@broadcom.com>,
	Alexey Makhalov <alexey.makhalov@broadcom.com>,
	Broadcom internal kernel review list
	<bcm-kernel-feedback-list@broadcom.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Vitaly Kuznetsov <vkuznets@redhat.com>,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>,
	xen-devel@lists.xenproject.org, Denis Efremov <efremov@linux.com>,
	Jens Axboe <axboe@kernel.dk>
Subject: Re: [PATCH v4 0/6] x86: Cleanups around slow_down_io()
Date: Mon, 9 Feb 2026 10:11:49 +0100	[thread overview]
Message-ID: <6ee93510-1f43-4cd2-952e-8ed3ce7ba0e5@suse.com> (raw)
In-Reply-To: <20260119182632.596369-1-jgross@suse.com>


[-- Attachment #1.1.1: Type: text/plain, Size: 2195 bytes --]

PING?

Now 3 weeks without any reaction...

On 19.01.26 19:26, Juergen Gross wrote:
> While looking at paravirt cleanups I stumbled over slow_down_io() and
> the related REALLY_SLOW_IO define.
> 
> Do several cleanups, resulting in a deletion of REALLY_SLOW_IO and the
> io_delay() paravirt function hook.
> 
> Patch 4 is removing the config options for selecting the default delay
> mechanism and sets the default to "no delay". This is in preparation of
> removing the io_delay() functionality completely, as suggested by Ingo
> Molnar.
> 
> Patch 5 is adding an additional config option allowing to avoid
> building io_delay.c (default is still to build it).
> 
> Changes in V2:
> - patches 2 and 3 of V1 have been applied
> - new patches 4 and 5
> 
> Changes in V3:
> - rebase to tip/master kernel branch
> 
> Changes in V4:
> - add patch 1 as prereq patch to the series
> 
> Juergen Gross (6):
>    x86/irqflags: Fix build failure
>    x86/paravirt: Replace io_delay() hook with a bool
>    block/floppy: Don't use REALLY_SLOW_IO for delays
>    x86/io: Remove REALLY_SLOW_IO handling
>    x86/io_delay: Switch io_delay() default mechanism to "none"
>    x86/io_delay: Add config option for controlling build of io_delay.
> 
>   arch/x86/Kconfig                      |  8 +++
>   arch/x86/Kconfig.debug                | 30 ----------
>   arch/x86/include/asm/floppy.h         | 31 ++++++++--
>   arch/x86/include/asm/io.h             | 19 ++++---
>   arch/x86/include/asm/irqflags.h       |  6 +-
>   arch/x86/include/asm/paravirt-base.h  |  6 ++
>   arch/x86/include/asm/paravirt.h       | 11 ----
>   arch/x86/include/asm/paravirt_types.h |  2 -
>   arch/x86/kernel/Makefile              |  3 +-
>   arch/x86/kernel/cpu/vmware.c          |  2 +-
>   arch/x86/kernel/io_delay.c            | 81 +--------------------------
>   arch/x86/kernel/kvm.c                 |  8 +--
>   arch/x86/kernel/paravirt.c            |  3 +-
>   arch/x86/kernel/setup.c               |  4 +-
>   arch/x86/xen/enlighten_pv.c           |  6 +-
>   drivers/block/floppy.c                |  2 -
>   16 files changed, 63 insertions(+), 159 deletions(-)
> 


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

  parent reply	other threads:[~2026-02-09  9:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-19 18:26 [PATCH v4 0/6] x86: Cleanups around slow_down_io() Juergen Gross
2026-01-19 18:26 ` [PATCH v4 2/6] x86/paravirt: Replace io_delay() hook with a bool Juergen Gross
2026-02-02 10:27 ` [PATCH v4 0/6] x86: Cleanups around slow_down_io() Juergen Gross
2026-02-09  9:11 ` Juergen Gross [this message]
2026-02-09 10:19   ` Borislav Petkov
2026-03-11  9:16 ` Juergen Gross

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=6ee93510-1f43-4cd2-952e-8ed3ce7ba0e5@suse.com \
    --to=jgross@suse.com \
    --cc=ajay.kaher@broadcom.com \
    --cc=alexey.makhalov@broadcom.com \
    --cc=axboe@kernel.dk \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=efremov@linux.com \
    --cc=hpa@zytor.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=tglx@kernel.org \
    --cc=virtualization@lists.linux.dev \
    --cc=vkuznets@redhat.com \
    --cc=x86@kernel.org \
    --cc=xen-devel@lists.xenproject.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