[PATCH] Kill ->cur_off, always just lseek() in sync ->io_prep
diff --git a/fio-io.c b/fio-io.c
index 3183e8f..dee02ab 100644
--- a/fio-io.c
+++ b/fio-io.c
@@ -352,11 +352,9 @@
 
 static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
 {
-	if (td->cur_off != io_u->offset) {
-		if (lseek(td->fd, io_u->offset, SEEK_SET) == -1) {
-			td_verror(td, errno);
-			return 1;
-		}
+	if (lseek(td->fd, io_u->offset, SEEK_SET) == -1) {
+		td_verror(td, errno);
+		return 1;
 	}
 
 	return 0;