2005-11-02 18:17:59

by Adrian Bunk

[permalink] [raw]
Subject: [2.6 patch] drivers/block/ll_rw_blk.c: make a function static

This patch makes a needlessly global function static.


Signed-off-by: Adrian Bunk <[email protected]>

--- linux-2.6.14-rc5-mm1-full/drivers/block/ll_rw_blk.c.old 2005-11-02 18:41:30.000000000 +0100
+++ linux-2.6.14-rc5-mm1-full/drivers/block/ll_rw_blk.c 2005-11-02 18:41:59.000000000 +0100
@@ -2314,9 +2314,9 @@
* Insert a fully prepared request at the back of the io scheduler queue
* for execution. Don't wait for completion.
*/
-void blk_execute_rq_nowait(request_queue_t *q, struct gendisk *bd_disk,
- struct request *rq, int at_head,
- void (*done)(struct request *))
+static void blk_execute_rq_nowait(request_queue_t *q, struct gendisk *bd_disk,
+ struct request *rq, int at_head,
+ void (*done)(struct request *))
{
int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;



2005-11-03 07:39:30

by Jens Axboe

[permalink] [raw]
Subject: Re: [2.6 patch] drivers/block/ll_rw_blk.c: make a function static

On Wed, Nov 02 2005, Adrian Bunk wrote:
> This patch makes a needlessly global function static.

Applied, but please make the subject (and body) more descriptive in the
future.

--
Jens Axboe