All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] xen/blkfront: fix comment for need_copy
@ 2022-03-17 22:09 Dongli Zhang
  2022-03-18  0:27 ` Chaitanya Kulkarni
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Dongli Zhang @ 2022-03-17 22:09 UTC (permalink / raw)
  To: linux-block, xen-devel
  Cc: boris.ostrovsky, jgross, sstabellini, roger.pau, axboe, linux-kernel

The 'need_copy' is set when rq_data_dir(req) returns WRITE, in order to
copy the written data to persistent page.

".need_copy = rq_data_dir(req) && info->feature_persistent,"

Signed-off-by: Dongli Zhang <dongli.zhang@oracle.com>
---
 drivers/block/xen-blkfront.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
index 03b5fb341e58..dbc32d0a4b1a 100644
--- a/drivers/block/xen-blkfront.c
+++ b/drivers/block/xen-blkfront.c
@@ -576,7 +576,7 @@ struct setup_rw_req {
 	struct blkif_request *ring_req;
 	grant_ref_t gref_head;
 	unsigned int id;
-	/* Only used when persistent grant is used and it's a read request */
+	/* Only used when persistent grant is used and it's a write request */
 	bool need_copy;
 	unsigned int bvec_off;
 	char *bvec_data;
-- 
2.17.1


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

* Re: [PATCH 1/1] xen/blkfront: fix comment for need_copy
  2022-03-17 22:09 [PATCH 1/1] xen/blkfront: fix comment for need_copy Dongli Zhang
@ 2022-03-18  0:27 ` Chaitanya Kulkarni
  2022-03-21 10:05 ` Roger Pau Monné
  2022-03-21 12:31 ` Jens Axboe
  2 siblings, 0 replies; 5+ messages in thread
From: Chaitanya Kulkarni @ 2022-03-18  0:27 UTC (permalink / raw)
  To: Dongli Zhang, linux-block, xen-devel
  Cc: boris.ostrovsky, jgross, sstabellini, roger.pau, axboe, linux-kernel

On 3/17/22 3:09 PM, Dongli Zhang wrote:
> The 'need_copy' is set when rq_data_dir(req) returns WRITE, in order to
> copy the written data to persistent page.
> 
> ".need_copy = rq_data_dir(req) && info->feature_persistent,"
> 
> Signed-off-by: Dongli Zhang <dongli.zhang@oracle.com>
> ---

Looks good.

Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>

-ck



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

* Re: [PATCH 1/1] xen/blkfront: fix comment for need_copy
  2022-03-17 22:09 [PATCH 1/1] xen/blkfront: fix comment for need_copy Dongli Zhang
  2022-03-18  0:27 ` Chaitanya Kulkarni
@ 2022-03-21 10:05 ` Roger Pau Monné
  2022-03-21 10:26   ` Juergen Gross
  2022-03-21 12:31 ` Jens Axboe
  2 siblings, 1 reply; 5+ messages in thread
From: Roger Pau Monné @ 2022-03-21 10:05 UTC (permalink / raw)
  To: Dongli Zhang
  Cc: linux-block, xen-devel, boris.ostrovsky, jgross, sstabellini,
	axboe, linux-kernel

On Thu, Mar 17, 2022 at 03:09:30PM -0700, Dongli Zhang wrote:
> The 'need_copy' is set when rq_data_dir(req) returns WRITE, in order to
> copy the written data to persistent page.
> 
> ".need_copy = rq_data_dir(req) && info->feature_persistent,"

I would also add:

Fixes: c004a6fe0c40 ('block/xen-blkfront: Make it running on 64KB page granularity')

> Signed-off-by: Dongli Zhang <dongli.zhang@oracle.com>

Acked-by: Roger Pau Monné <roger.pau@citrix.com>

Albeit I have one nit since you are already changing the line.

> ---
>  drivers/block/xen-blkfront.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
> index 03b5fb341e58..dbc32d0a4b1a 100644
> --- a/drivers/block/xen-blkfront.c
> +++ b/drivers/block/xen-blkfront.c
> @@ -576,7 +576,7 @@ struct setup_rw_req {
>  	struct blkif_request *ring_req;
>  	grant_ref_t gref_head;
>  	unsigned int id;
> -	/* Only used when persistent grant is used and it's a read request */
> +	/* Only used when persistent grant is used and it's a write request */

While there you might want to adjust the comment to:

"... persistent grants are used ..."

Thanks, Roger.

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

* Re: [PATCH 1/1] xen/blkfront: fix comment for need_copy
  2022-03-21 10:05 ` Roger Pau Monné
@ 2022-03-21 10:26   ` Juergen Gross
  0 siblings, 0 replies; 5+ messages in thread
From: Juergen Gross @ 2022-03-21 10:26 UTC (permalink / raw)
  To: Roger Pau Monné, Dongli Zhang
  Cc: linux-block, xen-devel, boris.ostrovsky, sstabellini, axboe,
	linux-kernel


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

On 21.03.22 11:05, Roger Pau Monné wrote:
> On Thu, Mar 17, 2022 at 03:09:30PM -0700, Dongli Zhang wrote:
>> The 'need_copy' is set when rq_data_dir(req) returns WRITE, in order to
>> copy the written data to persistent page.
>>
>> ".need_copy = rq_data_dir(req) && info->feature_persistent,"
> 
> I would also add:
> 
> Fixes: c004a6fe0c40 ('block/xen-blkfront: Make it running on 64KB page granularity')

Hmm, a "Fixes:" tag for a change in a comment?

This might generate additional work e.g. for downstreams (we at SUSE have
scripts checking "Fixes:" tags and require such changes to be applied to
kernels having the fixed patch applied).

That said I'd prefer not having a "Fixes:" tag for such changes, but maybe
this is just due to the fact that it would be me having to apply this
patch to the SUSE kernels...


Juergen

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

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

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

* Re: [PATCH 1/1] xen/blkfront: fix comment for need_copy
  2022-03-17 22:09 [PATCH 1/1] xen/blkfront: fix comment for need_copy Dongli Zhang
  2022-03-18  0:27 ` Chaitanya Kulkarni
  2022-03-21 10:05 ` Roger Pau Monné
@ 2022-03-21 12:31 ` Jens Axboe
  2 siblings, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2022-03-21 12:31 UTC (permalink / raw)
  To: linux-block, Dongli Zhang, xen-devel
  Cc: boris.ostrovsky, roger.pau, linux-kernel, jgross, sstabellini

On Thu, 17 Mar 2022 15:09:30 -0700, Dongli Zhang wrote:
> The 'need_copy' is set when rq_data_dir(req) returns WRITE, in order to
> copy the written data to persistent page.
> 
> ".need_copy = rq_data_dir(req) && info->feature_persistent,"
> 
> 

Applied, thanks!

[1/1] xen/blkfront: fix comment for need_copy
      commit: 08719dd9176b4c55f547bd11812fd6cc35907d37

Best regards,
-- 
Jens Axboe



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

end of thread, other threads:[~2022-03-21 12:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-17 22:09 [PATCH 1/1] xen/blkfront: fix comment for need_copy Dongli Zhang
2022-03-18  0:27 ` Chaitanya Kulkarni
2022-03-21 10:05 ` Roger Pau Monné
2022-03-21 10:26   ` Juergen Gross
2022-03-21 12:31 ` Jens Axboe

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.