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

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_pool.c 669 * dsl_dir_destroy_check() will fail if there are unexpected holds.
957 * Walk through the pool-wide zap object of temporary snapshot user holds
967 nvlist_t *holds; local
973 holds = fnvlist_alloc();
984 if (nvlist_lookup_nvlist(holds, za.za_name, &tags) != 0) {
987 fnvlist_add_nvlist(holds, za.za_name, tags);
993 dsl_dataset_user_release_tmp(dp, holds);
994 fnvlist_free(holds);
999 * Create the pool-wide zap object for storing temporary snapshot holds.
1027 * zap object for temporary holds might not exist yet
    [all...]
dsl_userhold.c 121 * reported if needed, such as when all holds fail.
197 zfs_dbgmsg("couldn't release holds on pool=%s "
203 zfs_dbgmsg("couldn't release holds on pool=%s "
217 dsl_onexit_hold_cleanup(spa_t *spa, nvlist_t *holds, minor_t minor)
221 if (minor == 0 || nvlist_empty(holds)) {
222 fnvlist_free(holds);
232 ca->zhca_holds = holds;
281 * holds is nvl of snapname -> holdname
286 * Holds for snapshots that don't exist will be skipped.
288 * If none of the snapshots for requested holds exist then ENOENT will b
442 nvlist_t *holds; local
    [all...]
dmu_tx.c 877 int holds = 0; local
893 holds++;
896 return (holds);
1213 * before processing the dnode holds, due to the
1264 * Add in 'tohold' to account for our dirty holds on this memory
1487 * Go through the transaction's hold list and remove holds on
1488 * associated dnodes, notifying waiters if no holds remain.
dbuf.c 315 int64_t holds; local
327 holds = refcount_count(&db->db_holds);
330 * Immediate eviction occurs when holds == dirtycnt.
331 * For normal eviction buffers, holds is zero on
336 * test the generic invariant that holds >= dirtycnt.
338 ASSERT3U(holds, >=, db->db_dirtycnt);
341 ASSERT3U(holds, >=, db->db_dirtycnt);
343 ASSERT3U(holds, >, 0);
2672 int64_t holds = refcount_add(&db->db_holds, tag); local
2673 ASSERT3S(holds, >, 1)
2727 int64_t holds; local
    [all...]
zfs_ioctl.c 1288 nvlist_t *holds; local
1291 error = nvlist_lookup_nvlist(innvl, "holds", &holds);
1295 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL;
1296 pair = nvlist_next_nvpair(holds, pair)) {
5466 * "holds" -> { snapname -> holdname (string), ... }
5480 nvlist_t *holds; local
5485 error = nvlist_lookup_nvlist(args, "holds", &holds);
5490 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL
    [all...]
  /src/external/cddl/osnet/dist/cmd/ztest/
ztest.c 4641 nvlist_t *snaps, *holds; local
4645 holds = fnvlist_alloc();
4646 fnvlist_add_boolean(holds, holdname);
4647 fnvlist_add_nvlist(snaps, snapname, holds);
4648 fnvlist_free(holds);
4668 nvlist_t *holds; local
4743 holds = fnvlist_alloc();
4744 fnvlist_add_string(holds, fullname, tag);
4745 error = dsl_dataset_user_hold(holds, 0, NULL);
4746 fnvlist_free(holds);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
gfortran.h 1047 gfc_linebuf holds a single line of source code and information
1546 gfc_expr_list *holds; member in struct:gfc_omp_assumptions
2184 /* This list holds information about all the data initializers in
2242 Holds -1 during resolution. */
2790 /* Holds a single equivalence member after processing. */
2799 /* Holds equivalence groups, after they have been processed. */

Completed in 46 milliseconds