mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
eebf34a85c
Move null_blk driver code into the new sub-directory drivers/block/null_blk. Suggested-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com> Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
22 lines
455 B
C
22 lines
455 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* null_blk trace related helpers.
|
|
*
|
|
* Copyright (C) 2020 Western Digital Corporation or its affiliates.
|
|
*/
|
|
#include "trace.h"
|
|
|
|
/*
|
|
* Helper to use for all null_blk traces to extract disk name.
|
|
*/
|
|
const char *nullb_trace_disk_name(struct trace_seq *p, char *name)
|
|
{
|
|
const char *ret = trace_seq_buffer_ptr(p);
|
|
|
|
if (name && *name)
|
|
trace_seq_printf(p, "disk=%s, ", name);
|
|
trace_seq_putc(p, 0);
|
|
|
|
return ret;
|
|
}
|