Discussion from the patch in Gerrit between Bobijam and I:
I observed that the previous test failure due to that VFS passes O_NOCTTY (0104501) down to ll_file_open() even when it tries to create a file.
Do you know where the O_NOCTTY flag is coming from? Is it glibc or something? I don't see it in the kernel. I guess with flags 0104501 then none of the other old flags are making it through the VFS.
The only other idea I have is for setstripe to create a file with mknod() and then setxattr() on the file before opening it. This increases the RPC count but avoids the need for a special flag.
strace touch /mnt/lustre/file
shows
... open("/mnt/lustre/file", O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK, 0666) = 3 ...
"echo string > lustre_file" or "cat oldfile > lustre_file" would call ll_file_open() with flags as 0101101
Any ideas on how to solve this problem cleanly?
We could check for the absence of O_NODELAY, but that isn't very robust if O_NOCTTY is used by some other application (googling showed O_NOCTTY used by a few apps). I figured O_NOCTTY would only be used by applications that know they are opening a tty device, but I guess it is also used by apps that might open random files and want to be safe in case they do open a tty device.
A similar mechanism would be to check a combination of flags. The old 0100000000 flag is used by FMODE_NONOTIFY, which is masked off by the kernel 2.6.36+ before Lustre has a chance to see it (LU-812, http://review.whamcloud.com/3779).
There is also the option of actually trying to get a reserved flag in the upstream kernel, but I expect a reply like "you don't need that, system calls are cheap" that isn't really helpful for network filesystems where system calls are expensive.
I'm wondering if we could use an unlikely combination of flags to be O_LOV_DELAY_CREATE? Something like (O_NOCTTY | FASYNC)? The FASYNC flag doesn't appear to be used very commonly, but I'm not totally sure if it is 100% safe. I updated the patch to try this out at least.
Patch landed to Master. Will land in upcoming Releases as well.