aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/cls_basic.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-01-23 23:34:11 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:11:18 -0500
commit4b3550ef530cfc153fa91f0b37cbda448bad11c6 (patch)
tree02aba7497298f220629af8e47f48e56df86d428f /net/sched/cls_basic.c
parentcee63723b358e594225e812d6e14a2a0abfd5c88 (diff)
[NET_SCHED]: Use nla_nest_start/nla_nest_end
Use nla_nest_start/nla_nest_end for dumping nested attributes. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_basic.c')
-rw-r--r--net/sched/cls_basic.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/sched/cls_basic.c b/net/sched/cls_basic.c
index 524b7885dc3..6d08b429635 100644
--- a/net/sched/cls_basic.c
+++ b/net/sched/cls_basic.c
@@ -246,16 +246,16 @@ static int basic_dump(struct tcf_proto *tp, unsigned long fh,
246 struct sk_buff *skb, struct tcmsg *t) 246 struct sk_buff *skb, struct tcmsg *t)
247{ 247{
248 struct basic_filter *f = (struct basic_filter *) fh; 248 struct basic_filter *f = (struct basic_filter *) fh;
249 unsigned char *b = skb_tail_pointer(skb); 249 struct nlattr *nest;
250 struct nlattr *nla;
251 250
252 if (f == NULL) 251 if (f == NULL)
253 return skb->len; 252 return skb->len;
254 253
255 t->tcm_handle = f->handle; 254 t->tcm_handle = f->handle;
256 255
257 nla = (struct nlattr *) b; 256 nest = nla_nest_start(skb, TCA_OPTIONS);
258 NLA_PUT(skb, TCA_OPTIONS, 0, NULL); 257 if (nest == NULL)
258 goto nla_put_failure;
259 259
260 if (f->res.classid) 260 if (f->res.classid)
261 NLA_PUT(skb, TCA_BASIC_CLASSID, sizeof(u32), &f->res.classid); 261 NLA_PUT(skb, TCA_BASIC_CLASSID, sizeof(u32), &f->res.classid);
@@ -264,11 +264,11 @@ static int basic_dump(struct tcf_proto *tp, unsigned long fh,
264 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0) 264 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0)
265 goto nla_put_failure; 265 goto nla_put_failure;
266 266
267 nla->nla_len = skb_tail_pointer(skb) - b; 267 nla_nest_end(skb, nest);
268 return skb->len; 268 return skb->len;
269 269
270nla_put_failure: 270nla_put_failure:
271 nlmsg_trim(skb, b); 271 nla_nest_cancel(skb, nest);
272 return -1; 272 return -1;
273} 273}
274 274