mempool: remove check for bad IOVA when populating
authorAnatoly Burakov <anatoly.burakov@intel.com>
Thu, 14 Nov 2019 13:58:21 +0000 (13:58 +0000)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 19 Nov 2019 20:41:43 +0000 (21:41 +0100)
commit84191ddeb53dcabb2567422ebf4612dea14d2471
tree731d689e46ae8418fd7c1386f614a6d4448636b3
parent2a7fd3ef38da19b2805fecd29c527456364ae618
mempool: remove check for bad IOVA when populating

Currently, mempool will check if IOVA is bad for a segment, and reject
the IOVA if hugepages are also enabled. This check is wrong because now
that we have external memory segments, they are allowed to have their
IOVA's to be invalid. This check also doesn't make much sense in the
first place, because the following code can handle bad IOVA's perfectly
well (and in fact, this check is not triggering a failure when
--no-huge option is enabled), so there is not much sense to check for
this in the first place.

Fixes: 950e8fb4e194 ("mem: allow registering external memory areas")
Cc: stable@dpdk.org
Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
Tested-by: Bo Chen <box.c.chen@intel.com>
lib/librte_mempool/rte_mempool.c