Lines Matching defs:ubase
1680 * Update mblocks after a memory DR deletion of the range (ubase, uend).
1687 mblock_update_del(mpo_config_t *mc_new, mpo_config_t *mc_old, pfn_t ubase,
1695 MPO_DEBUG("mblock_update_del(0x%lx, 0x%lx)\n", ubase, uend);
1727 if (base == ubase && end == uend) {
1733 } else if (base < ubase && end > uend) {
1736 mblock[i].size = ptob(ubase - base);
1737 mblock[i].end_pfn = ubase - 1;
1743 } else if (base == ubase) {
1747 mblock[i].size -= ptob(uend - ubase + 1);
1756 mblock[i].size -= ptob(uend - ubase + 1);
1757 end = ubase - 1;
1887 mnode_update(mpo_config_t *mc, pfn_t ubase, pfn_t uend, update_t utype)
1893 MPO_DEBUG("mnode_udpate: basepfn: %lx endpfn: %lx\n", ubase, uend);
1897 mpo_mem_node_add_slice(ubase, uend);
1899 mpo_mem_node_del_slice(ubase, uend);
1925 INTERSECT(ubase, uend, base, end);
1934 INTERSECT(ubase, uend, base, end);
1956 if (ubase >= mem_node_config[i].physbase &&
1957 ubase <= mem_node_config[i].physmax)
1968 ASSERT(minpfn <= ubase);