Module Name: src Committed By: riastradh Date: Mon Mar 10 21:21:20 UTC 2025
Modified Files: src/usr.sbin/puffs/mount_9p: ninepuffs.c node.c Log Message: mount_9p(8): Implement pathconf stub. Doesn't actually do anything useful -- it just returns EINVAL as pathconf is supposed to for unknown pathconf key names; by default, it will return ENOTSUPP, which leads applications like ls(1) to print: ls: /mnt/.git: Operation not supported This is a little silly; perhaps puffs should use EINVAL itself instead of ENOTSUPP. But this change is less risky for now. PR bin/58768: mount_9p: missing pathconf(2) support To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/usr.sbin/puffs/mount_9p/ninepuffs.c cvs rdiff -u -r1.31 -r1.32 src/usr.sbin/puffs/mount_9p/node.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.