From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-bk0-f43.google.com (mail-bk0-f43.google.com [209.85.214.43]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id EE8F821F0F4; Mon, 14 May 2012 13:09:16 -0700 (PDT) Received: by bkty5 with SMTP id y5so9434447bkt.16 for ; Mon, 14 May 2012 13:09:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=hkjAtBh95nTBnmm9zDpU1PKpjmUZTT4Q3RizPxXlxhg=; b=bccJmFTBPGZHz38fmJJ+iU6upNErJ5HBIoUnjkIeNmJ6SVkLj0eXsfRhpbhxL+tvbh 1SwM7I/oXwl/k4QIMHRkUu3DljhnhTE4XiEL9vI+Y6bFw8bNqL/bpYIrjOULCObBFyE1 jvIiCmNRPZlmr9T5GcmB/zwkRkxHd2aoGuySKCcJH1Yj77xadgmx8+iJPU/zyWfqfKxF nbw9fXN6w7wmwGnPsddpOqkNqCN3ezD3xi5gOZDxAtgBl8ec9zW3mBPQi3Jcsam9Al/P nJhOjIRhpi47CYFz7axDOVQosJWCIzUOWju6cxKe5sOnPr0O7nLAeiLObkO91bUJdQEx bVnQ== Received: by 10.204.153.6 with SMTP id i6mr332693bkw.114.1337026154684; Mon, 14 May 2012 13:09:14 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.75.206 with HTTP; Mon, 14 May 2012 13:08:54 -0700 (PDT) In-Reply-To: <4FB14254.6050300@superduper.net> References: <1336399043.3752.2318.camel@edumazet-glaptop> <1336571439.12504.27.camel@edumazet-glaptop> <1336672285.31653.102.camel@edumazet-glaptop> <20120510.233632.1955738491150675180.davem@davemloft.net> <1336716071.31653.122.camel@edumazet-glaptop> <4FB14254.6050300@superduper.net> From: Dave Hart Date: Mon, 14 May 2012 20:08:54 +0000 Message-ID: To: Simon Barber Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Mon, 14 May 2012 13:12:30 -0700 Cc: codel@lists.bufferbloat.net, bloat@lists.bufferbloat.net Subject: Re: [Codel] [Bloat] [PATCH v13 net-next] codel: Controlled Delay AQM X-BeenThere: codel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list Reply-To: davehart_gmail_exchange_tee@davehart.net List-Id: CoDel AQM discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2012 20:09:17 -0000 On Mon, May 14, 2012 at 5:35 PM, Simon Barber wrote: > Any chance of getting this patch released under a BSD license? I'd like to > propose my friend in Broadcom use it for their DSL modem chipsets. It's already dual-licensed BSD/GPL 2: +/* + * Codel - The Controlled-Delay Active Queue Management algorithm + * + * Copyright (C) 2011-2012 Kathleen Nichols + * Copyright (C) 2011-2012 Van Jacobson + * Copyright (C) 2012 Michael D. Taht + * Copyright (C) 2012 Eric Dumazet + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * Alternatively, provided that this notice is retained in full, this + * software may be distributed under the terms of the GNU General + * Public License ("GPL") version 2, in which case the provisions of the + * GPL apply INSTEAD OF those given above. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. Cheers, Dave Hart