diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-09-15 14:06:46 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-15 17:48:23 -0400 |
commit | a57a65ba47b71e7af67af30466c7e0bd2ec5786d (patch) | |
tree | dede472aa465a94419df0f4623d1dc5fd392424c /net | |
parent | 80dcbd12fb30932bb001b913ffe36843e2a1fe3a (diff) | |
download | linux-a57a65ba47b71e7af67af30466c7e0bd2ec5786d.tar.bz2 |
net_sched: fix an allocation bug in tcindex_set_parms()
Fixes: commit 331b72922c5f58d48fd ("net: sched: RCU cls_tcindex")
Cc: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/cls_tcindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_tcindex.c b/net/sched/cls_tcindex.c index a9f4279fbd69..a02ca7298385 100644 --- a/net/sched/cls_tcindex.c +++ b/net/sched/cls_tcindex.c @@ -241,7 +241,7 @@ tcindex_set_parms(struct net *net, struct tcf_proto *tp, unsigned long base, * allocate new tcindex data and RCU assign it onto root. Keeping * perfect hash and hash pointers from old data. */ - cp = kzalloc(sizeof(cp), GFP_KERNEL); + cp = kzalloc(sizeof(*cp), GFP_KERNEL); if (!cp) return -ENOMEM; |