HomeSort by: relevance | last modified time | path
    Searched defs:ufh (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/ufs/ext2fs/
ext2fs_vfsops.c 1249 struct ufid ufh; local in function:ext2fs_fhtovp
1255 memcpy(&ufh, fhp, sizeof(struct ufid));
1257 if ((ufh.ufid_ino < EXT2_FIRSTINO && ufh.ufid_ino != EXT2_ROOTINO) ||
1258 ufh.ufid_ino >= fs->e2fs_ncg * fs->e2fs.e2fs_ipg)
1261 if ((error = VFS_VGET(mp, ufh.ufid_ino, lktype, &nvp)) != 0) {
1267 ip->i_e2fs_gen != ufh.ufid_gen) {
1284 struct ufid ufh; local in function:ext2fs_vptofh
1293 memset(&ufh, 0, sizeof(ufh));
    [all...]
  /src/sys/ufs/ffs/
ffs_vfsops.c 2337 struct ufid ufh; local in function:ffs_fhtovp
2343 memcpy(&ufh, fhp, sizeof(ufh));
2344 if ((error = ffs_checkrange(mp, ufh.ufid_ino)) != 0)
2347 return (ufs_fhtovp(mp, &ufh, lktype, vpp));
2358 struct ufid ufh; local in function:ffs_vptofh
2366 memset(&ufh, 0, sizeof(ufh));
2367 ufh.ufid_len = sizeof(struct ufid);
2368 ufh.ufid_ino = ip->i_number
    [all...]
  /src/sys/dev/pci/qat/
qat_ae.c 2258 struct uof_file_hdr *ufh; local in function:qat_aefw_uof_parse
2273 ufh = sc->sc_fw_uof;
2275 if (ufh->ufh_id != UOF_FID)
2277 if (ufh->ufh_min_ver != UOF_MIN_VER || ufh->ufh_maj_ver != UOF_MAJ_VER)
2280 if (ufh->ufh_max_chunks < ufh->ufh_num_chunks)
2282 if (size < sizeof(struct uof_file_chunk_hdr) * ufh->ufh_num_chunks)
2284 ufch = (struct uof_file_chunk_hdr *)(ufh + 1);
2287 for (i = 0; i < ufh->ufh_num_chunks; i++, ufch++)
    [all...]

Completed in 27 milliseconds