CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2013/03/27 20:08:39
Modified files:
sys/isofs/cd9660: cd9660_vnops.c
sys/isofs/udf : udf_vnops.c
sys/kern : spec_vnops.c vfs_vops.c
sys/miscfs/fifofs: fifo_vnops.c
sys/miscfs/procfs: procfs_vnops.c
sys/msdosfs : msdosfs_vnops.c
sys/ntfs : ntfs_vnops.c
sys/sys : unistd.h
sys/ufs/ufs : ufs_vnops.c
Log message:
Handle the pathconf _PC_PATH_MAX, _PC_PIPE_BUF, _PC_ASYNC_IO,
_PC_PRIO_IO, and _PC_SYNC_IO names in VOP_PATHCONF(), as they're
fs-independent for us. Since we don't support latter three on any
fs, we can also define the related _POSIX_{ASYNC,PRIO,SYNC}_IO
symbols in <unistd.h> (via sys/unistd.h) with value -1.
Also, zap pointless tty-only values from procfs(!).
ok beck@, deraadt@