* Re: [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
2018-09-21 11:56 [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option Pawel Wodkowski
@ 2018-09-21 8:31 ` Stojaczyk, Dariusz
2018-09-26 18:12 ` Wodkowski, PawelX
2018-10-05 8:13 ` Burakov, Anatoly
2 siblings, 0 replies; 5+ messages in thread
From: Stojaczyk, Dariusz @ 2018-09-21 8:31 UTC (permalink / raw)
To: dev; +Cc: Burakov, Anatoly, Wodkowski, PawelX
I'd like to point out that the comments inside eal_memory.c are outdated (e.g. the one from line #249). It makes it difficult to review this patch.
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pawel Wodkowski
> Sent: Friday, September 21, 2018 1:57 PM
> To: dev@dpdk.org
> Cc: Wodkowski, PawelX <pawelx.wodkowski@intel.com>
> Subject: [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
>
> The final_va field is set during remap_segment() but this information is not
> propagated to temporal copy of huge page memory configuration so the
> unlink_hugepage_files() function wrongly assume that there is nothing to
> unlink. Fix this issue by checking orig_va instead of final_va.
>
> Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
> To: Anatoly Burakov <anatoly.burakov@intel.com>
>
> Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
@ 2018-09-21 11:56 Pawel Wodkowski
2018-09-21 8:31 ` Stojaczyk, Dariusz
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Pawel Wodkowski @ 2018-09-21 11:56 UTC (permalink / raw)
To: dev; +Cc: Pawel Wodkowski
The final_va field is set during remap_segment() but this information is
not propagated to temporal copy of huge page memory configuration so the
unlink_hugepage_files() function wrongly assume that there is nothing to
unlink. Fix this issue by checking orig_va instead of final_va.
Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
To: Anatoly Burakov <anatoly.burakov@intel.com>
Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
---
lib/librte_eal/linuxapp/eal/eal_memory.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c b/lib/librte_eal/linuxapp/eal/eal_memory.c
index e3ac2481572d..b4a2b2b9e405 100644
--- a/lib/librte_eal/linuxapp/eal/eal_memory.c
+++ b/lib/librte_eal/linuxapp/eal/eal_memory.c
@@ -585,7 +585,7 @@ unlink_hugepage_files(struct hugepage_file *hugepg_tbl,
for (page = 0; page < nrpages; page++) {
struct hugepage_file *hp = &hugepg_tbl[page];
- if (hp->final_va != NULL && unlink(hp->filepath)) {
+ if (hp->orig_va != NULL && unlink(hp->filepath)) {
RTE_LOG(WARNING, EAL, "%s(): Removing %s failed: %s\n",
__func__, hp->filepath, strerror(errno));
}
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
2018-09-21 11:56 [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option Pawel Wodkowski
2018-09-21 8:31 ` Stojaczyk, Dariusz
@ 2018-09-26 18:12 ` Wodkowski, PawelX
2018-10-05 8:13 ` Burakov, Anatoly
2 siblings, 0 replies; 5+ messages in thread
From: Wodkowski, PawelX @ 2018-09-26 18:12 UTC (permalink / raw)
To: dev, Burakov, Anatoly
Hi Anatoly,
Can you take a look at this small fix.
Thank you
Paweł
> -----Original Message-----
> From: Wodkowski, PawelX
> Sent: Friday, September 21, 2018 1:57 PM
> To: dev@dpdk.org
> Cc: Wodkowski, PawelX <pawelx.wodkowski@intel.com>
> Subject: [PATCH] eal: fix '--huge-unlink' option
>
> The final_va field is set during remap_segment() but this information is
> not propagated to temporal copy of huge page memory configuration so the
> unlink_hugepage_files() function wrongly assume that there is nothing to
> unlink. Fix this issue by checking orig_va instead of final_va.
>
> Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
> To: Anatoly Burakov <anatoly.burakov@intel.com>
>
> Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
> ---
> lib/librte_eal/linuxapp/eal/eal_memory.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c
> b/lib/librte_eal/linuxapp/eal/eal_memory.c
> index e3ac2481572d..b4a2b2b9e405 100644
> --- a/lib/librte_eal/linuxapp/eal/eal_memory.c
> +++ b/lib/librte_eal/linuxapp/eal/eal_memory.c
> @@ -585,7 +585,7 @@ unlink_hugepage_files(struct hugepage_file
> *hugepg_tbl,
> for (page = 0; page < nrpages; page++) {
> struct hugepage_file *hp = &hugepg_tbl[page];
>
> - if (hp->final_va != NULL && unlink(hp->filepath)) {
> + if (hp->orig_va != NULL && unlink(hp->filepath)) {
> RTE_LOG(WARNING, EAL, "%s(): Removing %s failed:
> %s\n",
> __func__, hp->filepath, strerror(errno));
> }
> --
> 2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
2018-09-21 11:56 [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option Pawel Wodkowski
2018-09-21 8:31 ` Stojaczyk, Dariusz
2018-09-26 18:12 ` Wodkowski, PawelX
@ 2018-10-05 8:13 ` Burakov, Anatoly
2018-10-11 9:40 ` Thomas Monjalon
2 siblings, 1 reply; 5+ messages in thread
From: Burakov, Anatoly @ 2018-10-05 8:13 UTC (permalink / raw)
To: Pawel Wodkowski, dev
On 21-Sep-18 12:56 PM, Pawel Wodkowski wrote:
> The final_va field is set during remap_segment() but this information is
> not propagated to temporal copy of huge page memory configuration so the
> unlink_hugepage_files() function wrongly assume that there is nothing to
> unlink. Fix this issue by checking orig_va instead of final_va.
>
> Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
> To: Anatoly Burakov <anatoly.burakov@intel.com>
>
> Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
> ---
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
--
Thanks,
Anatoly
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option
2018-10-05 8:13 ` Burakov, Anatoly
@ 2018-10-11 9:40 ` Thomas Monjalon
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-10-11 9:40 UTC (permalink / raw)
To: Pawel Wodkowski; +Cc: dev, Burakov, Anatoly
05/10/2018 10:13, Burakov, Anatoly:
> On 21-Sep-18 12:56 PM, Pawel Wodkowski wrote:
> > The final_va field is set during remap_segment() but this information is
> > not propagated to temporal copy of huge page memory configuration so the
> > unlink_hugepage_files() function wrongly assume that there is nothing to
> > unlink. Fix this issue by checking orig_va instead of final_va.
> >
> > Fixes: 66cc45e293ed ("mem: replace memseg with memseg lists")
> > To: Anatoly Burakov <anatoly.burakov@intel.com>
> >
> > Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
>
> Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-10-11 9:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-21 11:56 [dpdk-dev] [PATCH] eal: fix '--huge-unlink' option Pawel Wodkowski
2018-09-21 8:31 ` Stojaczyk, Dariusz
2018-09-26 18:12 ` Wodkowski, PawelX
2018-10-05 8:13 ` Burakov, Anatoly
2018-10-11 9:40 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).