Lines Matching defs:uend
1680 * Update mblocks after a memory DR deletion of the range (ubase, uend).
1688 pfn_t uend)
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) {
1738 mblock[i + 1].base = ptob(uend + 1);
1739 mblock[i + 1].size = ptob(end - uend);
1740 mblock[i + 1].base_pfn = uend + 1;
1746 mblock[i].base = ptob(uend + 1);
1747 mblock[i].size -= ptob(uend - ubase + 1);
1748 base = uend + 1;
1753 } else if (end == uend) {
1756 mblock[i].size -= ptob(uend - 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);
1959 if (uend >= mem_node_config[i].physbase &&
1960 uend <= mem_node_config[i].physmax)
1969 ASSERT(maxpfn >= uend);