Lines Matching refs:agg_free
2495 struct rx_agg *agg, *agg_next, *agg_free = NULL; in rtl_get_free_rx() local
2502 if (!agg_free) { in rtl_get_free_rx()
2504 agg_free = agg; in rtl_get_free_rx()
2517 if (!agg_free && atomic_read(&tp->rx_count) < tp->rx_pending) in rtl_get_free_rx()
2518 agg_free = alloc_rx_agg(tp, mflags); in rtl_get_free_rx()
2520 return agg_free; in rtl_get_free_rx()
2559 struct rx_agg *agg, *agg_free; in rx_bottom() local
2580 agg_free = rtl_get_free_rx(tp, GFP_ATOMIC); in rx_bottom()
2607 if (!agg_free || tp->rx_copybreak > len) in rx_bottom()
2680 WARN_ON(!agg_free && page_count(agg->page) > 1); in rx_bottom()
2682 if (agg_free) { in rx_bottom()
2685 list_add(&agg_free->list, &tp->rx_used); in rx_bottom()
2688 agg = agg_free; in rx_bottom()