Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-31 Thread Phil Yang
; nd > Subject: Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated > memzones > > On 31-Jan-18 7:51 AM, Phil Yang wrote: > > Hi Anatoly, > > > > I think your fix is elegant, however you can't grantee it doesn't have dirty > memzone remaine

Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-31 Thread Burakov, Anatoly
combining both approaches. Is that OK with you? -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Anatoly Burakov Sent: Saturday, January 27, 2018 1:41 AM To: dev@dpdk.org Cc: radoslaw.bierna...@linaro.org; sta...@dpdk.org Subject: [dpdk-dev] [PATCH 2/2] test/memzon

Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-30 Thread Phil Yang
bierna...@linaro.org; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated > memzones > > Currently, memzone autotest expects there to be no memzones present by the > time the test is run. Some hardware drivers will allocate memzones for

Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-27 Thread Radoslaw Biernacki
Thanks, looks OK for me. Reviewed-by: Radoslaw Biernacki adoslaw.bierna...@linaro.com> On 26 January 2018 at 18:40, Anatoly Burakov wrote: > Currently, memzone autotest expects there to be no memzones > present by the time the test is run. Some hardware drivers > will allocate memzones for int

[dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-26 Thread Anatoly Burakov
Currently, memzone autotest expects there to be no memzones present by the time the test is run. Some hardware drivers will allocate memzones for internal use during initialization, resulting in tests failing due to unexpected memzones being allocated before the test was run. Fix this by making ca