From owner-svn-src-all@freebsd.org Thu Oct 22 15:20:34 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5046A1A8C1; Thu, 22 Oct 2015 15:20:34 +0000 (UTC) (envelope-from avos@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E25819B4; Thu, 22 Oct 2015 15:20:34 +0000 (UTC) (envelope-from avos@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9MFKXTC029601; Thu, 22 Oct 2015 15:20:33 GMT (envelope-from avos@FreeBSD.org) Received: (from avos@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9MFKXZp029600; Thu, 22 Oct 2015 15:20:33 GMT (envelope-from avos@FreeBSD.org) Message-Id: <201510221520.t9MFKXZp029600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avos set sender to avos@FreeBSD.org using -f From: Andriy Voskoboinyk Date: Thu, 22 Oct 2015 15:20:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289757 - head/sys/dev/wtap X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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, 22 Oct 2015 15:20:34 -0000 Author: avos Date: Thu Oct 22 15:20:33 2015 New Revision: 289757 URL: https://svnweb.freebsd.org/changeset/base/289757 Log: wtap: remove some obsolete radiotap(9) code This code is not needed since r192468. Approved by: adrian (mentor) Differential Revision: https://reviews.freebsd.org/D3975 Modified: head/sys/dev/wtap/if_wtap.c Modified: head/sys/dev/wtap/if_wtap.c ============================================================================== --- head/sys/dev/wtap/if_wtap.c Thu Oct 22 15:15:45 2015 (r289756) +++ head/sys/dev/wtap/if_wtap.c Thu Oct 22 15:20:33 2015 (r289757) @@ -527,15 +527,9 @@ wtap_rx_proc(void *arg, int npending) /* * Sending station is known, dispatch directly. */ -#if 0 - ieee80211_radiotap_rx(ni->ni_vap, m); -#endif type = ieee80211_input(ni, m, 1<<7, 10); ieee80211_free_node(ni); } else { -#if 0 - ieee80211_radiotap_rx_all(ic, m); -#endif type = ieee80211_input_all(ic, m, 1<<7, 10); }