2020-07-31 01:45:23

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH 0/7] block: delete or fix duplicated words

Drop doubled words or fix them to what they should be.
Also fix a few typos and kernel-doc notation.


Cc: Jens Axboe <[email protected]>
Cc: [email protected]


block/bfq-iosched.c | 2 +-
block/bio.c | 4 ++--
block/blk-mq-sched.c | 2 +-
block/blk-mq.c | 2 +-
block/blk-timeout.c | 2 +-
block/elevator.c | 4 ++--
block/genhd.c | 6 +++---
7 files changed, 11 insertions(+), 11 deletions(-)


2020-07-31 01:45:27

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH 5/7] block: blk-mq: delete duplicated word

Drop the repeated word "the".

Signed-off-by: Randy Dunlap <[email protected]>
Cc: Jens Axboe <[email protected]>
Cc: [email protected]
---
block/blk-mq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200730.orig/block/blk-mq.c
+++ linux-next-20200730/block/blk-mq.c
@@ -388,7 +388,7 @@ retry:
/*
* Give up the CPU and sleep for a random short time to ensure
* that thread using a realtime scheduling class are migrated
- * off the the CPU, and thus off the hctx that is going away.
+ * off the CPU, and thus off the hctx that is going away.
*/
msleep(3);
goto retry;

2020-07-31 01:46:16

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH 1/7] block: bfq-iosched: fix duplicated word

Change "at at" to "at a".

Signed-off-by: Randy Dunlap <[email protected]>
Cc: Jens Axboe <[email protected]>
Cc: [email protected]
---
block/bfq-iosched.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200730.orig/block/bfq-iosched.c
+++ linux-next-20200730/block/bfq-iosched.c
@@ -4714,7 +4714,7 @@ static struct request *__bfq_dispatch_re
* some unlucky request wait for as long as the device
* wishes.
*
- * Of course, serving one request at at time may cause loss of
+ * Of course, serving one request at a time may cause loss of
* throughput.
*/
if (bfqd->strict_guarantees && bfqd->rq_in_driver > 0)

2020-07-31 22:30:47

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH 0/7] block: delete or fix duplicated words

On 7/30/20 7:42 PM, Randy Dunlap wrote:
> Drop doubled words or fix them to what they should be.
> Also fix a few typos and kernel-doc notation.

Applied, thanks.

--
Jens Axboe