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 A45433F9 for ; Tue, 9 Dec 2014 16:26:55 +0100 (CET) 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 1XyMgU-0006VS-Ay; Tue, 09 Dec 2014 10:26:52 -0500 Date: Tue, 9 Dec 2014 10:26:34 -0500 From: Neil Horman To: Karmarkar Suyash Message-ID: <20141209152634.GE28871@hmsreliant.think-freely.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] DDPK use of MAP_FIXED in mmap 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: Tue, 09 Dec 2014 15:26:55 -0000 On Mon, Dec 08, 2014 at 07:02:38PM +0000, Karmarkar Suyash wrote: > Hello, > > In DPDK when we use mmap why are we passing the MAP_FIXED flag when Linux man page itself says that the option is discouraged? Any specific reason for passing the MAP_FIXED flag? > Because theres nothing wrong with doing so. The man page says its discouraged because it creates less portable applications (due to the fact that not all operating systems support MAP_FIXED). Given that we currently only support BSD and Linux however, and given that MAP_FIXED was added to POSIX for XSI compliant systems, it seems like a reasonable thing to use, as we will most likely never run into a system that won't support it Neil > > http://linux.die.net/man/2/mmap > > MAP_FIXED > Don't interpret addr as a hint: place the mapping at exactly that address. addr must be a multiple of the page size. If the memory region specified by addr and len overlaps pages of any existing mapping(s), then the overlapped part of the existing mapping(s) will be discarded. If the specified address cannot be used, mmap() will fail. Because requiring a fixed address for a mapping is less portable, the use of this option is discouraged. > > > Regards > Suyash Karmarkar >