Distributed Replicated Block Device (DRBD) development
 help / color / mirror / Atom feed
* [Drbd-dev] [PATCH] drbd: Fix typo in comment
@ 2022-06-16 14:32 Xiang wangx
  2022-06-22 14:12 ` Christoph Böhmwalder
  0 siblings, 1 reply; 3+ messages in thread
From: Xiang wangx @ 2022-06-16 14:32 UTC (permalink / raw)
  To: axboe
  Cc: Xiang wangx, philipp.reisner, linux-kernel, linux-block,
	lars.ellenberg, drbd-dev

Delete the redundant word 'and'.

Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
---
 drivers/block/drbd/drbd_bitmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/drbd/drbd_bitmap.c b/drivers/block/drbd/drbd_bitmap.c
index 9e060e49b3f8..8afdde400e37 100644
--- a/drivers/block/drbd/drbd_bitmap.c
+++ b/drivers/block/drbd/drbd_bitmap.c
@@ -86,7 +86,7 @@ struct drbd_bitmap {
 
 	/* exclusively to be used by __al_write_transaction(),
 	 * drbd_bm_mark_for_writeout() and
-	 * and drbd_bm_write_hinted() -> bm_rw() called from there.
+	 * drbd_bm_write_hinted() -> bm_rw() called from there.
 	 */
 	unsigned int n_bitmap_hints;
 	unsigned int al_bitmap_hints[AL_UPDATES_PER_TRANSACTION];
-- 
2.36.1


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

* Re: [Drbd-dev] [PATCH] drbd: Fix typo in comment
  2022-06-16 14:32 [Drbd-dev] [PATCH] drbd: Fix typo in comment Xiang wangx
@ 2022-06-22 14:12 ` Christoph Böhmwalder
  2023-03-05  9:06   ` James W.
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Böhmwalder @ 2022-06-22 14:12 UTC (permalink / raw)
  To: Xiang wangx
  Cc: axboe, linux-kernel, philipp.reisner, linux-block, lars.ellenberg,
	drbd-dev

Am 16.06.22 um 16:32 schrieb Xiang wangx:
> Delete the redundant word 'and'.
> 
> Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
> ---
>  drivers/block/drbd/drbd_bitmap.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/block/drbd/drbd_bitmap.c b/drivers/block/drbd/drbd_bitmap.c
> index 9e060e49b3f8..8afdde400e37 100644
> --- a/drivers/block/drbd/drbd_bitmap.c
> +++ b/drivers/block/drbd/drbd_bitmap.c
> @@ -86,7 +86,7 @@ struct drbd_bitmap {
>  
>  	/* exclusively to be used by __al_write_transaction(),
>  	 * drbd_bm_mark_for_writeout() and
> -	 * and drbd_bm_write_hinted() -> bm_rw() called from there.
> +	 * drbd_bm_write_hinted() -> bm_rw() called from there.
>  	 */
>  	unsigned int n_bitmap_hints;
>  	unsigned int al_bitmap_hints[AL_UPDATES_PER_TRANSACTION];

Thanks!

Acked-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>

-- 
Christoph Böhmwalder
LINBIT | Keeping the Digital World Running
DRBD HA —  Disaster Recovery — Software defined Storage

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

* Re: [Drbd-dev] [PATCH] drbd: Fix typo in comment
  2022-06-22 14:12 ` Christoph Böhmwalder
@ 2023-03-05  9:06   ` James W.
  0 siblings, 0 replies; 3+ messages in thread
From: James W. @ 2023-03-05  9:06 UTC (permalink / raw)
  To: Christoph Böhmwalder
  Cc: axboe, Xiang wangx, linux-kernel, philipp.reisner, linux-block,
	lars.ellenberg, drbd-dev

[-- Attachment #1: Type: text/plain, Size: 1268 bytes --]

Reviewed-by: wjn740@gmail.com

Christoph Böhmwalder <christoph.boehmwalder@linbit.com> 于2022年6月22日周三
22:29写道:

> Am 16.06.22 um 16:32 schrieb Xiang wangx:
> > Delete the redundant word 'and'.
> >
> > Signed-off-by: Xiang wangx <wangxiang@cdjrlc.com>
> > ---
> >  drivers/block/drbd/drbd_bitmap.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/block/drbd/drbd_bitmap.c
> b/drivers/block/drbd/drbd_bitmap.c
> > index 9e060e49b3f8..8afdde400e37 100644
> > --- a/drivers/block/drbd/drbd_bitmap.c
> > +++ b/drivers/block/drbd/drbd_bitmap.c
> > @@ -86,7 +86,7 @@ struct drbd_bitmap {
> >
> >       /* exclusively to be used by __al_write_transaction(),
> >        * drbd_bm_mark_for_writeout() and
> > -      * and drbd_bm_write_hinted() -> bm_rw() called from there.
> > +      * drbd_bm_write_hinted() -> bm_rw() called from there.
> >        */
> >       unsigned int n_bitmap_hints;
> >       unsigned int al_bitmap_hints[AL_UPDATES_PER_TRANSACTION];
>
> Thanks!
>
> Acked-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
>
> --
> Christoph Böhmwalder
> LINBIT | Keeping the Digital World Running
> DRBD HA —  Disaster Recovery — Software defined Storage
>

[-- Attachment #2: Type: text/html, Size: 1899 bytes --]

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

end of thread, other threads:[~2023-03-05  9:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-16 14:32 [Drbd-dev] [PATCH] drbd: Fix typo in comment Xiang wangx
2022-06-22 14:12 ` Christoph Böhmwalder
2023-03-05  9:06   ` James W.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox