From 5a6c8096cb51065b056c927133781c9f2db9148d Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 21 Feb 2019 14:44:59 +0100 Subject: physmem: keep physmem VA in 39-bit address space on x86_64 Some x86 CPUs have IOMMU capable dealing only with 39-bit address space This patch also adds option to specify physmem base address from startup.conf Change-Id: I9e8abd26efb60e9c4ad54c035fb1751a4a61f4dc Signed-off-by: Damjan Marion --- src/vppinfra/test_pmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vppinfra/test_pmalloc.c') diff --git a/src/vppinfra/test_pmalloc.c b/src/vppinfra/test_pmalloc.c index 90b1775bb4f..a59ff32db05 100644 --- a/src/vppinfra/test_pmalloc.c +++ b/src/vppinfra/test_pmalloc.c @@ -44,7 +44,7 @@ test_palloc (test_main_t * tm) int i; uword *va; - if (clib_pmalloc_init (pm, 0) != 0) + if (clib_pmalloc_init (pm, 0, 0) != 0) return clib_error_return (0, "pmalloc init failure"); fformat (stdout, "Allocate %d items...\n", tm->nitems); -- cgit 1.2.3-korg