From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.ndsl.kaist.edu (www.ndsl.kaist.ac.kr [143.248.57.3]) by dpdk.org (Postfix) with ESMTP id 8B46E8E7D for ; Tue, 24 Nov 2015 11:52:18 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.ndsl.kaist.edu (Postfix) with ESMTP id B5E3BC098D for ; Tue, 24 Nov 2015 19:52:16 +0900 (KST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ndsl.kaist.edu; h=content-transfer-encoding:content-type:content-type :mime-version:user-agent:date:date:message-id:subject:subject :from:from:to; s=dkim; t=1448362336; x=1449226336; bh=K6V6+eh9KH YaPlzW+XOMA9tzRiihZDJ8p5QZzff2boQ=; b=YvAuiZfaXMfc5Mak7t5A6bf9BS wYcm95l5mrm4wQvgmyk9Ozu0KgiiZX+yG6KbNiKjbFKPmrGsWE3sq0RYZ8ojdB4n wITYYRwxuNY6osn1BpWGrkFCWuoSaYEpDt6i6sq+9MTS0icn7Gcm/6EEF0kixoDp ysqYR4iGtgFe9RyqI= X-Virus-Scanned: Debian amavisd-new at ndsl.kaist.ac.kr Received: from mail.ndsl.kaist.edu ([127.0.0.1]) by localhost (ndsl.kaist.ac.kr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dWOEbiaDa1i4 for ; Tue, 24 Nov 2015 19:52:16 +0900 (KST) Received: from [143.248.200.179] (unknown [143.248.200.179]) by mail.ndsl.kaist.edu (Postfix) with ESMTPSA id 05E8EC01C8 for ; Tue, 24 Nov 2015 19:52:14 +0900 (KST) To: "users@dpdk.org" From: Younghwan Go Message-ID: <56544151.7050104@ndsl.kaist.edu> Date: Tue, 24 Nov 2015 19:52:01 +0900 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=euc-kr Content-Transfer-Encoding: 7bit Subject: [dpdk-users] no hugepage with UIO poll-mode driver X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 10:52:19 -0000 Hello, I'm trying to create rte mempool with my own memory scheme (shared virtual memory between CPU & GPU) other than using hugepage. I'm using IGB UIO module with Ethernet 10G 2P X520 Adapter NIC. I first tried to disable hugepage by inserting "--no-huge" option, but it gave an error at rte_mempool_create function. Then I found in rte_eal.h file that said "no-huge mode cannot be used with UIO poll-mode drivers like igb/ixgbe". Is there a way to switch DPDK code to not use hugepage with ixgbe driver or is it not possible to do so? Thank you, Younghwan