sys/vfs/hammer2: vnops need to return unix errno
commit3a3a7c0e9c80fbf0002f972e8a43e9e25bc6cc75
authorTomohiro Kusumi <tkusumi@netbsd.org>
Wed, 18 Oct 2023 03:01:07 +0000 (17 20:01 -0700)
committerTomohiro Kusumi <tkusumi@netbsd.org>
Wed, 18 Oct 2023 03:05:17 +0000 (17 20:05 -0700)
tree482b108c171d32537dcc91acb70e33f4afbe3c8e
parenta44776b2e76cf2f7785c07410679a378246889bc
sys/vfs/hammer2: vnops need to return unix errno

vnops that create a new inode essentially do the same thing using
hammer2_inode_create_normal() in frontend.

mknod and symlink are missing hammer2_error_to_errno() on failure.
mkdir and creat have this right.
sys/vfs/hammer2/hammer2_vnops.c