forked from Minki/linux
net: em_canid: remove useless statements from em_canid_change
tcf_ematch is allocated by kzalloc in function tcf_em_tree_validate(), so cm_old is always NULL. Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a3f5ee71cd
commit
2b74e2caec
@ -125,7 +125,6 @@ static int em_canid_change(struct tcf_proto *tp, void *data, int len,
|
||||
{
|
||||
struct can_filter *conf = data; /* Array with rules */
|
||||
struct canid_match *cm;
|
||||
struct canid_match *cm_old = (struct canid_match *)m->data;
|
||||
int i;
|
||||
|
||||
if (!len)
|
||||
@ -181,12 +180,6 @@ static int em_canid_change(struct tcf_proto *tp, void *data, int len,
|
||||
|
||||
m->datalen = sizeof(struct canid_match) + len;
|
||||
m->data = (unsigned long)cm;
|
||||
|
||||
if (cm_old != NULL) {
|
||||
pr_err("canid: Configuring an existing ematch!\n");
|
||||
kfree(cm_old);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user