From owner-svn-src-all@FreeBSD.ORG Thu Jan 16 20:46:14 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0430E81C; Thu, 16 Jan 2014 20:46:14 +0000 (UTC) Received: from mail-ea0-x22d.google.com (mail-ea0-x22d.google.com [IPv6:2a00:1450:4013:c01::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 138081754; Thu, 16 Jan 2014 20:46:12 +0000 (UTC) Received: by mail-ea0-f173.google.com with SMTP id o10so1383749eaj.4 for ; Thu, 16 Jan 2014 12:46:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=DMH58uIPInWsE7ei8lNZ8YoIVzqv7PV1zWc/PdnE+UY=; b=EFM+8TW5/+dn1FUUUcKLJqHFBlZvhq8rdoNDWbzufH+YL6R520Mmd7p1uqFkcVX65t kFCMFh0xUDqKWUYDxhPyCo1SyihUIVH6U/yaB+KWsPamu8v+DosOj+NWqKXzMN4zwK9U qSM8wPGxx6ukFfaVHuXAGOHnbA0L/cD2FzOdTH8+ZsmmpTkDJhWL0V53VlMSg4zJIPGU Er+c3mKgf5TeMgXol2xOmDZchPA3MUNEDhKLppUduMw5YiImfQRdqdeR75EoCByuCH1M oClPQuvX/SV1kPATAgRbS22o1TuKB2gkqksiQIqHdbeqPdPgLRPRaYu0TB5YhblyKRt4 D3Cg== MIME-Version: 1.0 X-Received: by 10.15.95.72 with SMTP id bc48mr14780471eeb.49.1389905170890; Thu, 16 Jan 2014 12:46:10 -0800 (PST) Sender: hiren.panchasara@gmail.com Received: by 10.14.2.66 with HTTP; Thu, 16 Jan 2014 12:46:10 -0800 (PST) In-Reply-To: <201401160020.s0G0KgwY004039@svn.freebsd.org> References: <201401160020.s0G0KgwY004039@svn.freebsd.org> Date: Thu, 16 Jan 2014 12:46:10 -0800 X-Google-Sender-Auth: hp7DjWMVAv2cQNNC5yt-vM5yAQw Message-ID: Subject: Re: svn commit: r260700 - in head: sys/dev/netmap tools/tools/netmap From: hiren panchasara To: Luigi Rizzo Content-Type: text/plain; charset=UTF-8 Cc: svn-src-head , svn-src-all , src-committers X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 16 Jan 2014 20:46:14 -0000 On Wed, Jan 15, 2014 at 4:20 PM, Luigi Rizzo wrote: > Author: luigi > Date: Thu Jan 16 00:20:42 2014 > New Revision: 260700 > URL: http://svnweb.freebsd.org/changeset/base/260700 > > Log: > netmap_user.h: > add separate rx/tx ring indexes > add ring specifier in nm_open device name > > netmap.c, netmap_vale.c > more consistent errno numbers > > netmap_generic.c > correctly handle failure in registering interfaces. > > tools/tools/netmap/ > massive cleanup of the example programs > (a lot of common code is now in netmap_user.h.) > > nm_util.[ch] are going away soon. > pcap.c will also go when i commit the native netmap support for libpcap. > > Modified: > head/sys/dev/netmap/netmap.c > head/sys/dev/netmap/netmap_generic.c > head/sys/dev/netmap/netmap_vale.c > head/tools/tools/netmap/Makefile > head/tools/tools/netmap/bridge.c > head/tools/tools/netmap/nm_util.c > head/tools/tools/netmap/nm_util.h > head/tools/tools/netmap/pcap.c > head/tools/tools/netmap/pkt-gen.c > head/tools/tools/netmap/vale-ctl.c > Hi Luigi, Doing make in tools/tools/netmap gives me a bunch of errors because "struct nm_desc_t" doesn't have members like if_flags, if_reqcap and if_curcap. It seems those members were coming from struct my_ring which is no more there. FreeBSD 11.0-CURRENT #0 r260789 cheers, Hiren