From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH 5/6] eal: remove useless memset Date: Thu, 19 Feb 2015 14:58:57 +0000 Message-ID: <20150219145857.GD700@bricha3-MOBL3> References: <1423925950-5201-1-git-send-email-shemming@brocade.com> <1423925950-5201-5-git-send-email-shemming@brocade.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev-VfR2kkLFssw@public.gmane.org, Stephen Hemminger To: Stephen Hemminger Return-path: Content-Disposition: inline In-Reply-To: <1423925950-5201-5-git-send-email-shemming-43mecJUBy8ZBDgjK7y7TUQ@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" On Sat, Feb 14, 2015 at 09:59:09AM -0500, Stephen Hemminger wrote: > The path variable is set via snprintf, and does not need to > memset before that. > > Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson > --- > lib/librte_eal/linuxapp/eal/eal_hugepage_info.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/lib/librte_eal/linuxapp/eal/eal_hugepage_info.c b/lib/librte_eal/linuxapp/eal/eal_hugepage_info.c > index 590cb56..8d29e06 100644 > --- a/lib/librte_eal/linuxapp/eal/eal_hugepage_info.c > +++ b/lib/librte_eal/linuxapp/eal/eal_hugepage_info.c > @@ -84,8 +84,6 @@ get_num_hugepages(const char *subdir) > else > nr_hp_file = "free_hugepages"; > > - memset(path, 0, sizeof(path)); > - > snprintf(path, sizeof(path), "%s/%s/%s", > sys_dir_path, subdir, nr_hp_file); > > -- > 2.1.4 >