->getevents() should take unsigned args
[fio.git] / engines / skeleton_external.c
index 9000accf5e2d639f28f533993fed775519d3d2da..dec258c265e216463902e2bd5458e8d05f1f3f9e 100644 (file)
@@ -37,8 +37,8 @@ static struct io_u *fio_skeleton_event(struct thread_data *td, int event)
  * which may then be retrieved by calling the ->event() hook with the event
  * numbers. Required.
  */
  * which may then be retrieved by calling the ->event() hook with the event
  * numbers. Required.
  */
-static int fio_skeleton_getevents(struct thread_data *td, int min, int max,
-                                 struct timespec *t)
+static int fio_skeleton_getevents(struct thread_data *td, unsigned int min,
+                                 unsigned int max, struct timespec *t)
 {
        return 0;
 }
 {
        return 0;
 }
@@ -64,6 +64,11 @@ static int fio_skeleton_cancel(struct thread_data *td, struct io_u *io_u)
  */
 static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u)
 {
  */
 static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u)
 {
+       /*
+        * Double sanity check to catch errant write on a readonly setup
+        */
+       fio_ro_check(td, io_u);
+
        /*
         * Could return FIO_Q_QUEUED for a queued request,
         * FIO_Q_COMPLETED for a completed request, and FIO_Q_BUSY
        /*
         * Could return FIO_Q_QUEUED for a queued request,
         * FIO_Q_COMPLETED for a completed request, and FIO_Q_BUSY