diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-09-07 13:38:03 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-09-07 13:38:03 -0600 |
commit | be23e6be4fadb723f925824f88fbaedbd3502251 (patch) | |
tree | 967eef4f4f919c58372e0b4f4200e7e61a2a9d1d /configure | |
parent | f248a52522789296001ddabbb6a79414ab49065b (diff) | |
download | fio-be23e6be4fadb723f925824f88fbaedbd3502251.tar.gz fio-be23e6be4fadb723f925824f88fbaedbd3502251.tar.bz2 |
Kill off old GUASI IO engine
This library never saw widespread use, and it hasn't been updated in
more than a decade. On top of that, the fio engine was broken for a
long time and nobody noticed.
Time to take it out behind the barn.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -1312,25 +1312,6 @@ fi print_config "Linux splice(2)" "$linux_splice" ########################################## -# GUASI probe -if test "$guasi" != "yes" ; then - guasi="no" -fi -cat > $TMPC << EOF -#include <guasi.h> -#include <guasi_syscalls.h> -int main(int argc, char **argv) -{ - guasi_t ctx = guasi_create(0, 0, 0); - return 0; -} -EOF -if compile_prog "" "-lguasi" "guasi"; then - guasi="yes" -fi -print_config "GUASI" "$guasi" - -########################################## # libnuma probe if test "$libnuma" != "yes" ; then libnuma="no" @@ -2847,9 +2828,6 @@ fi if test "$linux_splice" = "yes" ; then output_sym "CONFIG_LINUX_SPLICE" fi -if test "$guasi" = "yes" ; then - output_sym "CONFIG_GUASI" -fi if test "$libnuma_v2" = "yes" ; then output_sym "CONFIG_LIBNUMA" fi |