Searched refs:id (Results 1 - 25 of 3634) sorted by last modified time

1234567891011>>

/freebsd-current/sys/x86/iommu/
H A Dintel_drv.c478 * domain-id value of zero is architecturally reserved.
479 * Software must not use domain-id value of zero
816 dmar_find_nonpci(u_int id, u_int entry_type, uint16_t *rid) argument
846 if (devscope->EnumerationId != id)
850 error = ioapic_get_rid(id, rid);
870 "dmar_find_nonpci: id %d type %d path length != 2\n",
871 id, entry_type);
/freebsd-current/sys/netgraph/
H A Dng_nat.c463 entry->rdr.id = priv->nextid++;
469 /* Response with id of newly added entry. */
470 NG_MKRESPONSE(resp, msg, sizeof(entry->rdr.id), M_NOWAIT);
475 bcopy(&entry->rdr.id, resp->data, sizeof(entry->rdr.id));
515 entry->rdr.id = priv->nextid++;
521 /* Response with id of newly added entry. */
522 NG_MKRESPONSE(resp, msg, sizeof(entry->rdr.id), M_NOWAIT);
527 bcopy(&entry->rdr.id, resp->data, sizeof(entry->rdr.id));
588 uint32_t *const id = (uint32_t *)msg->data; local
[all...]
/freebsd-current/sys/dev/nvmf/host/
H A Dnvmf_ns.c28 uint32_t id; member in struct:nvmf_namespace
53 ns->id);
173 nvme_ns_read_cmd(&cmd, ns->id, lba, lba_count);
178 nvme_ns_write_cmd(&cmd, ns->id, lba, lba_count);
181 nvme_ns_flush_cmd(&cmd, ns->id);
194 cmd.nsid = htole32(ns->id);
257 pt->cmd.nsid = htole32(ns->id);
263 gnsid->nsid = ns->id;
315 nvmf_init_ns(struct nvmf_softc *sc, uint32_t id, argument
325 ns->id
[all...]
/freebsd-current/sys/dev/nvme/
H A Dnvme_ns.c80 return (nvme_ctrlr_passthrough_cmd(ctrlr, pt, ns->id,
87 gnsid->nsid = ns->id;
507 nvme_ns_construct(struct nvme_namespace *ns, uint32_t id, argument
518 ns->id = id;
532 nvme_ctrlr_cmd_identify_namespace(ctrlr, id, &ns->data,
546 * standard says the entire id will be zeros, so this is a
600 unit = device_get_unit(ctrlr->dev) * NVME_MAX_NAMESPACES + ns->id - 1;
608 device_get_nameunit(ctrlr->dev), ns->id);
612 device_get_nameunit(ctrlr->dev), ns->id);
[all...]
H A Dnvme_ctrlr.c115 qpair->id = 0;
200 qpair->id = i + 1;
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dzfs_ioctl.c5765 int id, error; local
5767 error = zio_inject_fault(zc->zc_name, (int)zc->zc_guid, &id,
5771 zc->zc_guid = (uint64_t)id;
5785 int id = (int)zc->zc_guid; local
5788 error = zio_inject_list_next(&id, zc->zc_name, sizeof (zc->zc_name),
5791 zc->zc_guid = id;
H A Dvdev.c501 uint64_t id = cvd->vdev_id; local
512 ASSERT(id >= pvd->vdev_children || pvd->vdev_child[id] == NULL);
515 pvd->vdev_children = MAX(pvd->vdev_children, id + 1);
525 pvd->vdev_child[id] = cvd;
546 uint_t id = cvd->vdev_id; local
553 ASSERT(id < pvd->vdev_children);
554 ASSERT(pvd->vdev_child[id] == cvd);
556 pvd->vdev_child[id] = NULL;
623 vdev_alloc_common(spa_t *spa, uint_t id, uint64_ argument
737 vdev_alloc(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, uint_t id, int alloctype) argument
[all...]
H A Dspa.c1852 uint_t id, int atype)
1858 if ((error = vdev_alloc(spa, vdp, nv, parent, id, atype)) != 0)
3014 zfs_dbgmsg("deleting sublist (id %llu) from"
3134 zfs_dbgmsg("txg %llu condensing livelist of %s (id %llu), bpobj %llu "
1851 spa_config_parse(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, uint_t id, int atype) argument
H A Dmetaslab.c2688 metaslab_init(metaslab_group_t *mg, uint64_t id, uint64_t object, argument
2704 ms->ms_id = id;
2705 ms->ms_start = id << vd->vdev_ms_shift;
3711 zfs_dbgmsg("condensing: txg %llu, msp[%llu] %px, vdev id %llu, "
H A Ddmu_objset.c1546 taskqid_t id = os->os_upgrade_id; local
1551 if ((taskq_cancel_id(os->os_spa->spa_upgrade_taskq, id)) == 0) {
1994 userquota_update_cache(avl_tree_t *avl, const char *id, int64_t delta) argument
1999 ASSERT(strlen(id) < sizeof (uqn->uqn_id));
2001 * Use id directly for searching because uqn_id is the first field of
2005 uqn = avl_find(avl, (const void *)id, &idx);
2008 strlcpy(uqn->uqn_id, id, sizeof (uqn->uqn_id));
/freebsd-current/sys/contrib/openzfs/module/zcommon/
H A Dzfs_fletcher.c645 ptrdiff_t id = curr_stat - fletcher_4_stat_data; local
648 fletcher_4_supp_impls[id]->name);
/freebsd-current/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-taskq.c78 /* Multi-callback id for cpu hotplugging. */
249 * The priority list must be maintained in strict task id order
339 * must be in lowest to highest task id order.
342 taskq_find_list(taskq_t *tq, struct list_head *lh, taskqid_t id) argument
350 if (t->tqent_id == id)
353 if (t->tqent_id > id)
361 * Find an already dispatched task given the task id regardless of what
367 taskq_find(taskq_t *tq, taskqid_t id) argument
373 t = taskq_find_list(tq, &tq->tq_delay_list, id);
377 t = taskq_find_list(tq, &tq->tq_prio_list, id);
428 taskq_wait_id_check(taskq_t *tq, taskqid_t id) argument
445 taskq_wait_id(taskq_t *tq, taskqid_t id) argument
452 taskq_wait_outstanding_check(taskq_t *tq, taskqid_t id) argument
472 taskq_wait_outstanding(taskq_t *tq, taskqid_t id) argument
525 taskq_cancel_id(taskq_t *tq, taskqid_t id) argument
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dvdev_geom.c521 resize_configs(nvlist_t ***configs, uint64_t *count, uint64_t id) argument
526 if (id < *count)
528 new_configs = kmem_zalloc((id + 1) * sizeof (nvlist_t *),
535 *count = id + 1;
545 uint64_t id, txg, known_txg; local
561 if (nvlist_lookup_uint64(vdev_tree, ZPOOL_CONFIG_ID, &id) != 0)
572 resize_configs(configs, count, id);
574 if ((*configs)[id] != NULL) {
575 known_txg = fnvlist_lookup_uint64((*configs)[id],
579 nvlist_free((*configs)[id]);
[all...]
/freebsd-current/sys/contrib/openzfs/lib/libzfs/os/linux/
H A Dlibzfs_pool_os.c184 * of the form <pool>-<unique-id>.
189 uint64_t id = 0; local
194 if (read(fd, &id, sizeof (id)) != sizeof (id))
195 id = 0;
200 if (id == 0)
201 id = (((uint64_t)rand()) << 32) | (uint64_t)rand();
203 snprintf(label_name, label_size, "zfs-%016llx", (u_longlong_t)id);
/freebsd-current/sys/contrib/openzfs/cmd/
H A Dztest.c390 typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
2889 ztest_od_init(ztest_od_t *od, uint64_t id, const char *tag, uint64_t index, argument
2907 tag, id, index);
2934 ztest_zil_commit(ztest_ds_t *zd, uint64_t id) argument
2936 (void) id;
2963 ztest_zil_remount(ztest_ds_t *zd, uint64_t id) argument
2965 (void) id;
3000 ztest_spa_create_destroy(ztest_ds_t *zd, uint64_t id) argument
3002 (void) zd, (void) id;
3063 ztest_mmp_enable_disable(ztest_ds_t *zd, uint64_t id) argument
3128 ztest_spa_upgrade(ztest_ds_t *zd, uint64_t id) argument
3251 ztest_spa_checkpoint_create_discard(ztest_ds_t *zd, uint64_t id) argument
3295 ztest_vdev_add_remove(ztest_ds_t *zd, uint64_t id) argument
3387 ztest_vdev_class_add(ztest_ds_t *zd, uint64_t id) argument
3470 ztest_vdev_aux_add_remove(ztest_ds_t *zd, uint64_t id) argument
3582 ztest_split_pool(ztest_ds_t *zd, uint64_t id) argument
3678 ztest_vdev_attach_detach(ztest_ds_t *zd, uint64_t id) argument
4045 ztest_vdev_raidz_attach(ztest_ds_t *zd, uint64_t id) argument
4157 ztest_device_removal(ztest_ds_t *zd, uint64_t id) argument
4334 ztest_vdev_LUN_growth(ztest_ds_t *zd, uint64_t id) argument
4630 ztest_snapshot_create(char *osname, uint64_t id) argument
4650 ztest_snapshot_destroy(char *osname, uint64_t id) argument
4666 ztest_dmu_objset_create_destroy(ztest_ds_t *zd, uint64_t id) argument
4783 ztest_dmu_snapshot_create_destroy(ztest_ds_t *zd, uint64_t id) argument
4795 ztest_dsl_dataset_cleanup(char *osname, uint64_t id) argument
4851 ztest_dsl_dataset_promote_busy(ztest_ds_t *zd, uint64_t id) argument
4962 ztest_dmu_object_alloc_free(ztest_ds_t *zd, uint64_t id) argument
4998 ztest_dmu_object_next_chunk(ztest_ds_t *zd, uint64_t id) argument
5023 ztest_dmu_read_write(ztest_ds_t *zd, uint64_t id) argument
5313 ztest_dmu_read_write_zcopy(ztest_ds_t *zd, uint64_t id) argument
5550 ztest_dmu_write_parallel(ztest_ds_t *zd, uint64_t id) argument
5576 ztest_dmu_prealloc(ztest_ds_t *zd, uint64_t id) argument
5625 ztest_zap(ztest_ds_t *zd, uint64_t id) argument
5770 ztest_fzap(ztest_ds_t *zd, uint64_t id) argument
5812 ztest_zap_parallel(ztest_ds_t *zd, uint64_t id) argument
6007 ztest_dmu_commit_callbacks(ztest_ds_t *zd, uint64_t id) argument
6147 ztest_verify_dnode_bt(ztest_ds_t *zd, uint64_t id) argument
6182 ztest_dsl_prop_get_set(ztest_ds_t *zd, uint64_t id) argument
6208 ztest_spa_prop_get_set(ztest_ds_t *zd, uint64_t id) argument
6247 ztest_dmu_snapshot_hold(ztest_ds_t *zd, uint64_t id) argument
6372 ztest_fault_inject(ztest_ds_t *zd, uint64_t id) argument
6703 ztest_scrub(ztest_ds_t *zd, uint64_t id) argument
6731 ztest_reguid(ztest_ds_t *zd, uint64_t id) argument
6763 ztest_blake3(ztest_ds_t *zd, uint64_t id) argument
6850 ztest_fletcher(ztest_ds_t *zd, uint64_t id) argument
6920 ztest_fletcher_incr(ztest_ds_t *zd, uint64_t id) argument
7126 ztest_initialize(ztest_ds_t *zd, uint64_t id) argument
7198 ztest_trim(ztest_ds_t *zd, uint64_t id) argument
7533 ztest_execute(int test, ztest_info_t *zi, uint64_t id) argument
7626 uint64_t id = (uintptr_t)arg; local
[all...]
/freebsd-current/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c392 "\tproject -c [-0] [-d|-r] [-p id] <directory|file ...>\n"
394 "\tproject [-p id] [-r] [-s] <directory ...>\n"));
602 " POSIX id (eg: \"126829\")\n"
2872 uid_t id; local
2883 err = sid_to_id(sid, B_FALSE, &id);
2886 err = sid_to_id(sid, B_TRUE, &id);
2890 rid = id;
5132 const char *who_name; /* id */
6079 char id[64]; local
6148 (void) sprintf(id, "
[all...]
/freebsd-current/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c696 "\t\t[<poolname>[/<dataset | objset id>] [<object | range> ...]]\n"
698 "\t\t[<poolname>[/<dataset | objset id>] [<object | range> ...]\n"
701 "\t\t[-K <key>] <poolname>/<objset id> [<backupflags>]\n"
1840 (void) fatal("bad vdev id: %llu", (u_longlong_t)c);
2737 "subobj id %llu\n",
2914 "subobj id %llu\n",
3281 * For normal POSIX id just the id is printed in decimal format.
3286 print_idstr(uint64_t id, const char *id_type) argument
3288 if (FUID_INDEX(id)) {
[all...]
/freebsd-current/sbin/mdconfig/
H A Dmdconfig.c522 gid = geom_lookupid(&gm, gsp->id);
/freebsd-current/cddl/usr.sbin/dtrace/tests/common/builtinvar/
H A DMakefile26 tst.id.d \
/freebsd-current/usr.sbin/pw/
H A Dpw_user.c74 static uid_t pw_uidpolicy(struct userconf *cnf, intmax_t id);
257 uid_t id = (uid_t)-1; local
263 errx(EX_DATAERR, "username or id required");
267 id = pw_checkid(name, UID_MAX);
270 if (pwd == NULL && id != (uid_t)-1) {
271 pwd = GETPWUID(id);
276 if (id == (uid_t)-1)
277 errx(EX_NOUSER, "no such name or uid `%ju'", (uintmax_t) id);
307 pw_uidpolicy(struct userconf * cnf, intmax_t id) argument
316 if (id >
739 intmax_t id = -1; local
831 intmax_t id = -1; local
1062 uintmax_t id; local
1189 intmax_t id = -1; local
1523 intmax_t id = -1; local
[all...]
/freebsd-current/usr.sbin/kldxref/
H A Dkldxref.c181 pnp_eisaformat(uint32_t id) argument
187 id = htole32(id);
188 data = (uint8_t *)&id;
/freebsd-current/sys/netpfil/pf/
H A Dpf_nl.c53 uint32_t id; member in struct:nl_parsed_state
65 { .type = PF_ST_ID, .off = _OUT(id), .cb = nlattr_get_uint32 },
187 nlattr_add_u64(nw, PF_ST_ID, s->id);
282 struct pf_kstate *s = pf_find_state_byid(attrs->id, attrs->creatorid);
322 if (attrs.id != 0)
1009 { .type = PF_CS_CMP_ID, .off = _OUT(psk_pfcmp.id), .cb = nlattr_get_uint64 },
/freebsd-current/sys/net/
H A Dpfvar.h950 u_int64_t id; member in struct:pf_state_cmp
985 uint64_t id; member in struct:pf_state_export
1032 u_int64_t id; member in struct:pf_kstate
1110 u_int64_t id; member in struct:pfsync_state_1301
1137 u_int64_t id; member in struct:pfsync_state_1400
2124 #define PF_IDHASH(s) (be64toh((s)->id) % (pf_hashmask + 1))
/freebsd-current/sys/dev/bnxt/bnxt_re/
H A Dqplib_sp.c233 /* Keep the old stats context id of PF */
342 "QPLIB: GID entry contains an invalid HW id");
485 req.pd_id = cpu_to_le32(ah->pd->id);
500 ah->id = le32_to_cpu(resp.xid);
502 if (!_is_chip_gen_p5_p7(res->cctx) && !ah->id)
520 req.ah_cid = cpu_to_le32(ah->id);
578 req.pd_id = cpu_to_le32(mrw->pd->id);
692 req.key = cpu_to_le32(mr->pd->id);
1136 /* need to specify only second port stats ctx id for now */
H A Dqplib_sp.h80 u32 id; member in struct:bnxt_qplib_pd
95 u32 id; member in struct:bnxt_qplib_ah

Completed in 408 milliseconds

1234567891011>>