From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: how does it count the number of contiguous physical pages in map_all_hugepages Date: Fri, 16 Jan 2015 11:01:06 +0000 Message-ID: <20150116110105.GC10516@bricha3-MOBL3> References: <25CC404E73236E4FB06CE423D5EE8B229B4F34@AZ10EXMBX22.hosting.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev-VfR2kkLFssw@public.gmane.org" To: "Jack,Xie Jie" Return-path: Content-Disposition: inline In-Reply-To: <25CC404E73236E4FB06CE423D5EE8B229B4F34-6NxsTxPJWaIfn/xtwl+l096yYynoYqcQZkel5v8DVj8@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 Fri, Jan 16, 2015 at 05:32:08AM +0000, Jack,Xie Jie wrote: > Hi, > > I am learning DPDK recently, when I check l2fwd example, I am a little confused, please someone give me a clue. > > In function map_all_hugepages called in rte_eal_hugepage_init, > There are lines of source code like below to count the number of contiguous physical pages, > But I check the source code, I just cannot find where is hugepg_tbl[j].physaddr be set before, > how can here check the value of hugepg_tbl[j].physaddr. > > /* reserve a virtual area for next contiguous > * physical block: count the number of > * contiguous physical pages. */ > for (j = i+1; j < hpi->num_pages[0] ; j++) { > if (hugepg_tbl[j].physaddr != > hugepg_tbl[j-1].physaddr + hugepage_sz) > break; > } > > > Thanks ! > Jack See function "find_physaddrs" in "eal_memory.c". Regards, /Bruce