From owner-svn-src-head@FreeBSD.ORG Fri Apr 13 18:00:00 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A677C1065672; Fri, 13 Apr 2012 18:00:00 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pz0-f44.google.com (mail-pz0-f44.google.com [209.85.210.44]) by mx1.freebsd.org (Postfix) with ESMTP id 662958FC08; Fri, 13 Apr 2012 18:00:00 +0000 (UTC) Received: by dadz14 with SMTP id z14so13767026dad.17 for ; Fri, 13 Apr 2012 11:00:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=s//qjdlhlgeoVQ+/Ye3IwB0ETRDh34F7yhYtzThmI+g=; b=BwTvackWx1tdwhR201ZOtJBp5qq9J6hcaNzZyBfiSFz6rrSN0AwhJMlE2EmIxgNCUA mLXa9RflaYAmmiT6mkvqC5RXRerJUYvzEf1fvVMJLAr5djlKZVS/e3PUD0oDW5BU1rxT 1vqTrerrGJxiLGrbXROw44t3//AmVrVj5NISQvG0vbuN06SOawlg+k27n5xJ4IYnLLgs 5TmIo6m3sc6cDTwwp1au/N85VlzvCZgAU/Zu8Pnb191PJDfjcXiO2ORHLZWKZvL06LKv yeQejZuO71EWRTE7g1NEOoYI/VYXgeyb2uggWpjs4lz0/DKstqw0wmGVbnEyhmnncwXo MCNA== MIME-Version: 1.0 Received: by 10.68.204.228 with SMTP id lb4mr6520965pbc.37.1334339999969; Fri, 13 Apr 2012 10:59:59 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.142.101.9 with HTTP; Fri, 13 Apr 2012 10:59:59 -0700 (PDT) In-Reply-To: <201204131632.q3DGWXqj088240@svn.freebsd.org> References: <201204131632.q3DGWXqj088240@svn.freebsd.org> Date: Fri, 13 Apr 2012 10:59:59 -0700 X-Google-Sender-Auth: r8J-kOnJ2rGKArKqEoQLHxtECpY Message-ID: From: Adrian Chadd To: Luigi Rizzo Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r234228 - head/sys/dev/netmap X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Apr 2012 18:00:00 -0000 On 13 April 2012 09:32, Luigi Rizzo wrote: > Author: luigi > Date: Fri Apr 13 16:32:33 2012 > New Revision: 234228 > URL: http://svn.freebsd.org/changeset/base/234228 > > Log: > =A0add the new memory allocator for netmap, which allocates memory > =A0in small clusters instead of one big contiguous chunk. > =A0This was already enabled in the previous commit. Hi, is there any scope to make this more generic? I can imagine other parts of the system wanting to use this kind of ring buffer to userland. adrian