blktrace: make function blk_trace_bio_get_cgid() static
authorWang Hai <wanghai38@huawei.com>
Mon, 7 Sep 2020 14:06:52 +0000 (22:06 +0800)
committerJens Axboe <axboe@kernel.dk>
Tue, 8 Sep 2020 02:11:15 +0000 (20:11 -0600)
The sparse tool complains as follows:

kernel/trace/blktrace.c:796:5: warning:
 symbol 'blk_trace_bio_get_cgid' was not declared. Should it be static?

This function is not used outside of blktrace.c, so this commit
marks it static.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
kernel/trace/blktrace.c

index 4b3a42f..c0887f3 100644 (file)
@@ -793,7 +793,7 @@ static u64 blk_trace_bio_get_cgid(struct request_queue *q, struct bio *bio)
        return cgroup_id(bio_blkcg(bio)->css.cgroup);
 }
 #else
-u64 blk_trace_bio_get_cgid(struct request_queue *q, struct bio *bio)
+static u64 blk_trace_bio_get_cgid(struct request_queue *q, struct bio *bio)
 {
        return 0;
 }