Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Oct 2015 15:20:33 +0000 (UTC)
From:      Andriy Voskoboinyk <avos@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r289757 - head/sys/dev/wtap
Message-ID:  <201510221520.t9MFKXZp029600@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 		}
 		



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510221520.t9MFKXZp029600>