From: Anthony Krowiak <akrowiak@linux.ibm.com>
To: Rorie Reyes <rreyes@linux.ibm.com>,
linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org,
kvm@vger.kernel.org
Cc: hca@linux.ibm.com, borntraeger@de.ibm.com,
agordeev@linux.ibm.com, gor@linux.ibm.com, pasic@linux.ibm.com,
jjherne@linux.ibm.com, alex.williamson@redhat.com
Subject: Re: [RFC PATCH v2 2/2] s390/vfio-ap: Fixing mdev remove notification
Date: Wed, 26 Feb 2025 09:16:40 -0500 [thread overview]
Message-ID: <86e40763-f76a-4f71-bb50-d1b1a4c77509@linux.ibm.com> (raw)
In-Reply-To: <20250225201208.45998-3-rreyes@linux.ibm.com>
On 2/25/25 3:12 PM, Rorie Reyes wrote:
> Removed eventfd from vfio_ap_mdev_unset_kvm
> Update and release locks along with the eventfd added
> to vfio_ap_mdev_request
This patch doesn't really fix anything, it just undoes a line of code
that was added in
patch 1/2 (see my comment below).
By my reckoning, the purpose for this patch
is to signal an AP config change event to the guest when the crypto
devices are
removed from the guest's AP configuration as a result of a request to
remove the
mediated device.
>
> Signed-off-by: Rorie Reyes <rreyes@linux.ibm.com>
> ---
> drivers/s390/crypto/vfio_ap_ops.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/s390/crypto/vfio_ap_ops.c b/drivers/s390/crypto/vfio_ap_ops.c
> index c6ff4ab13f16..e0237ea27d7e 100644
> --- a/drivers/s390/crypto/vfio_ap_ops.c
> +++ b/drivers/s390/crypto/vfio_ap_ops.c
> @@ -1870,7 +1870,6 @@ static void vfio_ap_mdev_unset_kvm(struct ap_matrix_mdev *matrix_mdev)
> get_update_locks_for_kvm(kvm);
>
> kvm_arch_crypto_clear_masks(kvm);
> - signal_guest_ap_cfg_changed(matrix_mdev);
Why remove a line of code that was added in patch 1/2. Why not just
rebase patch 1/2 and
remove this line of code from that patch rather than here if it was
added in error?
> vfio_ap_mdev_reset_queues(matrix_mdev);
> kvm_put_kvm(kvm);
> matrix_mdev->kvm = NULL;
> @@ -2057,6 +2056,14 @@ static void vfio_ap_mdev_request(struct vfio_device *vdev, unsigned int count)
>
> matrix_mdev = container_of(vdev, struct ap_matrix_mdev, vdev);
>
> + if (matrix_mdev->kvm) {
> + get_update_locks_for_kvm(matrix_mdev->kvm);
> + kvm_arch_crypto_clear_masks(matrix_mdev->kvm);
> + signal_guest_ap_cfg_changed(matrix_mdev);
> + } else {
> + mutex_lock(&matrix_dev->mdevs_lock);
> + }
> +
> if (matrix_mdev->req_trigger) {
> if (!(count % 10))
> dev_notice_ratelimited(dev,
> @@ -2068,6 +2075,12 @@ static void vfio_ap_mdev_request(struct vfio_device *vdev, unsigned int count)
> dev_notice(dev,
> "No device request registered, blocked until released by user\n");
> }
> +
> + if (matrix_mdev->kvm)
> + release_update_locks_for_kvm(matrix_mdev->kvm);
> + else
> + mutex_unlock(&matrix_dev->mdevs_lock);
> +
> }
>
> static int vfio_ap_mdev_get_device_info(unsigned long arg)
next prev parent reply other threads:[~2025-02-26 14:16 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-25 20:12 [RFC PATCH v2 0/2] Eventfd signal on guest AP configuration change Rorie Reyes
2025-02-25 20:12 ` [RFC PATCH v2 1/2] s390/vfio-ap: Signal eventfd when guest AP configuration is changed Rorie Reyes
2025-02-25 20:12 ` [RFC PATCH v2 2/2] s390/vfio-ap: Fixing mdev remove notification Rorie Reyes
2025-02-26 14:16 ` Anthony Krowiak [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-26 18:03 [RFC PATCH v2 0/2] Eventfd signal on guest AP configuration change Rorie Reyes
2025-02-26 18:03 ` [RFC PATCH v2 2/2] s390/vfio-ap: Fixing mdev remove notification Rorie Reyes
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=86e40763-f76a-4f71-bb50-d1b1a4c77509@linux.ibm.com \
--to=akrowiak@linux.ibm.com \
--cc=agordeev@linux.ibm.com \
--cc=alex.williamson@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=jjherne@linux.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=pasic@linux.ibm.com \
--cc=rreyes@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