X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=filesetup.c;h=9d42deb02d47dbab2866fcb9d2512409e60aa1b5;hp=5b96c66fa739d0af845fab987452d957542175cc;hb=ecc314ba7c5f02b7e90ac1dfbce1a74cd4e6d6fe;hpb=03e20d687566753b90383571e5e152c5142bdffd diff --git a/filesetup.c b/filesetup.c index 5b96c66f..9d42deb0 100644 --- a/filesetup.c +++ b/filesetup.c @@ -11,6 +11,7 @@ #include "fio.h" #include "smalloc.h" #include "filehash.h" +#include "os/os.h" static int root_warn; @@ -241,7 +242,7 @@ static int bdev_size(struct thread_data *td, struct fio_file *f) return 1; } - r = blockdev_size(f->fd, &bytes); + r = blockdev_size(f, &bytes); if (r) { td_verror(td, r, "blockdev_size"); printf("fd is %d\n", f->fd); @@ -273,7 +274,7 @@ static int char_size(struct thread_data *td, struct fio_file *f) return 1; } - r = chardev_size(f->fd, &bytes); + r = chardev_size(f, &bytes); if (r) { td_verror(td, r, "chardev_size"); goto err; @@ -351,9 +352,9 @@ static int __file_invalidate_cache(struct thread_data *td, struct fio_file *f, (void) posix_madvise(f->mmap_ptr, f->mmap_sz, FIO_MADV_FREE); #endif } else if (f->filetype == FIO_TYPE_FILE) { - ret = fadvise(f->fd, off, len, POSIX_FADV_DONTNEED); + ret = posix_fadvise(f->fd, off, len, POSIX_FADV_DONTNEED); } else if (f->filetype == FIO_TYPE_BD) { - ret = blockdev_invalidate_cache(f->fd); + ret = blockdev_invalidate_cache(f); if (ret < 0 && errno == EACCES && geteuid()) { if (!root_warn) { log_err("fio: only root may flush block " @@ -885,7 +886,9 @@ static void get_file_type(struct fio_file *f) f->filetype = FIO_TYPE_FILE; if (!stat(f->file_name, &sb)) { - if (S_ISBLK(sb.st_mode)) + /* \\.\ is the device namespace in Windows, where every file is + * a block device */ + if (S_ISBLK(sb.st_mode) || strncmp(f->file_name, "\\\\.\\", 4) == 0) f->filetype = FIO_TYPE_BD; else if (S_ISCHR(sb.st_mode)) f->filetype = FIO_TYPE_CHAR;