Message ID | 20220829081704.255235-4-shaozhengchao@huawei.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: sched: remove unused variables | expand |
diff --git a/include/uapi/linux/pkt_sched.h b/include/uapi/linux/pkt_sched.h index 55fadb3ace17..f2e0426e2414 100644 --- a/include/uapi/linux/pkt_sched.h +++ b/include/uapi/linux/pkt_sched.h @@ -335,7 +335,6 @@ enum { TCA_GRED_VQ_STAT_FORCED_DROP, /* u32 */ TCA_GRED_VQ_STAT_FORCED_MARK, /* u32 */ TCA_GRED_VQ_STAT_PDROP, /* u32 */ - TCA_GRED_VQ_STAT_OTHER, /* u32 */ TCA_GRED_VQ_FLAGS, /* u32 */ __TCA_GRED_VQ_MAX };
In the previous patch, the variable "other" that is not used is removed. The enumerated value TCA_GRED_VQ_STAT_OTHER of is not used. Remove it. Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com> --- include/uapi/linux/pkt_sched.h | 1 - 1 file changed, 1 deletion(-)