Home | History | Annotate | Download | only in mount_psshfs

Lines Matching refs:psshfs

1 /*	$NetBSD: psshfs.c,v 1.67 2021/12/05 08:11:39 msaitoh Exp $	*/
29 * psshfs: puffs sshfs
31 * psshfs implements sshfs functionality on top of puffs making it
34 * psshfs can execute multiple operations in "parallel" by using the
44 __RCSID("$NetBSD: psshfs.c,v 1.67 2021/12/05 08:11:39 msaitoh Exp $");
64 #include "psshfs.h"
251 PUFFSOP_SET(pops, psshfs, fs, unmount);
253 PUFFSOP_SET(pops, psshfs, fs, statvfs);
254 PUFFSOP_SET(pops, psshfs, fs, nodetofh);
255 PUFFSOP_SET(pops, psshfs, fs, fhtonode);
257 PUFFSOP_SET(pops, psshfs, node, lookup);
258 PUFFSOP_SET(pops, psshfs, node, create);
259 PUFFSOP_SET(pops, psshfs, node, open);
260 PUFFSOP_SET(pops, psshfs, node, inactive);
261 PUFFSOP_SET(pops, psshfs, node, readdir);
262 PUFFSOP_SET(pops, psshfs, node, getattr);
263 PUFFSOP_SET(pops, psshfs, node, setattr);
264 PUFFSOP_SET(pops, psshfs, node, mkdir);
265 PUFFSOP_SET(pops, psshfs, node, remove);
266 PUFFSOP_SET(pops, psshfs, node, readlink);
267 PUFFSOP_SET(pops, psshfs, node, rmdir);
268 PUFFSOP_SET(pops, psshfs, node, symlink);
269 PUFFSOP_SET(pops, psshfs, node, rename);
270 PUFFSOP_SET(pops, psshfs, node, read);
271 PUFFSOP_SET(pops, psshfs, node, write);
272 PUFFSOP_SET(pops, psshfs, node, reclaim);
274 pu = puffs_init(pops, argv[0], "psshfs", &pctx, pflags);