From: Jens Axboe Date: Thu, 2 Nov 2017 14:55:44 +0000 (-0600) Subject: filesetup: don't inline native_fallocate() X-Git-Tag: fio-3.2~12 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=c75f74fb4dce30811d5b4ed09f884c97972828f1 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 --- 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;