From d84d90108a1de9caf7636adcc523d451a56dd275 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 24 Feb 2021 07:12:47 -0700 Subject: helpers: prefix any helper with t_ instead of io_uring_ As brought up in an issue, this makes it confusing as to what could potentially be liburing functions. Make it clear that these are test helpers, hence use the t_ prefix for them. Signed-off-by: Jens Axboe --- test/madvise.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/madvise.c') diff --git a/test/madvise.c b/test/madvise.c index c06465f..89057af 100644 --- a/test/madvise.c +++ b/test/madvise.c @@ -104,7 +104,7 @@ static int test_madvise(struct io_uring *ring, const char *filename) return 1; } - buf = io_uring_malloc(FILE_SIZE); + buf = t_malloc(FILE_SIZE); ptr = mmap(NULL, FILE_SIZE, PROT_READ, MAP_PRIVATE, fd, 0); if (ptr == MAP_FAILED) { @@ -159,7 +159,7 @@ int main(int argc, char *argv[]) fname = argv[1]; } else { fname = ".madvise.tmp"; - io_uring_create_file(fname, FILE_SIZE); + t_create_file(fname, FILE_SIZE); } if (io_uring_queue_init(8, &ring, 0)) { -- cgit v1.2.3