All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390: vfio-ap: fix some comments
@ 2019-11-13  9:53 Cornelia Huck
  2019-11-13 12:15 ` Pierre Morel
  2019-11-13 14:29 ` Halil Pasic
  0 siblings, 2 replies; 5+ messages in thread
From: Cornelia Huck @ 2019-11-13  9:53 UTC (permalink / raw)
  To: Tony Krowiak, Pierre Morel, Halil Pasic; +Cc: linux-s390, Cornelia Huck

The functions are called vfio_ap_irq_{en,dis}able.

Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---

Just some minor stuff I noted while grepping for something.

---
 drivers/s390/crypto/vfio_ap_ops.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/s390/crypto/vfio_ap_ops.c b/drivers/s390/crypto/vfio_ap_ops.c
index 5c0f53c6dde7..f8f3f3a4e5fd 100644
--- a/drivers/s390/crypto/vfio_ap_ops.c
+++ b/drivers/s390/crypto/vfio_ap_ops.c
@@ -182,7 +182,7 @@ struct ap_queue_status vfio_ap_irq_disable(struct vfio_ap_queue *q)
 }
 
 /**
- * vfio_ap_setirq: Enable Interruption for a APQN
+ * vfio_ap_irq_enable: Enable Interruption for a APQN
  *
  * @dev: the device associated with the ap_queue
  * @q:	 the vfio_ap_queue holding AQIC parameters
@@ -265,7 +265,7 @@ static struct ap_queue_status vfio_ap_irq_enable(struct vfio_ap_queue *q,
  * - AP_RESPONSE_Q_NOT_AVAIL: if the queue is not available
  * - AP_RESPONSE_DECONFIGURED: if the queue is not configured
  * - AP_RESPONSE_NORMAL (0) : in case of successs
- *   Check vfio_ap_setirq() and vfio_ap_clrirq() for other possible RC.
+ *   Check vfio_ap_irq_enable() and vfio_ap_irq_disable() for other possible RC.
  * We take the matrix_dev lock to ensure serialization on queues and
  * mediated device access.
  *
-- 
2.21.0

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

* Re: [PATCH] s390: vfio-ap: fix some comments
  2019-11-13  9:53 [PATCH] s390: vfio-ap: fix some comments Cornelia Huck
@ 2019-11-13 12:15 ` Pierre Morel
  2020-04-29 14:52   ` Tony Krowiak
  2019-11-13 14:29 ` Halil Pasic
  1 sibling, 1 reply; 5+ messages in thread
From: Pierre Morel @ 2019-11-13 12:15 UTC (permalink / raw)
  To: Cornelia Huck, Tony Krowiak, Halil Pasic; +Cc: linux-s390


:) thanks,

Regards,

Pierre

Reviewed-by: Pierre Morel <pmorel@linux.ibm.com>

On 2019-11-13 10:53, Cornelia Huck wrote:
> The functions are called vfio_ap_irq_{en,dis}able.
>
> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
> ---
>
> Just some minor stuff I noted while grepping for something.
>
> ---
>   drivers/s390/crypto/vfio_ap_ops.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/s390/crypto/vfio_ap_ops.c b/drivers/s390/crypto/vfio_ap_ops.c
> index 5c0f53c6dde7..f8f3f3a4e5fd 100644
> --- a/drivers/s390/crypto/vfio_ap_ops.c
> +++ b/drivers/s390/crypto/vfio_ap_ops.c
> @@ -182,7 +182,7 @@ struct ap_queue_status vfio_ap_irq_disable(struct vfio_ap_queue *q)
>   }
>   
>   /**
> - * vfio_ap_setirq: Enable Interruption for a APQN
> + * vfio_ap_irq_enable: Enable Interruption for a APQN
>    *
>    * @dev: the device associated with the ap_queue
>    * @q:	 the vfio_ap_queue holding AQIC parameters
> @@ -265,7 +265,7 @@ static struct ap_queue_status vfio_ap_irq_enable(struct vfio_ap_queue *q,
>    * - AP_RESPONSE_Q_NOT_AVAIL: if the queue is not available
>    * - AP_RESPONSE_DECONFIGURED: if the queue is not configured
>    * - AP_RESPONSE_NORMAL (0) : in case of successs
> - *   Check vfio_ap_setirq() and vfio_ap_clrirq() for other possible RC.
> + *   Check vfio_ap_irq_enable() and vfio_ap_irq_disable() for other possible RC.
>    * We take the matrix_dev lock to ensure serialization on queues and
>    * mediated device access.
>    *

-- 
Pierre Morel
IBM Lab Boeblingen

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

* Re: [PATCH] s390: vfio-ap: fix some comments
  2019-11-13  9:53 [PATCH] s390: vfio-ap: fix some comments Cornelia Huck
  2019-11-13 12:15 ` Pierre Morel
@ 2019-11-13 14:29 ` Halil Pasic
  1 sibling, 0 replies; 5+ messages in thread
From: Halil Pasic @ 2019-11-13 14:29 UTC (permalink / raw)
  To: Cornelia Huck; +Cc: Tony Krowiak, Pierre Morel, linux-s390

On Wed, 13 Nov 2019 10:53:19 +0100
Cornelia Huck <cohuck@redhat.com> wrote:

> The functions are called vfio_ap_irq_{en,dis}able.
> 
> Signed-off-by: Cornelia Huck <cohuck@redhat.com>

Reviewed-by: Halil Pasic <pasic@linux.ibm.com>

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

* Re: [PATCH] s390: vfio-ap: fix some comments
  2019-11-13 12:15 ` Pierre Morel
@ 2020-04-29 14:52   ` Tony Krowiak
  2020-04-29 15:15     ` Tony Krowiak
  0 siblings, 1 reply; 5+ messages in thread
From: Tony Krowiak @ 2020-04-29 14:52 UTC (permalink / raw)
  To: Pierre Morel, Cornelia Huck, Halil Pasic; +Cc: linux-s390

Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com>

On 11/13/19 7:15 AM, Pierre Morel wrote:
> Check vfio_ap_setirq

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

* Re: [PATCH] s390: vfio-ap: fix some comments
  2020-04-29 14:52   ` Tony Krowiak
@ 2020-04-29 15:15     ` Tony Krowiak
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Krowiak @ 2020-04-29 15:15 UTC (permalink / raw)
  To: Pierre Morel, Cornelia Huck, Halil Pasic; +Cc: linux-s390

Ignore this, I've been having problems with synchronization of my 
Thunderbird email client and the upstream mailing
list. I responded without looking at the date this was posted.

On 4/29/20 10:52 AM, Tony Krowiak wrote:
> Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com>
>
> On 11/13/19 7:15 AM, Pierre Morel wrote:
>> Check vfio_ap_setirq
>

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

end of thread, other threads:[~2020-04-29 15:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-13  9:53 [PATCH] s390: vfio-ap: fix some comments Cornelia Huck
2019-11-13 12:15 ` Pierre Morel
2020-04-29 14:52   ` Tony Krowiak
2020-04-29 15:15     ` Tony Krowiak
2019-11-13 14:29 ` Halil Pasic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.