Home
last modified time | relevance | path

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

/freebsd/sys/compat/linux/
H A Dlinux_file.c447 int resid, linuxreclen; /* Linux-format */ in linux_getdents() local
476 linuxreclen = LINUX_RECLEN(bdp->d_namlen); in linux_getdents()
481 if (resid < linuxreclen) { in linux_getdents()
489 linux_dirent->d_reclen = linuxreclen; in linux_getdents()
493 lbuf[linuxreclen - 1] = bdp->d_type; in linux_getdents()
495 linuxreclen - offsetof(struct l_dirent, d_name)-1); in linux_getdents()
496 error = copyout(linux_dirent, outp, linuxreclen); in linux_getdents()
499 retval += linuxreclen; in linux_getdents()
500 outp += linuxreclen; in linux_getdents()
501 resid -= linuxreclen; in linux_getdents()
[all …]