Deleted Added
full compact
if_athioctl.h (234090) if_athioctl.h (236833)
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 *
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 *
29 * $FreeBSD: head/sys/dev/ath/if_athioctl.h 234090 2012-04-10 07:23:37Z adrian $
29 * $FreeBSD: head/sys/dev/ath/if_athioctl.h 236833 2012-06-10 06:42:18Z adrian $
30 */
31
32/*
33 * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
34 */
35#ifndef _DEV_ATH_ATHIOCTL_H
36#define _DEV_ATH_ATHIOCTL_H
37

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

161 u_int32_t ast_tx_aggr_ok; /* aggregate TX ok */
162 u_int32_t ast_tx_aggr_fail; /* aggregate TX failed */
163 u_int32_t ast_tx_mcastq_overflow; /* multicast queue overflow */
164 u_int32_t ast_pad[1];
165};
166
167#define SIOCGATHSTATS _IOWR('i', 137, struct ifreq)
168#define SIOCZATHSTATS _IOWR('i', 139, struct ifreq)
30 */
31
32/*
33 * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
34 */
35#ifndef _DEV_ATH_ATHIOCTL_H
36#define _DEV_ATH_ATHIOCTL_H
37

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

161 u_int32_t ast_tx_aggr_ok; /* aggregate TX ok */
162 u_int32_t ast_tx_aggr_fail; /* aggregate TX failed */
163 u_int32_t ast_tx_mcastq_overflow; /* multicast queue overflow */
164 u_int32_t ast_pad[1];
165};
166
167#define SIOCGATHSTATS _IOWR('i', 137, struct ifreq)
168#define SIOCZATHSTATS _IOWR('i', 139, struct ifreq)
169#define SIOCGATHAGSTATS _IOWR('i', 141, struct ifreq)
169
170struct ath_diag {
171 char ad_name[IFNAMSIZ]; /* if name, e.g. "ath0" */
172 u_int16_t ad_id;
173#define ATH_DIAG_DYN 0x8000 /* allocate buffer in caller */
174#define ATH_DIAG_IN 0x4000 /* copy in parameters */
175#define ATH_DIAG_OUT 0x0000 /* copy out results (always) */
176#define ATH_DIAG_ID 0x0fff

--- 90 unchanged lines hidden ---
170
171struct ath_diag {
172 char ad_name[IFNAMSIZ]; /* if name, e.g. "ath0" */
173 u_int16_t ad_id;
174#define ATH_DIAG_DYN 0x8000 /* allocate buffer in caller */
175#define ATH_DIAG_IN 0x4000 /* copy in parameters */
176#define ATH_DIAG_OUT 0x0000 /* copy out results (always) */
177#define ATH_DIAG_ID 0x0fff

--- 90 unchanged lines hidden ---