Lines Matching defs:dhd_if
99 typedef struct dhd_if { struct
100 struct dhd_info *info; /* back pointer to dhd_info */
102 struct net_device *net;
103 int idx; /* iface idx in dongle */
104 uint subunit; /* subunit */
105 uint8 mac_addr[ETHER_ADDR_LEN]; /* assigned MAC address */
106 bool set_macaddress;
107 bool set_multicast;
108 uint8 bssidx; /* bsscfg index for the interface */
109 bool attached; /* Delayed attachment when unset */
110 bool txflowcontrol; /* Per interface flow control indicator */
111 char name[IFNAMSIZ+1]; /* linux interface name */
112 char dngl_name[IFNAMSIZ+1]; /* corresponding dongle interface name */
113 struct net_device_stats stats;
114 struct list_head sta_list; /* sll of associated stations */
115 spinlock_t sta_list_lock; /* lock for manipulating sll */
116 uint32 ap_isolate; /* ap-isolation settings */
118 bool parp_enable;
119 bool parp_discard;
120 bool parp_allnode;
121 arp_table_t *phnd_arp_table;
123 bool dhcp_unicast;
124 bool block_ping;
125 bool grat_arp;
126 bool block_tdls;
129 bool mcast_regen_bss_enable;
153 } dhd_if_t; argument