diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-11-21 01:19:40 -0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:30:18 -0800 |
commit | c7b1b24978d89efab7d420bbdc9557dbe6259c89 (patch) | |
tree | f9b05485df5d1cb1532d0251e3da782e1bbad9fe /net/sched/ematch.c | |
parent | b3ab09f9e1681916df349d54232fbb3f8a79bfa5 (diff) | |
download | linux-3.10-c7b1b24978d89efab7d420bbdc9557dbe6259c89.tar.gz linux-3.10-c7b1b24978d89efab7d420bbdc9557dbe6259c89.tar.bz2 linux-3.10-c7b1b24978d89efab7d420bbdc9557dbe6259c89.zip |
[SCHED]: Use kmemdup & kzalloc where appropriate
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net/sched/ematch.c')
-rw-r--r-- | net/sched/ematch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/ematch.c b/net/sched/ematch.c index 0fd0768a17c..8f8a16da72a 100644 --- a/net/sched/ematch.c +++ b/net/sched/ematch.c @@ -251,12 +251,11 @@ static int tcf_em_validate(struct tcf_proto *tp, goto errout; em->data = *(u32 *) data; } else { - void *v = kmalloc(data_len, GFP_KERNEL); + void *v = kmemdup(data, data_len, GFP_KERNEL); if (v == NULL) { err = -ENOBUFS; goto errout; } - memcpy(v, data, data_len); em->data = (unsigned long) v; } } |