I ran the following on the strace output:
grep " E" strace_flightcrew.log | grep -v ENOENT
and see EISDIR errors generated when files with a full directory path but no name are attempted to be opened. That seems suspicious to me. The ENOENT errors are expected, since stat is being used to see if a file or directory already exists before it is attempted to be created.
|