Skip to content

Commit

Permalink
net_sched: move tp->root allocation into fw_init()
Browse files Browse the repository at this point in the history
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
WANG Cong authored and David S. Miller committed Mar 6, 2015
1 parent a05c2d1 commit 33f8b9e
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions net/sched/cls_fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

struct fw_head {
u32 mask;
bool mask_set;
struct fw_filter __rcu *ht[HTSIZE];
struct rcu_head rcu;
};
Expand Down Expand Up @@ -113,6 +114,14 @@ static unsigned long fw_get(struct tcf_proto *tp, u32 handle)

static int fw_init(struct tcf_proto *tp)
{
struct fw_head *head;

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

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

Expand Down Expand Up @@ -286,17 +295,11 @@ static int fw_change(struct net *net, struct sk_buff *in_skb,
if (!handle)
return -EINVAL;

if (head == NULL) {
u32 mask = 0xFFFFFFFF;
if (!head->mask_set) {
head->mask = 0xFFFFFFFF;
if (tb[TCA_FW_MASK])
mask = nla_get_u32(tb[TCA_FW_MASK]);

head = kzalloc(sizeof(struct fw_head), GFP_KERNEL);
if (head == NULL)
return -ENOBUFS;
head->mask = mask;

rcu_assign_pointer(tp->root, head);
head->mask = nla_get_u32(tb[TCA_FW_MASK]);
head->mask_set = true;
}

f = kzalloc(sizeof(struct fw_filter), GFP_KERNEL);
Expand Down

0 comments on commit 33f8b9e

Please sign in to comment.