From owner-svn-src-all@FreeBSD.ORG Mon Oct 20 22:53:04 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BEC69D6; Mon, 20 Oct 2014 22:53:04 +0000 (UTC) Received: from mail-ie0-x22a.google.com (mail-ie0-x22a.google.com [IPv6:2607:f8b0:4001:c03::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DC9D86A; Mon, 20 Oct 2014 22:53:04 +0000 (UTC) Received: by mail-ie0-f170.google.com with SMTP id rd18so38118iec.1 for ; Mon, 20 Oct 2014 15:53:03 -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:from:date:message-id :subject:to:cc:content-type; bh=hm1Yiu++0X0NxMtVVx5fVu87SS3l6l/hRUSI/zaITEQ=; b=aVC8NtvaeNn6Iz5sm6SwqSmai59BO1FMqyJPxS/tYWXMSw3Liwvsao8/k76lNPq3eJ 6pBpW2GjYoKiM10jRrzIwQ5eNqtpwmO3ommMcUqwF6KVmvAXtN1NeMAd/9rJhA/gK76I hdLOEN8Z2s8NKh+Nez40Gw7yzJzMw8NdVqu6D6hsicH/1feMidMLWLn3bxgb4GPmz5W7 uTUa7Av4BUWcfh4EXZV2t+t0lswruzHXBpK/Ft6/qjwXjs+vmeY44t4BOdK2AxSlglDm lawB5LOn4Vw4AnWm/Iq7cXTalDuOUPpt/4kBYQwt+Xl1Tpk/wUDizeMLVu+IEyzzU/4h Sreg== X-Received: by 10.42.121.17 with SMTP id h17mr5134642icr.75.1413845583450; Mon, 20 Oct 2014 15:53:03 -0700 (PDT) MIME-Version: 1.0 Sender: mr.kodiak@gmail.com Received: by 10.64.86.230 with HTTP; Mon, 20 Oct 2014 15:52:33 -0700 (PDT) In-Reply-To: References: <201410201442.s9KEggqt096167@svn.freebsd.org> From: Bryan Venteicher Date: Mon, 20 Oct 2014 17:52:33 -0500 X-Google-Sender-Auth: cIOwY7Hnx7TQ3jCmILPTCLHmXgg Message-ID: Subject: Re: svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys To: Andrew Thompson Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "svn-src-head@freebsd.org" , Bryan Venteicher , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2014 22:53:04 -0000 On Mon, Oct 20, 2014 at 5:37 PM, Andrew Thompson wrote: > > > On 21 October 2014 03:42, Bryan Venteicher wrote: > >> Author: bryanv >> Date: Mon Oct 20 14:42:42 2014 >> New Revision: 273331 >> URL: https://svnweb.freebsd.org/changeset/base/273331 >> >> Log: >> Add vxlan interface >> >> vxlan creates a virtual LAN by encapsulating the inner Ethernet frame in >> a UDP packet. This implementation is based on RFC7348. >> >> Currently, the IPv6 support is not fully compliant with the >> specification: >> we should be able to receive UPDv6 packets with a zero checksum, but we >> need to support RFC6935 first. Patches for this should come soon. >> >> > > Given it is self contained new code is it a 10.1 MFC candidate? > > > I hope to merge vxlan to 10-STABLE in a couple of months, but need to determine how to handle prerequisite commit r272886. There's ways without it - use a mbuf tag and a reserved field in the inpcb - but it would be nice if that commit is MFC'able. https://svnweb.freebsd.org/base?view=revision&revision=272886 > Andrew > >