Re: [dpdk-dev] [PATCH] Fix a memnory leak bug due to malloc unproperly.

2018-12-17 Thread Xu, Rosen
Hi, > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of AndyPei > Sent: Friday, December 14, 2018 2:33 > To: dev@dpdk.org > Cc: Pei, Andy > Subject: [dpdk-dev] [PATCH] Fix a memnory leak bug due to malloc > unproperly. Miss some descript

Re: [dpdk-dev] [PATCH] Fix a memnory leak bug due to malloc unproperly.

2018-12-13 Thread Burakov, Anatoly
Hi Andy, The patch headline should say what the fix is for, e.g. raw/ifpga: fix this or that. If this is fixing a bug, a Fixes: tag should also be present, indicating the original commit that introduced the issue. If this issue is present in earlier releases, a Cc: sta...@dpdk.org should als

[dpdk-dev] [PATCH] Fix a memnory leak bug due to malloc unproperly.

2018-12-13 Thread AndyPei
Signed-off-by: AndyPei --- drivers/raw/ifpga_rawdev/base/opae_hw_api.c | 30 - drivers/raw/ifpga_rawdev/base/opae_hw_api.h | 2 ++ drivers/raw/ifpga_rawdev/ifpga_rawdev.c | 7 +++ 3 files changed, 30 insertions(+), 9 deletions(-) diff --git a/drivers/raw/ifp