Lines Matching +full:re +full:- +full:enabled
1 /* SPDX-License-Identifier: GPL-2.0 */
8 * struct netdev_config - queue-related configuration for a netdev
61 * struct netdev_stat_ops - netdev ops for fine grained stats
67 * on entry (specifically they are *not* zero-initialized). Drivers should
72 * queues are queried by the per-queue callbacks. This means that per-queue
79 * is issued to collect the delta, and then a series of per-queue callbacks.
89 * the @get_base_stats and subsequent per-queue calls are performed
92 * Device drivers are encouraged to reset the per-queue statistics when
94 * per-queue statistics is currently to detect traffic imbalance.
113 * struct netdev_queue_mgmt_ops - netdev ops for queue management
155 * wake attempts. The try-stop should happen from the xmit handler,
159 * The try-stop side is expected to run from the xmit handler and therefore
162 * handler may lead to xmit queue being enabled but not run.
191 _res = -1; \
197 * netif_txq_maybe_stop() - locklessly stop a Tx queue, if needed
201 * enabled
202 * @start_thrs: minimal number of descriptors to re-enable the queue, can be
207 * return up-to-date information when evaluated!
212 * 1 if the queue was left enabled
213 * -1 if the queue was re-enabled (raced with waking)
239 * __netif_txq_completed_wake() - locklessly wake a Tx queue, if needed
244 * @start_thrs: minimal number of descriptors to re-enable the queue
250 * return up-to-date information when evaluated!
255 * 1 if the queue was already enabled (or disabled but @down_cond is true)
256 * -1 if the queue was left unchanged (@start_thrs not reached)
270 _res = -1; \