diff options
author | Zhengchao Shao <shaozhengchao@huawei.com> | 2022-08-24 11:10:03 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-08-26 13:03:04 +0200 |
commit | 44387d1736c40a74085be354e2b5f37ca0689608 (patch) | |
tree | bf5cba8882865b7ab75aaa906ee2f74bb06b9cf9 /include/net/sch_generic.h | |
parent | Merge tag 'wireless-next-2022-08-26-v2' of git://git.kernel.org/pub/scm/linux... (diff) | |
download | linux-44387d1736c40a74085be354e2b5f37ca0689608.tar.xz linux-44387d1736c40a74085be354e2b5f37ca0689608.zip |
net: sched: remove unnecessary init of qdisc skb head
The memory allocated by using kzallloc_node and kcalloc has been cleared.
Therefore, the structure members of the new qdisc are 0. So there's no
need to explicitly assign a value of 0.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sch_generic.h')
-rw-r--r-- | include/net/sch_generic.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index f2958fb5ae08..7dc83400bde4 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h @@ -940,13 +940,6 @@ static inline void qdisc_purge_queue(struct Qdisc *sch) qdisc_tree_reduce_backlog(sch, qlen, backlog); } -static inline void qdisc_skb_head_init(struct qdisc_skb_head *qh) -{ - qh->head = NULL; - qh->tail = NULL; - qh->qlen = 0; -} - static inline void __qdisc_enqueue_tail(struct sk_buff *skb, struct qdisc_skb_head *qh) { |