Closed GoogleCodeExporter closed 9 years ago
1. You really shouldn't be using direct_io as far as possible because it's sort
of an abomination.
2. direct_io means that you are implicitly agreeing to have the kernel not care
about the file size (no buffer cache
either)--it's mainly for synthetic file systems like /proc.
3. You also lose mmap() if you use direct_io. Therefore, you can't execute
programs off a file system that's
mounted with direct_io.
Original comment by si...@gmail.com
on 5 Jul 2007 at 5:42
Not a bug: if file size matters, do not use direct_io.
Original comment by si...@gmail.com
on 5 Jul 2007 at 6:22
Original issue reported on code.google.com by
fkaash...@gmail.com
on 5 Jul 2007 at 3:46