rx_buff_mgmt       66 drivers/net/wireless/ath/wil6210/debugfs.c 		if (wil->rx_buff_mgmt.buff_arr &&
rx_buff_mgmt       67 drivers/net/wireless/ath/wil6210/debugfs.c 		    wil_val_in_range(buff_id, 0, wil->rx_buff_mgmt.size))
rx_buff_mgmt       68 drivers/net/wireless/ath/wil6210/debugfs.c 			has_skb = wil->rx_buff_mgmt.buff_arr[buff_id].skb;
rx_buff_mgmt     1136 drivers/net/wireless/ath/wil6210/debugfs.c 		} else if (wil->rx_buff_mgmt.buff_arr) {
rx_buff_mgmt     1143 drivers/net/wireless/ath/wil6210/debugfs.c 					      wil->rx_buff_mgmt.size))
rx_buff_mgmt     1146 drivers/net/wireless/ath/wil6210/debugfs.c 				skb = wil->rx_buff_mgmt.buff_arr[buff_id].skb;
rx_buff_mgmt     1238 drivers/net/wireless/ath/wil6210/debugfs.c 	struct wil_rx_buff_mgmt *rbm = &wil->rx_buff_mgmt;
rx_buff_mgmt     1260 drivers/net/wireless/ath/wil6210/debugfs.c DEFINE_SHOW_ATTRIBUTE(rx_buff_mgmt);
rx_buff_mgmt      171 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct list_head *active = &wil->rx_buff_mgmt.active;
rx_buff_mgmt      172 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct list_head *free = &wil->rx_buff_mgmt.free;
rx_buff_mgmt      174 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct wil_rx_buff *buff_arr = wil->rx_buff_mgmt.buff_arr;
rx_buff_mgmt      181 drivers/net/wireless/ath/wil6210/txrx_edma.c 		wil->rx_buff_mgmt.free_list_empty_cnt++;
rx_buff_mgmt      280 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct list_head *active = &wil->rx_buff_mgmt.active;
rx_buff_mgmt      283 drivers/net/wireless/ath/wil6210/txrx_edma.c 	if (!wil->rx_buff_mgmt.buff_arr)
rx_buff_mgmt      302 drivers/net/wireless/ath/wil6210/txrx_edma.c 		list_move(&rx_buff->list, &wil->rx_buff_mgmt.free);
rx_buff_mgmt      310 drivers/net/wireless/ath/wil6210/txrx_edma.c 	if (!wil->rx_buff_mgmt.buff_arr)
rx_buff_mgmt      318 drivers/net/wireless/ath/wil6210/txrx_edma.c 	kfree(wil->rx_buff_mgmt.buff_arr);
rx_buff_mgmt      319 drivers/net/wireless/ath/wil6210/txrx_edma.c 	wil->rx_buff_mgmt.buff_arr = NULL;
rx_buff_mgmt      326 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct list_head *active = &wil->rx_buff_mgmt.active;
rx_buff_mgmt      327 drivers/net/wireless/ath/wil6210/txrx_edma.c 	struct list_head *free = &wil->rx_buff_mgmt.free;
rx_buff_mgmt      330 drivers/net/wireless/ath/wil6210/txrx_edma.c 	wil->rx_buff_mgmt.buff_arr = kcalloc(size + 1,
rx_buff_mgmt      333 drivers/net/wireless/ath/wil6210/txrx_edma.c 	if (!wil->rx_buff_mgmt.buff_arr)
rx_buff_mgmt      343 drivers/net/wireless/ath/wil6210/txrx_edma.c 	buff_arr = wil->rx_buff_mgmt.buff_arr;
rx_buff_mgmt      349 drivers/net/wireless/ath/wil6210/txrx_edma.c 	wil->rx_buff_mgmt.size = size + 1;
rx_buff_mgmt      914 drivers/net/wireless/ath/wil6210/txrx_edma.c 	if (unlikely(!wil_val_in_range(buff_id, 1, wil->rx_buff_mgmt.size))) {
rx_buff_mgmt      924 drivers/net/wireless/ath/wil6210/txrx_edma.c 	skb = wil->rx_buff_mgmt.buff_arr[buff_id].skb;
rx_buff_mgmt      925 drivers/net/wireless/ath/wil6210/txrx_edma.c 	wil->rx_buff_mgmt.buff_arr[buff_id].skb = NULL;
rx_buff_mgmt      930 drivers/net/wireless/ath/wil6210/txrx_edma.c 		list_move_tail(&wil->rx_buff_mgmt.buff_arr[buff_id].list,
rx_buff_mgmt      931 drivers/net/wireless/ath/wil6210/txrx_edma.c 			       &wil->rx_buff_mgmt.free);
rx_buff_mgmt      954 drivers/net/wireless/ath/wil6210/txrx_edma.c 	list_move_tail(&wil->rx_buff_mgmt.buff_arr[buff_id].list,
rx_buff_mgmt      955 drivers/net/wireless/ath/wil6210/txrx_edma.c 		       &wil->rx_buff_mgmt.free);
rx_buff_mgmt     1009 drivers/net/wireless/ath/wil6210/wil6210.h 	struct wil_rx_buff_mgmt rx_buff_mgmt;