From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id EE13F5A5A for ; Thu, 19 May 2016 14:01:07 +0200 (CEST) Received: from hmsreliant.think-freely.org ([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1b3MdR-0003ac-N6; Thu, 19 May 2016 08:01:05 -0400 Date: Thu, 19 May 2016 08:00:56 -0400 From: Neil Horman To: Panu Matilainen Cc: dev@dpdk.org, Bruce Richardson , Thomas Monjalon , Stephen Hemminger Message-ID: <20160519120056.GD4128@hmsreliant.think-freely.org> References: <1463431287-4551-1-git-send-email-nhorman@tuxdriver.com> <1463605687-649-1-git-send-email-nhorman@tuxdriver.com> <1463605687-649-2-git-send-email-nhorman@tuxdriver.com> <81cef5e5-3220-710f-aebf-a703c1423199@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <81cef5e5-3220-710f-aebf-a703c1423199@redhat.com> User-Agent: Mutt/1.6.1 (2016-04-27) X-Spam-Score: -1.0 (-) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCHv2 1/4] pmdinfogen: Add buildtools and pmdinfogen utility X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2016 12:01:08 -0000 On Thu, May 19, 2016 at 10:51:19AM +0300, Panu Matilainen wrote: > On 05/19/2016 12:08 AM, Neil Horman wrote: > [...] > > + if (strcmp(secname, ".modinfo") == 0) { > > + if (nobits) > > + fprintf(stderr, "%s has NOBITS .modinfo\n", filename); > > + info->modinfo = (void *)hdr + sechdrs[i].sh_offset; > > + info->modinfo_len = sechdrs[i].sh_size; > > + } else if (strcmp(secname, "__ksymtab") == 0) > > + info->export_sec = i; > > + else if (strcmp(secname, "__ksymtab_unused") == 0) > > + info->export_unused_sec = i; > > + else if (strcmp(secname, "__ksymtab_gpl") == 0) > > + info->export_gpl_sec = i; > > + else if (strcmp(secname, "__ksymtab_unused_gpl") == 0) > > + info->export_unused_gpl_sec = i; > > + else if (strcmp(secname, "__ksymtab_gpl_future") == 0) > > + info->export_gpl_future_sec = i; > > + > > Looks like a leftover from kernel modpost.c, not needed in DPDK. > > - Panu - > Yup, I'll remove it Neil