Lines Matching defs:value

93 	ZTI_MODE_FIXED,			/* value is # of threads (min 1) */
94 ZTI_MODE_BATCH, /* cpu-intensive; value is ignored */
707 * If the bootfs property value is dsobj, clear it.
843 uint_t value = ztip->zti_value;
863 ASSERT3U(value, >=, 1);
864 value = MAX(value, 1);
870 value = zio_taskq_batch_pct;
876 zio_type_name[t], zio_taskq_types[q], mode, value);
895 tq = taskq_create_sysdc(name, value, 50, INT_MAX,
907 tq = taskq_create_proc(name, value, pri, 50,
1578 load_nvlist(spa_t *spa, uint64_t obj, nvlist_t **value)
1584 *value = NULL;
1597 error = nvlist_unpack(packed, nvsize, value, 0);
2011 * Find a value in the pool props object.
2021 * Find a value in the pool directory object.
2267 * value that will be returned by spa_version() since parsing the
2665 * An older version of ZFS overwrote the sentinel value, so
5688 spa_vdev_set_common(spa_t *spa, uint64_t guid, const char *value,
5705 if (strcmp(value, vd->vdev_path) != 0) {
5707 vd->vdev_path = spa_strdup(value);
5712 vd->vdev_fru = spa_strdup(value);
5714 } else if (strcmp(value, vd->vdev_fru) != 0) {
5716 vd->vdev_fru = spa_strdup(value);
6951 sysevent_value_t value;
6957 value.value_type = SE_DATA_TYPE_STRING;
6958 value.value.sv_string = spa_name(spa);
6959 if (sysevent_add_attr(&attr, ZFS_EV_POOL_NAME, &value, SE_SLEEP) != 0)
6962 value.value_type = SE_DATA_TYPE_UINT64;
6963 value.value.sv_uint64 = spa_guid(spa);
6964 if (sysevent_add_attr(&attr, ZFS_EV_POOL_GUID, &value, SE_SLEEP) != 0)
6968 value.value_type = SE_DATA_TYPE_UINT64;
6969 value.value.sv_uint64 = vd->vdev_guid;
6970 if (sysevent_add_attr(&attr, ZFS_EV_VDEV_GUID, &value,
6975 value.value_type = SE_DATA_TYPE_STRING;
6976 value.value.sv_string = vd->vdev_path;
6978 &value, SE_SLEEP) != 0)