Skip to content

Commit

Permalink
net_sched: move tp->root allocation into route4_init()
Browse files Browse the repository at this point in the history
Cc: Jamal Hadi Salim <[email protected]>
Signed-off-by: Cong Wang <[email protected]>
Acked-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
congwang authored and davem330 committed Mar 6, 2015
1 parent 2490c65 commit a05c2d1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions net/sched/cls_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,13 @@ static unsigned long route4_get(struct tcf_proto *tp, u32 handle)

static int route4_init(struct tcf_proto *tp)
{
struct route4_head *head;

head = kzalloc(sizeof(struct route4_head), GFP_KERNEL);
if (head == NULL)
return -ENOBUFS;

rcu_assign_pointer(tp->root, head);
return 0;
}

Expand Down Expand Up @@ -484,13 +491,6 @@ static int route4_change(struct net *net, struct sk_buff *in_skb,
return -EINVAL;

err = -ENOBUFS;
if (head == NULL) {
head = kzalloc(sizeof(struct route4_head), GFP_KERNEL);
if (head == NULL)
goto errout;
rcu_assign_pointer(tp->root, head);
}

f = kzalloc(sizeof(struct route4_filter), GFP_KERNEL);
if (!f)
goto errout;
Expand Down

0 comments on commit a05c2d1

Please sign in to comment.