From: Omar Elghoul <oelghoul@linux.ibm.com>
To: Niklas Schnelle <schnelle@linux.ibm.com>,
Alex Williamson <alex@shazbot.org>
Cc: linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org,
kvm@vger.kernel.org, hca@linux.ibm.com, gor@linux.ibm.com,
agordeev@linux.ibm.com, borntraeger@linux.ibm.com,
svens@linux.ibm.com, mjrosato@linux.ibm.com, alifm@linux.ibm.com,
farman@linux.ibm.com, gbayer@linux.ibm.com
Subject: Re: [PATCH v3 4/4] s390/pci: Fence FMB enable/disable via sysfs for passthrough devices
Date: Wed, 10 Jun 2026 08:54:30 -0400 [thread overview]
Message-ID: <c7c0afe6-7c75-4e1f-b3cc-eff5f8335aee@linux.ibm.com> (raw)
In-Reply-To: <986385851fb30f53b8899d61bfeae81979d36d58.camel@linux.ibm.com>
On 6/10/26 5:07 AM, Niklas Schnelle wrote:
> On Tue, 2026-06-09 at 20:32 -0400, Omar Elghoul wrote:
>> On 6/9/26 6:52 PM, Alex Williamson wrote:
>>> On Mon, 8 Jun 2026 13:18:50 -0400
>>> Omar Elghoul <oelghoul@linux.ibm.com> wrote:
>>>
>>>> Introduce a fence over enabling or disabling FMB via sysfs when the zPCI
>>>> device is associated with a KVM. This will allow a KVM guest to use FMB
>>>> passthrough and avoid the edge-case where the host disables FMB while the
>>>> guest is still using it, which may cause partial counter resets and
>>>> inconsistent reads which have no parallel in the architecture.
>>>>
>>>> With this patch, the userspace driver, likely QEMU, is still able to enable
>>>> or disable the FMB using the VFIO device feature introduced in the previous
>>>> patch, effectively securing what is associated with the VM state and
>>>> isolating it from other processes on the host.
>>>>
>>>> For VFIO devices that are not associated with a KVM (i.e., for userspace
>>>> drivers other than QEMU), this fence does not take effect.
>>>>
>>>> Signed-off-by: Omar Elghoul <oelghoul@linux.ibm.com>
>>>> Reviewed-by: Niklas Schnelle <schnelle@linux.ibm.com>
>>>> ---
>>>> arch/s390/pci/pci_debug.c | 11 ++++++++++-
>>>> 1 file changed, 10 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/arch/s390/pci/pci_debug.c b/arch/s390/pci/pci_debug.c
>>>> index c7ed7bf254b5..a2dc79418c21 100644
>>>> --- a/arch/s390/pci/pci_debug.c
>>>> +++ b/arch/s390/pci/pci_debug.c
>>>> @@ -149,9 +149,15 @@ static ssize_t pci_perf_seq_write(struct file *file, const char __user *ubuf,
>>>> if (!zdev)
>>>> return 0;
>>>>
>>>> + mutex_lock(&zdev->kzdev_lock);
>>>> + if (zdev->kzdev) {
>>>> + rc = -EPERM;
>>>> + goto out_unlock_kzdev;
>>>> + }
>>>> +
>>>> rc = kstrtoul_from_user(ubuf, count, 10, &val);
>>>> if (rc)
>>>> - return rc;
>>>> + goto out_unlock_kzdev;
>>>>
>>>> mutex_lock(&zdev->fmb_lock);
>>>> switch (val) {
>>>> @@ -163,6 +169,9 @@ static ssize_t pci_perf_seq_write(struct file *file, const char __user *ubuf,
>>>> break;
>>>> }
>>>> mutex_unlock(&zdev->fmb_lock);
>>>> +
>>>> +out_unlock_kzdev:
>>>> + mutex_unlock(&zdev->kzdev_lock);
>>>> return rc ? rc : count;
>>>> }
>>>>
>>>
>>> Why not also use a guard for the mutex here and avoid the goto
>>> unlock... also moving the guard below the kstrtoul_from_user()?
>>>
>>> The fmb_lock could switch to a guard too, but that's existing.
>>
>> From where I'm standing I don't think there is any particular reason to
>> do it one way vs the other. Thanks.
>
> I do prefer the guard(mutex) because it does remove the need for a goto
> exit in many places including the above. That said it should also take
> the surrounding code into account and definitely needs to be applied to
> the whole function. In this case pci_perf_seq_write() uses both the
> kzdev and fmb_lock so to use guard you'd have to convert both. That
> then feels out of scope for this patch so I'd prefer you stick with
> plain mutex here but use guard in cases where the whole function ends
> up using guards. So for patch 2 you can also go with guard, it's not a
> must for me though.
Acked, thanks
>
> Thanks,
> Niklas
>>
prev parent reply other threads:[~2026-06-10 12:54 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 17:18 [PATCH v3 0/4] vfio-pci/zdev: Improved zPCI Function Measurement Support Omar Elghoul
2026-06-08 17:18 ` [PATCH v3 1/4] s390/pci: Hold fmb_lock when enabling or disabling PCI devices Omar Elghoul
2026-06-08 17:43 ` sashiko-bot
2026-06-09 19:52 ` Niklas Schnelle
2026-06-08 17:18 ` [PATCH v3 2/4] s390/pci: Preserve FMB state in device re-enablement Omar Elghoul
2026-06-08 17:51 ` sashiko-bot
2026-06-08 17:18 ` [PATCH v3 3/4] vfio-pci/zdev: Add VFIO FMB device features Omar Elghoul
2026-06-08 18:22 ` sashiko-bot
2026-06-09 22:43 ` Alex Williamson
2026-06-10 0:12 ` Omar Elghoul
2026-06-08 17:18 ` [PATCH v3 4/4] s390/pci: Fence FMB enable/disable via sysfs for passthrough devices Omar Elghoul
2026-06-09 22:52 ` Alex Williamson
2026-06-10 0:32 ` Omar Elghoul
2026-06-10 9:07 ` Niklas Schnelle
2026-06-10 12:54 ` Omar Elghoul [this message]
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=c7c0afe6-7c75-4e1f-b3cc-eff5f8335aee@linux.ibm.com \
--to=oelghoul@linux.ibm.com \
--cc=agordeev@linux.ibm.com \
--cc=alex@shazbot.org \
--cc=alifm@linux.ibm.com \
--cc=borntraeger@linux.ibm.com \
--cc=farman@linux.ibm.com \
--cc=gbayer@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=mjrosato@linux.ibm.com \
--cc=schnelle@linux.ibm.com \
--cc=svens@linux.ibm.com \
/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