Home
last modified time | relevance | path

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

/netbsd/src/sys/ufs/ext2fs/
Dext2fs_lookup.c81 struct dirent *ffsdir);
97 ext2fs_dirconv2ffs(struct m_ext2fs *fs, struct ext2fs_direct *e2dir, struct dirent *ffsdir) in ext2fs_dirconv2ffs() argument
99 memset(ffsdir, 0, sizeof(struct dirent)); in ext2fs_dirconv2ffs()
100 ffsdir->d_fileno = fs2h32(e2dir->e2d_ino); in ext2fs_dirconv2ffs()
101 ffsdir->d_namlen = e2dir->e2d_namlen; in ext2fs_dirconv2ffs()
104 ffsdir->d_type = ext2dt2dt(e2dir->e2d_type); in ext2fs_dirconv2ffs()
106 ffsdir->d_type = DT_UNKNOWN; in ext2fs_dirconv2ffs()
117 strncpy(ffsdir->d_name, e2dir->e2d_name, ffsdir->d_namlen); in ext2fs_dirconv2ffs()
123 ffsdir->d_reclen = _DIRENT_SIZE(ffsdir); in ext2fs_dirconv2ffs()