linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue
@ 2019-01-25  2:01 Marcos Paulo de Souza
  2019-01-25  3:50 ` Bart Van Assche
  2019-02-10 15:24 ` Jens Axboe
  0 siblings, 2 replies; 4+ messages in thread
From: Marcos Paulo de Souza @ 2019-01-25  2:01 UTC (permalink / raw)
  To: linux-kernel; +Cc: Marcos Paulo de Souza, Jens Axboe, open list:BLOCK LAYER

Since 4cf6324b17e9, a portion of function blk_cleanup_queue was moved to
a newly created function called blk_exit_queue, including the call of
blkcg_exit_queue. So, adjust the documenation according.

Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
---
 block/blk-cgroup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
index 2bed5725aa03..77f37ef8ef06 100644
--- a/block/blk-cgroup.c
+++ b/block/blk-cgroup.c
@@ -1269,7 +1269,7 @@ void blkcg_drain_queue(struct request_queue *q)
  * blkcg_exit_queue - exit and release blkcg part of request_queue
  * @q: request_queue being released
  *
- * Called from blk_release_queue().  Responsible for exiting blkcg part.
+ * Called from blk_exit_queue().  Responsible for exiting blkcg part.
  */
 void blkcg_exit_queue(struct request_queue *q)
 {
-- 
2.16.4


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

* Re: [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue
  2019-01-25  2:01 [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue Marcos Paulo de Souza
@ 2019-01-25  3:50 ` Bart Van Assche
  2019-02-09 18:32   ` Marcos Paulo de Souza
  2019-02-10 15:24 ` Jens Axboe
  1 sibling, 1 reply; 4+ messages in thread
From: Bart Van Assche @ 2019-01-25  3:50 UTC (permalink / raw)
  To: Marcos Paulo de Souza, linux-kernel; +Cc: Jens Axboe, open list:BLOCK LAYER

On 1/24/19 6:01 PM, Marcos Paulo de Souza wrote:
> Since 4cf6324b17e9, a portion of function blk_cleanup_queue was moved to
> a newly created function called blk_exit_queue, including the call of
> blkcg_exit_queue. So, adjust the documenation according.
> 
> Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
> ---
>   block/blk-cgroup.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
> index 2bed5725aa03..77f37ef8ef06 100644
> --- a/block/blk-cgroup.c
> +++ b/block/blk-cgroup.c
> @@ -1269,7 +1269,7 @@ void blkcg_drain_queue(struct request_queue *q)
>    * blkcg_exit_queue - exit and release blkcg part of request_queue
>    * @q: request_queue being released
>    *
> - * Called from blk_release_queue().  Responsible for exiting blkcg part.
> + * Called from blk_exit_queue().  Responsible for exiting blkcg part.
>    */
>   void blkcg_exit_queue(struct request_queue *q)
>   {

Reviewed-by: Bart Van Assche <bvanassche@acm.org>

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

* Re: [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue
  2019-01-25  3:50 ` Bart Van Assche
@ 2019-02-09 18:32   ` Marcos Paulo de Souza
  0 siblings, 0 replies; 4+ messages in thread
From: Marcos Paulo de Souza @ 2019-02-09 18:32 UTC (permalink / raw)
  To: Bart Van Assche, linux-kernel; +Cc: Jens Axboe, open list:BLOCK LAYER

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

Ping :)

On 1/25/19 1:50 AM, Bart Van Assche wrote:
> On 1/24/19 6:01 PM, Marcos Paulo de Souza wrote:
>> Since 4cf6324b17e9, a portion of function blk_cleanup_queue was moved to
>> a newly created function called blk_exit_queue, including the call of
>> blkcg_exit_queue. So, adjust the documenation according.
>>
>> Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
>> ---
>>   block/blk-cgroup.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
>> index 2bed5725aa03..77f37ef8ef06 100644
>> --- a/block/blk-cgroup.c
>> +++ b/block/blk-cgroup.c
>> @@ -1269,7 +1269,7 @@ void blkcg_drain_queue(struct request_queue *q)
>>    * blkcg_exit_queue - exit and release blkcg part of request_queue
>>    * @q: request_queue being released
>>    *
>> - * Called from blk_release_queue().  Responsible for exiting blkcg part.
>> + * Called from blk_exit_queue().  Responsible for exiting blkcg part.
>>    */
>>   void blkcg_exit_queue(struct request_queue *q)
>>   {
> 
> Reviewed-by: Bart Van Assche <bvanassche@acm.org>

[-- Attachment #2: pEpkey.asc --]
[-- Type: application/pgp-keys, Size: 1817 bytes --]

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

* Re: [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue
  2019-01-25  2:01 [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue Marcos Paulo de Souza
  2019-01-25  3:50 ` Bart Van Assche
@ 2019-02-10 15:24 ` Jens Axboe
  1 sibling, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2019-02-10 15:24 UTC (permalink / raw)
  To: Marcos Paulo de Souza, linux-kernel; +Cc: open list:BLOCK LAYER

On 1/24/19 7:01 PM, Marcos Paulo de Souza wrote:
> Since 4cf6324b17e9, a portion of function blk_cleanup_queue was moved to
> a newly created function called blk_exit_queue, including the call of
> blkcg_exit_queue. So, adjust the documenation according.

Applied, thanks.

-- 
Jens Axboe


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

end of thread, other threads:[~2019-02-10 15:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-25  2:01 [PATCH] blk-cgroup: Fix doc related to blkcg_exit_queue Marcos Paulo de Souza
2019-01-25  3:50 ` Bart Van Assche
2019-02-09 18:32   ` Marcos Paulo de Souza
2019-02-10 15:24 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).