Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/fs/zut/
H A Dzut.c282 zut_lookup_t *zl; in zut_lookup() local
292 zl = kmem_zalloc(sizeof (zut_lookup_t), KM_SLEEP); in zut_lookup()
294 error = ddi_copyin((void *)arg, zl, sizeof (zut_lookup_t), iflag); in zut_lookup()
301 zl->zl_retcode = zut_open_dir(zl->zl_dir, NULL, cr, flags, &rpn, &dvn); in zut_lookup()
302 if (zl->zl_retcode) in zut_lookup()
305 if (zl->zl_reqflags & ZUT_IGNORECASE) in zut_lookup()
308 zl->zl_retcode = VOP_LOOKUP(dvn, zl->zl_file, &fvn, NULL, flags, NULL, in zut_lookup()
309 cr, NULL, &zl->zl_deflags, &rpn); in zut_lookup()
310 if (zl->zl_retcode) in zut_lookup()
315 if (zl->zl_reqflags & ZUT_XATTR) { in zut_lookup()
[all …]
/titanic_50/usr/src/uts/common/fs/zfs/
H A Dzio.c347 zio_link_t *zl = cio->io_walk_link; in zio_walk_parents() local
350 zl = (zl == NULL) ? list_head(pl) : list_next(pl, zl); in zio_walk_parents()
351 cio->io_walk_link = zl; in zio_walk_parents()
353 if (zl == NULL) in zio_walk_parents()
356 ASSERT(zl->zl_child == cio); in zio_walk_parents()
357 return (zl->zl_parent); in zio_walk_parents()
363 zio_link_t *zl = pio->io_walk_link; in zio_walk_children() local
366 zl = (zl == NULL) ? list_head(cl) : list_next(cl, zl); in zio_walk_children()
367 pio->io_walk_link = zl; in zio_walk_children()
369 if (zl == NULL) in zio_walk_children()
[all …]
H A Dzfs_vnops.c3382 zfs_zlock_t *zl; in zfs_rename_unlock() local
3384 while ((zl = *zlpp) != NULL) { in zfs_rename_unlock()
3385 if (zl->zl_znode != NULL) in zfs_rename_unlock()
3386 VN_RELE(ZTOV(zl->zl_znode)); in zfs_rename_unlock()
3387 rw_exit(zl->zl_rwlock); in zfs_rename_unlock()
3388 *zlpp = zl->zl_next; in zfs_rename_unlock()
3389 kmem_free(zl, sizeof (*zl)); in zfs_rename_unlock()
3402 zfs_zlock_t *zl; in zfs_rename_lock() local
3424 zfs_rename_unlock(&zl); in zfs_rename_lock()
3439 zl = kmem_alloc(sizeof (*zl), KM_SLEEP); in zfs_rename_lock()
[all …]
/titanic_50/usr/src/uts/common/os/
H A Dtlabel.c321 ts_label_t *zl; in getflabel() local
515 zl = zone->zone_slabel; in getflabel()
516 label_hold(zl); in getflabel()
518 return (zl); in getflabel()
/titanic_50/usr/src/lib/libm/common/m9x/
H A Dtgammal.c883 long double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
939 zl = x - (zh - 2.0L); in gam_n()
941 xl = zl * (zh + z1) - (xh - (zh * zh - one)); in gam_n()
945 wl = (zl * yy.h + z1 * yy.l) - (wh - zh * yy.h); in gam_n()
H A Dtgamma.c1408 double r1, r2, t2, z, xh, xl, yh, yl, zh, z1, z2, zl, x5, wh, wl; in gam_n() local
1466 zl = x - (zh - 2.0); in gam_n()
1469 xl = zl * (z2 + zh * (z1 + zh)) - (xh - zh * (zh * zh - one)); in gam_n()
/titanic_50/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c2111 zio_link_t zl; in zio_child_cb() local
2115 if (mdb_vread(&zl, sizeof (zl), addr) == -1) { in zio_child_cb()
2121 ziop = (uintptr_t)zl.zl_parent; in zio_child_cb()
2123 ziop = (uintptr_t)zl.zl_child; in zio_child_cb()