mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 23:51:37 +00:00
9dd6ad674c
The taprio qdisc will need to reconstruct a struct tc_mqprio_qopt from netdev settings once more in a future patch, but this code was already written twice, once in taprio and once in mqprio. Refactor the code to a helper in the common mqprio library. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
466 B
C
19 lines
466 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __SCH_MQPRIO_LIB_H
|
|
#define __SCH_MQPRIO_LIB_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct net_device;
|
|
struct netlink_ext_ack;
|
|
struct tc_mqprio_qopt;
|
|
|
|
int mqprio_validate_qopt(struct net_device *dev, struct tc_mqprio_qopt *qopt,
|
|
bool validate_queue_counts,
|
|
bool allow_overlapping_txqs,
|
|
struct netlink_ext_ack *extack);
|
|
void mqprio_qopt_reconstruct(struct net_device *dev,
|
|
struct tc_mqprio_qopt *qopt);
|
|
|
|
#endif
|