When opening O_DIRECT, tell the kernel to invalidate its cache

This commit is contained in:
Brian Tarricone 2024-10-23 03:07:14 -07:00
parent 30de09b7d2
commit 5bd839e022
2 changed files with 13 additions and 10 deletions

View File

@ -21,6 +21,7 @@ To test from the cmdline:
echo "hello world" > ~/corrupt-fs/hello.txt
cat ~/corrupt-fs/hello.txt # returns good data from fscache
dd if=~/corrupt-fs/hello.txt iflag=direct # returns bad data
cat ~/corrupt-fs/hello.txt # returns bad data
```
Limitations:

View File

@ -245,11 +245,12 @@ impl Filesystem for CorruptFs {
let open_file = OpenFile { ino, flags };
self.open_fds.insert(fh, OpenFd::File(open_file));
let mut o_flags = FOPEN_KEEP_CACHE;
if (flags & O_DIRECT) != 0 {
o_flags |= FOPEN_DIRECT_IO;
}
let o_flags =
if (flags & O_DIRECT) != 0 {
FOPEN_DIRECT_IO
} else {
FOPEN_KEEP_CACHE
};
reply.opened(fh, o_flags);
} else {
reply.error(ENOENT);
@ -296,11 +297,12 @@ impl Filesystem for CorruptFs {
};
self.open_fds.insert(fh, OpenFd::File(open_file));
let mut cr_flags = FOPEN_KEEP_CACHE;
if (flags & O_DIRECT) != 0 {
cr_flags |= FOPEN_DIRECT_IO;
}
let cr_flags =
if (flags & O_DIRECT) != 0 {
FOPEN_DIRECT_IO
} else {
FOPEN_KEEP_CACHE
};
reply.created(&TTL, &attr, 0, fh, cr_flags);
}
}