From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN1lp-0006uC-W5 for qemu-devel@nongnu.org; Mon, 10 Mar 2014 11:05:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WN1ll-0003Kx-2j for qemu-devel@nongnu.org; Mon, 10 Mar 2014 11:05:37 -0400 Received: from mail-ea0-x229.google.com ([2a00:1450:4013:c01::229]:44045) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN1lk-0003Kq-Rr for qemu-devel@nongnu.org; Mon, 10 Mar 2014 11:05:33 -0400 Received: by mail-ea0-f169.google.com with SMTP id h14so3812421eaj.28 for ; Mon, 10 Mar 2014 08:05:32 -0700 (PDT) Date: Mon, 10 Mar 2014 16:05:29 +0100 From: Stefan Hajnoczi Message-ID: <20140310150529.GC32400@stefanha-thinkpad.redhat.com> References: <1394451098-296108-1-git-send-email-anton.ivanov@kot-begemot.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1394451098-296108-1-git-send-email-anton.ivanov@kot-begemot.co.uk> Subject: Re: [Qemu-devel] [PATCH] net: L2TPv3 transport List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anton.ivanov@kot-begemot.co.uk Cc: Anton Ivanov , pbonzini@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com, afaerber@suse.de On Mon, Mar 10, 2014 at 11:31:38AM +0000, anton.ivanov@kot-begemot.co.uk wrote: > From: Anton Ivanov > > This tranport allows to connect a qemu nic to a static Ethernet > over L2TPv3 tunnel. The transport supports all options present > in the linux kernel implementation. It allows qemu to connect > to any linux host running kernel 3.3+, most routers and network > > Signed-off-by: Anton Ivanov > --- > net/Makefile.objs | 1 + > net/clients.h | 2 + > net/l2tpv3.c | 585 +++++++++++++++++++++++++++++++++++++++++++++++++++++ > net/net.c | 3 + > qapi-schema.json | 59 +++++- > qemu-options.hx | 94 +++++++-- > 6 files changed, 730 insertions(+), 14 deletions(-) > create mode 100644 net/l2tpv3.c This patch is missing the [PATCH v4] revision number and still uses IPPROTO_L2TP, which is being discussed in the previous thread. I guess it will be necessary to send one more revision once that discussion is finished. Stefan