Commit a0186912 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

[PATCH] janitor: fix blk_init_queue() comments

blk_init_queue() has changed (it now returns queue), but the
comments were the same.

Also fixed a comment in blk_queue_end_tag.

From: Domen Puncer <domen@coderock.org>
parent cce66802
...@@ -587,7 +587,7 @@ int blk_queue_resize_tags(request_queue_t *q, int new_depth) ...@@ -587,7 +587,7 @@ int blk_queue_resize_tags(request_queue_t *q, int new_depth)
/** /**
* blk_queue_end_tag - end tag operations for a request * blk_queue_end_tag - end tag operations for a request
* @q: the request queue for the device * @q: the request queue for the device
* @tag: the tag that has completed * @rq: the request that has completed
* *
* Description: * Description:
* Typically called when end_that_request_first() returns 0, meaning * Typically called when end_that_request_first() returns 0, meaning
...@@ -1282,9 +1282,9 @@ request_queue_t *blk_alloc_queue(int gfp_mask) ...@@ -1282,9 +1282,9 @@ request_queue_t *blk_alloc_queue(int gfp_mask)
/** /**
* blk_init_queue - prepare a request queue for use with a block device * blk_init_queue - prepare a request queue for use with a block device
* @q: The &request_queue_t to be initialised
* @rfn: The function to be called to process requests that have been * @rfn: The function to be called to process requests that have been
* placed on the queue. * placed on the queue.
* @lock: Request queue spin lock
* *
* Description: * Description:
* If a block device wishes to use the standard request handling procedures, * If a block device wishes to use the standard request handling procedures,
...@@ -1304,6 +1304,9 @@ request_queue_t *blk_alloc_queue(int gfp_mask) ...@@ -1304,6 +1304,9 @@ request_queue_t *blk_alloc_queue(int gfp_mask)
* The queue spin lock must be held while manipulating the requests on the * The queue spin lock must be held while manipulating the requests on the
* request queue. * request queue.
* *
* Function returns a pointer to the initialized request queue, or NULL if
* it didn't succeed.
*
* Note: * Note:
* blk_init_queue() must be paired with a blk_cleanup_queue() call * blk_init_queue() must be paired with a blk_cleanup_queue() call
* when the block device is deactivated (such as at module unload). * when the block device is deactivated (such as at module unload).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment