Fix build on x86-64 distros without __NR_pread64/pwrite64
[fio.git] / engines / splice.c
index a20f4e034eb76e807c30e046294780b61756c757..59bf7e4f8ed19660d694a4ebf3de0718d27fe583 100644 (file)
@@ -1,5 +1,8 @@
 /*
- * splice io engine
+ * splice engine
+ *
+ * IO engine that transfers data by doing splices to/from pipes and
+ * the files.
  *
  */
 #include <stdio.h>
@@ -162,6 +165,8 @@ static struct ioengine_ops ioengine = {
        .init           = fio_spliceio_init,
        .queue          = fio_spliceio_queue,
        .cleanup        = fio_spliceio_cleanup,
+       .open_file      = generic_open_file,
+       .close_file     = generic_close_file,
        .flags          = FIO_SYNCIO,
 };