Searched refs:max_bufs (Results 1 - 6 of 6) sorted by relevance

/linux-master/drivers/s390/char/
H A Dmonwriter.c313 module_param_named(max_bufs, mon_max_bufs, int, 0644);
314 MODULE_PARM_DESC(max_bufs, "Maximum number of sample monitor data buffers "
/linux-master/drivers/net/ethernet/amazon/ena/
H A Dena_eth_com.h50 int max_bufs; member in struct:ena_com_rx_ctx
H A Dena_eth_com.c554 if (unlikely(nb_hw_desc > ena_rx_ctx->max_bufs)) {
556 "Too many RX cdescs (%d) > MAX(%d)\n", nb_hw_desc, ena_rx_ctx->max_bufs);
H A Dena_netdev.c1236 ena_rx_ctx.max_bufs = rx_ring->sgl_size;
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_txrx.c2436 * @max_bufs: maximum number of buffers
2439 * such we need to check cases where we have max_bufs-1 fragments or more as we
2440 * can potentially require max_bufs+1 DMA transactions, 1 for the TSO header, 1
2444 static bool __idpf_chk_linearize(struct sk_buff *skb, unsigned int max_bufs) argument
2450 /* no need to check if number of frags is less than max_bufs - 1 */
2452 if (nr_frags < (max_bufs - 1))
2456 * of max_bufs-2 fragments totals at least gso_size.
2458 nr_frags -= max_bufs - 2;
2463 * provides one byte which is why we are limited to max_bufs-2
2519 * @max_bufs
2528 idpf_chk_linearize(struct sk_buff *skb, unsigned int max_bufs, unsigned int count) argument
[all...]
H A Didpf_txrx.h1011 bool idpf_chk_linearize(struct sk_buff *skb, unsigned int max_bufs,

Completed in 129 milliseconds