Home
last modified time | relevance | path

Searched refs:nwnames (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/fs/p9fs/
H A Dp9fs_subr.c348 uint16_t nwnames; in p9fs_get_fid() local
387 nwnames = p9fs_get_full_path(np, &wnames); in p9fs_get_fid()
393 KASSERT(nwnames != 0, ("%s: Directory of %s doesn't exist", __func__, np->inode.i_name)); in p9fs_get_fid()
397 while (i < nwnames) { in p9fs_get_fid()
398 l = MIN(nwnames - i, P9_MAXWELEM); in p9fs_get_fid()
H A Dp9_client.c727 p9_client_walk(struct p9_fid *oldfid, uint16_t nwnames, char **wnames, in p9_client_walk() argument
761 oldfid->fid, fid->fid, nwnames, in p9_client_walk()
762 wnames != NULL ? wnames[nwnames-1] : NULL); in p9_client_walk()
769 fid->fid, wnames, nwnames); in p9_client_walk()
783 if (nwqids != nwnames) { in p9_client_walk()
794 if (nwnames) in p9_client_walk()
H A Dp9_protocol.c442 uint16_t nwnames = va_arg(ap, int); in p9_buf_vwritef() local
444 error = buf_write(buf, &nwnames, sizeof(uint16_t)); in p9_buf_vwritef()
447 for (i = 0; i < nwnames; i++) { in p9_buf_vwritef()
H A Dp9_client.h132 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwnames,