From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f175.google.com (mail-qt0-f175.google.com [209.85.216.175]) by dpdk.org (Postfix) with ESMTP id 7F45E2BB9 for ; Wed, 18 Jan 2017 00:32:15 +0100 (CET) Received: by mail-qt0-f175.google.com with SMTP id l7so185865480qtd.1 for ; Tue, 17 Jan 2017 15:32:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=v3ITfflXPM1Gd/OaAjZo9zd324U7F1c0cKwWlRRWVWY=; b=QkN8PjqnbOcoM7IAgJSeew+z8ovHHjz0XI4i7GZmUKkERJWku8hf0Li7V/vstFnGUA DV9dTG9cpslyQ/dLGn9Eg0KVS1lDGmQHr+QK9SSsEnmXtpRwxVt3uhzX8Fh6uG1UhYBA 04DoA2FAX8h/fsQJn38qMB58d021c+2WM7jG+l/x4kp1jXMsBnAiKv5zX6zG7wQaQ2eP TQZAXmLDJet7yVsRm6J5n2e6RTzL0WTJ/ajcDNJ1DyGp4cb84o2sslhIkWcZ3QTtvB6T tKAZlwY2AgBY0NRTL5Y2xBEtOdyi//3MkqrC0TOxvOdrW9KyOWgH353eG+6kE0hP1BtC yu1A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=v3ITfflXPM1Gd/OaAjZo9zd324U7F1c0cKwWlRRWVWY=; b=SjZ4DJon1owIjGlgKu61LRwCdj+TSOCOrZoKsHRZfDolS17IOCUrysgCNGoakOgQXI NfzZMI/pQUW7IZBEep3ff4IQ4ULi+kE3SpzAXbVsaxWHccEbPF9CKjLxRt6V2FyhKIUd +hfEoFyvS5M5BbYEfyAGzZ7Y65UsRPniwmx9iSV4Q2U1rQf7846tV9ep0GatYl1IgO0v ZO5z4DrHDxxWWx0R4kPGkwYF+MJ8yoT0WsrR711K4/lOErCmQeOq7ZAgQCAp2tqV9/nE /bJ/sFeceE9eHUNOiGZpW128o3XdwrJF7p2JVru/1vU5G/rUz3iubr7E3IG+P6HU0FaK 91yw== X-Gm-Message-State: AIkVDXLYjZcLJ+aFmpYRWLayqqU+KcqfVESAmxl9xCuyQ24kyarRyOPMJ/PdWBy1ch3PkM8BX4CaHHOp6dKwVA== X-Received: by 10.200.35.135 with SMTP id q7mr206033qtq.206.1484695925744; Tue, 17 Jan 2017 15:32:05 -0800 (PST) MIME-Version: 1.0 Received: by 10.237.32.228 with HTTP; Tue, 17 Jan 2017 15:32:05 -0800 (PST) In-Reply-To: <20170117152357.7d2b87ff@xeon-e3> References: <20170117152357.7d2b87ff@xeon-e3> From: Mike Davison Date: Tue, 17 Jan 2017 15:32:05 -0800 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-users] mempools X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 23:32:15 -0000 Looking for fixed-sized objects in somewhat variable-sized pool. Perhaps use rte_malloc_socket to allocate from a specific heap and add a bit of functionality above dpdk to ensure objects are fixed-sized. Perhaps. > > Memzone's are fixed size regions > Mempool's are fixed size objects based on memzone's > For variable size objects, use rte_malloc > >