From c75f74fb4dce30811d5b4ed09f884c97972828f1 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 2 Nov 2017 08:55:44 -0600 Subject: [PATCH] filesetup: don't inline native_fallocate() The compiler will figure this out, and it isn't a performance hot path. Signed-off-by: Jens Axboe --- filesetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesetup.c b/filesetup.c index 6bc0b8bf..e7abac14 100644 --- a/filesetup.c +++ b/filesetup.c @@ -38,7 +38,7 @@ static inline void clear_error(struct thread_data *td) td->verror[0] = '\0'; } -static inline int native_fallocate(struct thread_data *td, struct fio_file *f) +static int native_fallocate(struct thread_data *td, struct fio_file *f) { bool success; -- 2.25.1