Searched refs:pdinfo (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/stand/efi/libefi/
H A Defipart.c113 * efipart_inithandles() is used to build up the pdinfo list from
115 * pick items from pdinfo and move to proper device list.
116 * In ideal world, we should end up with empty pdinfo once all
119 static pdinfo_list_t pdinfo = STAILQ_HEAD_INITIALIZER(pdinfo); variable
358 if (!STAILQ_EMPTY(&pdinfo))
410 STAILQ_INSERT_TAIL(&pdinfo, pd, pd_link);
414 * Walk pdinfo and set parents based on device path.
416 STAILQ_FOREACH(pd, &pdinfo, pd_link) {
417 pd->pd_parent = efipart_find_parent(&pdinfo, p
[all...]
/freebsd-13-stable/stand/efi/include/
H A Defilib.h50 typedef STAILQ_HEAD(pdinfo_list, pdinfo) pdinfo_list_t;
52 typedef struct pdinfo struct
54 STAILQ_ENTRY(pdinfo) pd_link; /* link in device list */
63 struct pdinfo *pd_parent; /* Linked items (eg partitions) */
/freebsd-13-stable/sys/dev/pci/
H A Dpci_pci.c2923 struct pci_devinfo *pdinfo; local
2932 pdinfo = device_get_ivars(dev);
2933 if (pdinfo->cfg.pcie.pcie_location != 0 &&
2934 (pdinfo->cfg.pcie.pcie_type == PCIEM_TYPE_DOWNSTREAM_PORT ||
2935 pdinfo->cfg.pcie.pcie_type == PCIEM_TYPE_ROOT_PORT)) {
2939 pdinfo->cfg.pcie.pcie_location);

Completed in 95 milliseconds