Deleted Added
full compact
ieee80211_var.h (283541) ieee80211_var.h (283567)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 283541 2015-05-25 20:06:49Z glebius $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 283567 2015-05-26 12:51:14Z glebius $
27 */
28#ifndef _NET80211_IEEE80211_VAR_H_
29#define _NET80211_IEEE80211_VAR_H_
30
31/*
32 * Definitions for IEEE 802.11 drivers.
33 */
34/* NB: portability glue must go first */

--- 95 unchanged lines hidden (view full) ---

130 struct taskqueue *ic_tq; /* deferred state thread */
131 struct task ic_parent_task; /* deferred parent processing */
132 struct task ic_promisc_task;/* deferred promisc update */
133 struct task ic_mcast_task; /* deferred mcast update */
134 struct task ic_chan_task; /* deferred channel change */
135 struct task ic_bmiss_task; /* deferred beacon miss hndlr */
136 struct task ic_chw_task; /* deferred HT CHW update */
137
27 */
28#ifndef _NET80211_IEEE80211_VAR_H_
29#define _NET80211_IEEE80211_VAR_H_
30
31/*
32 * Definitions for IEEE 802.11 drivers.
33 */
34/* NB: portability glue must go first */

--- 95 unchanged lines hidden (view full) ---

130 struct taskqueue *ic_tq; /* deferred state thread */
131 struct task ic_parent_task; /* deferred parent processing */
132 struct task ic_promisc_task;/* deferred promisc update */
133 struct task ic_mcast_task; /* deferred mcast update */
134 struct task ic_chan_task; /* deferred channel change */
135 struct task ic_bmiss_task; /* deferred beacon miss hndlr */
136 struct task ic_chw_task; /* deferred HT CHW update */
137
138 counter_u64_t ic_ierrors; /* input errors */
139 counter_u64_t ic_oerrors; /* output errors */
140
138 uint32_t ic_flags; /* state flags */
139 uint32_t ic_flags_ext; /* extended state flags */
140 uint32_t ic_flags_ht; /* HT state flags */
141 uint32_t ic_flags_ven; /* vendor state flags */
142 uint32_t ic_caps; /* capabilities */
143 uint32_t ic_htcaps; /* HT capabilities */
144 uint32_t ic_htextcaps; /* HT extended capabilities */
145 uint32_t ic_cryptocaps; /* crypto capabilities */

--- 841 unchanged lines hidden ---
141 uint32_t ic_flags; /* state flags */
142 uint32_t ic_flags_ext; /* extended state flags */
143 uint32_t ic_flags_ht; /* HT state flags */
144 uint32_t ic_flags_ven; /* vendor state flags */
145 uint32_t ic_caps; /* capabilities */
146 uint32_t ic_htcaps; /* HT capabilities */
147 uint32_t ic_htextcaps; /* HT extended capabilities */
148 uint32_t ic_cryptocaps; /* crypto capabilities */

--- 841 unchanged lines hidden ---