change os_trim() prototype not to use int fd
[fio.git] / os / os-freebsd.h
index e6da286ea264f92fa2ed4e08d283c3bf0e4350c5..4a7cdeb7daaf2cef234c5a0c0ec551c7e72e4dad 100644 (file)
@@ -117,7 +117,7 @@ static inline unsigned long long get_fs_free_size(const char *path)
        return ret;
 }
 
-static inline int os_trim(int fd, unsigned long long start,
+static inline int os_trim(struct fio_file *f, unsigned long long start,
                          unsigned long long len)
 {
        off_t range[2];
@@ -125,7 +125,7 @@ static inline int os_trim(int fd, unsigned long long start,
        range[0] = start;
        range[1] = len;
 
-       if (!ioctl(fd, DIOCGDELETE, range))
+       if (!ioctl(f->fd, DIOCGDELETE, range))
                return 0;
 
        return errno;