When opening O_DIRECT, tell the kernel to invalidate its cache
This commit is contained in:
parent
896545333b
commit
2e4934e986
@ -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:
|
||||
|
20
src/fs.rs
20
src/fs.rs
@ -260,11 +260,11 @@ 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);
|
||||
@ -311,11 +311,11 @@ 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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user