You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great, using mknod() to create a regular file does not only seem very weird, it's also not a portable use of mknod() according to POSIX:
POSIX.1-2001 says: "The only portable use of mknod() is to create a
FIFO-special file. If mode is not S_IFIFO or dev is not 0, the
behavior of mknod() is unspecified.
Hello,
When exporting through NFS with at least
nfs-kernel-server
from Debian stretch (1.3.4-2.1), it uses mknod() system call to create a file.Create a file locally (
touch /cg/test
):Create a file through an NFS mount point (
touch /mnt/cg/test
) :As far as I know, nfs was not using mknod() on Debian Wheezy (and jessie I think).
Is there a way to implement it (for S_IFREG flag only of course)?
The text was updated successfully, but these errors were encountered: