echo_skb_max      421 drivers/net/can/dev.c 	for (i = 0; i < priv->echo_skb_max; i++) {
echo_skb_max      442 drivers/net/can/dev.c 	BUG_ON(idx >= priv->echo_skb_max);
echo_skb_max      477 drivers/net/can/dev.c 	if (idx >= priv->echo_skb_max) {
echo_skb_max      479 drivers/net/can/dev.c 			   __func__, idx, priv->echo_skb_max);
echo_skb_max      529 drivers/net/can/dev.c 	BUG_ON(idx >= priv->echo_skb_max);
echo_skb_max      710 drivers/net/can/dev.c struct net_device *alloc_candev_mqs(int sizeof_priv, unsigned int echo_skb_max,
echo_skb_max      732 drivers/net/can/dev.c 	if (echo_skb_max)
echo_skb_max      734 drivers/net/can/dev.c 			echo_skb_max * sizeof(struct sk_buff *);
echo_skb_max      746 drivers/net/can/dev.c 	if (echo_skb_max) {
echo_skb_max      747 drivers/net/can/dev.c 		priv->echo_skb_max = echo_skb_max;
echo_skb_max      749 drivers/net/can/dev.c 			(size - echo_skb_max * sizeof(struct sk_buff *));
echo_skb_max     1062 drivers/net/can/grcan.c 	priv->can.echo_skb_max = dma->tx.size;
echo_skb_max     1129 drivers/net/can/grcan.c 	priv->can.echo_skb_max = 0;
echo_skb_max      782 drivers/net/can/kvaser_pciefd.c 	can->echo_idx = (can->echo_idx + 1) % can->can.echo_skb_max;
echo_skb_max      962 drivers/net/can/kvaser_pciefd.c 		can->can.echo_skb_max = KVASER_PCIEFD_CAN_TX_MAX_COUNT;
echo_skb_max     1402 drivers/net/can/m_can/m_can.c 	unsigned int wrap = cdev->can.echo_skb_max;
echo_skb_max      704 drivers/net/can/peak_canfd/peak_canfd.c 	priv->echo_idx = (priv->echo_idx + 1) % priv->can.echo_skb_max;
echo_skb_max      739 drivers/net/can/peak_canfd/peak_canfd.c 					int echo_skb_max)
echo_skb_max      745 drivers/net/can/peak_canfd/peak_canfd.c 	if (echo_skb_max < 0)
echo_skb_max      746 drivers/net/can/peak_canfd/peak_canfd.c 		echo_skb_max = PCANFD_ECHO_SKB_MAX;
echo_skb_max      749 drivers/net/can/peak_canfd/peak_canfd.c 	ndev = alloc_candev(sizeof_priv, echo_skb_max);
echo_skb_max       42 drivers/net/can/peak_canfd/peak_canfd_user.h 					int echo_skb_max);
echo_skb_max       72 include/linux/can/dev.h 	unsigned int echo_skb_max;
echo_skb_max      180 include/linux/can/dev.h struct net_device *alloc_candev_mqs(int sizeof_priv, unsigned int echo_skb_max,
echo_skb_max      182 include/linux/can/dev.h #define alloc_candev(sizeof_priv, echo_skb_max) \
echo_skb_max      183 include/linux/can/dev.h 	alloc_candev_mqs(sizeof_priv, echo_skb_max, 1, 1)
echo_skb_max      184 include/linux/can/dev.h #define alloc_candev_mq(sizeof_priv, echo_skb_max, count) \
echo_skb_max      185 include/linux/can/dev.h 	alloc_candev_mqs(sizeof_priv, echo_skb_max, count, count)