Home
last modified time | relevance | path

Searched refs:node_id (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/sys/arch/x86/x86/
Dcpu_topology.c181 const u_int node_id = apic_id & __BITS(0, 2); in x86_cpu_topology() local
183 (apic_id >> core_bits) | (node_id << core_bits) : in x86_cpu_topology()
184 (apic_id >> 5) | (node_id << 2); in x86_cpu_topology()
/netbsd/src/usr.sbin/cpuctl/arch/
Di386.c1916 const u_int node_id = apic_id & __BITS(0, 2); in identifycpu_cpuids_amd()
1918 (apic_id >> core_bits) | (node_id << core_bits) : in identifycpu_cpuids_amd()
1919 (apic_id >> 5) | (node_id << 2); in identifycpu_cpuids_amd()
/netbsd/src/sys/dev/ieee1394/
Dfwohci.c1991 uint32_t node_id, plen; local
2032 node_id = OREAD(sc, FWOHCI_NODEID);
2035 fc->nodeid = node_id & 0x3f;
2037 node_id, (plen >> 16) & 0xff);
2038 if (!(node_id & OHCI_NODE_VALID)) {
2046 if ((node_id & OHCI_NODE_ROOT) && !nocyclemaster) {
/netbsd/src/sys/compat/linux/common/
Dlinux_misc.c2166 u_int node_id = l->l_cpu->ci_data.cpu_numa_id; in linux_sys_getcpu() local
2167 error = copyout(&node_id, SCARG(uap, node), sizeof(node_id)); in linux_sys_getcpu()