blob: f063cb9065b758d42dce39657934615a15d9be1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
QEMU fails to honor O_TMPFILE
When making a call like
open("/tmp", O_TMPFILE | O_RDWR);
under QEMU, we ged -EISDIR.
Under any kernel 3.11 or later, we are supposed to get an unnamed file in /tmp. In case the filesystem for /tmp does not support unnamed files, we are supposed to get EOPNOTSUPP.
[I don't know the QEMU version, since this happened in a system I don't have access to]
|