diff mbox series

sch_choke: Use kvcalloc

Message ID 8f13c6144a9bd42a1bc5e281d77fb4bc53043e96.camel@perches.com
State Accepted
Delegated to: David Miller
Headers show
Series sch_choke: Use kvcalloc | expand

Commit Message

Joe Perches Jan. 28, 2020, 7:12 p.m. UTC
Convert the use of kvmalloc_array with __GFP_ZERO to
the equivalent kvcalloc.

Signed-off-by: Joe Perches <joe@perches.com>
---
 net/sched/sch_choke.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller Jan. 29, 2020, 10:58 a.m. UTC | #1
From: Joe Perches <joe@perches.com>
Date: Tue, 28 Jan 2020 11:12:03 -0800

> Convert the use of kvmalloc_array with __GFP_ZERO to
> the equivalent kvcalloc.
> 
> Signed-off-by: Joe Perches <joe@perches.com>

Applied.
diff mbox series

Patch

diff --git a/net/sched/sch_choke.c b/net/sched/sch_choke.c
index dba7037..a36974e 100644
--- a/net/sched/sch_choke.c
+++ b/net/sched/sch_choke.c
@@ -377,7 +377,7 @@  static int choke_change(struct Qdisc *sch, struct nlattr *opt,
 	if (mask != q->tab_mask) {
 		struct sk_buff **ntab;
 
-		ntab = kvmalloc_array((mask + 1), sizeof(struct sk_buff *), GFP_KERNEL | __GFP_ZERO);
+		ntab = kvcalloc(mask + 1, sizeof(struct sk_buff *), GFP_KERNEL);
 		if (!ntab)
 			return -ENOMEM;