Message ID | 20240114191056.6992-1-ndchorley@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | block: Correct a documentation comment in blk-cgroup.c | expand |
On Sun, 14 Jan 2024 19:10:56 +0000, Nicky Chorley wrote: > Commit 99e603874366 > ("blk-cgroup: pass a gendisk to the blkg allocation helpers") changed > blkg_alloc() to take a struct gendisk instead of a struct request_queue, > but the documentation comment still referred to q. > > So, update that comment to refer to disk instead and fix a typo. > > [...] Applied, thanks! [1/1] block: Correct a documentation comment in blk-cgroup.c commit: 521277d12b5a75982d4f642d2ee22db8d7f986dd Best regards,
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index e303fd317313..ff93c385ba5a 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c @@ -300,7 +300,7 @@ static inline struct blkcg *blkcg_parent(struct blkcg *blkcg) * @disk: gendisk the new blkg is associated with * @gfp_mask: allocation mask to use * - * Allocate a new blkg assocating @blkcg and @q. + * Allocate a new blkg associating @blkcg and @disk. */ static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct gendisk *disk, gfp_t gfp_mask)
Commit 99e603874366 ("blk-cgroup: pass a gendisk to the blkg allocation helpers") changed blkg_alloc() to take a struct gendisk instead of a struct request_queue, but the documentation comment still referred to q. So, update that comment to refer to disk instead and fix a typo. Signed-off-by: Nicky Chorley <ndchorley@gmail.com> --- block/blk-cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)