View | Details | Raw Unified | Return to bug 255191
Collapse All | Expand All

(-)b/sys/platform/pc64/x86_64/mptable.c (-1 / +1 lines)
Lines 283-289 mptable_search(void) Link Here
283
			return x;
283
			return x;
284
	} else {
284
	} else {
285
		/* last 1K of base memory, effective 'top of base' passed in */
285
		/* last 1K of base memory, effective 'top of base' passed in */
286
		target = (u_int32_t)(base_memory - 0x400);
286
		target = (u_int32_t)((base_memory * 1024) - 0x400);
287
		if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
287
		if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
288
			return x;
288
			return x;
289
	}
289
	}

Return to bug 255191