diff options
Diffstat (limited to 'net/sched/cls_route.c')
-rw-r--r-- | net/sched/cls_route.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c index 7752586e918d..ae97238c57ad 100644 --- a/net/sched/cls_route.c +++ b/net/sched/cls_route.c | |||
@@ -348,7 +348,7 @@ static int route4_set_parms(struct tcf_proto *tp, unsigned long base, | |||
348 | goto errout; | 348 | goto errout; |
349 | if (nla_len(tb[TCA_ROUTE4_TO]) < sizeof(u32)) | 349 | if (nla_len(tb[TCA_ROUTE4_TO]) < sizeof(u32)) |
350 | goto errout; | 350 | goto errout; |
351 | to = *(u32*)nla_data(tb[TCA_ROUTE4_TO]); | 351 | to = nla_get_u32(tb[TCA_ROUTE4_TO]); |
352 | if (to > 0xFF) | 352 | if (to > 0xFF) |
353 | goto errout; | 353 | goto errout; |
354 | nhandle = to; | 354 | nhandle = to; |
@@ -359,14 +359,14 @@ static int route4_set_parms(struct tcf_proto *tp, unsigned long base, | |||
359 | goto errout; | 359 | goto errout; |
360 | if (nla_len(tb[TCA_ROUTE4_FROM]) < sizeof(u32)) | 360 | if (nla_len(tb[TCA_ROUTE4_FROM]) < sizeof(u32)) |
361 | goto errout; | 361 | goto errout; |
362 | id = *(u32*)nla_data(tb[TCA_ROUTE4_FROM]); | 362 | id = nla_get_u32(tb[TCA_ROUTE4_FROM]); |
363 | if (id > 0xFF) | 363 | if (id > 0xFF) |
364 | goto errout; | 364 | goto errout; |
365 | nhandle |= id << 16; | 365 | nhandle |= id << 16; |
366 | } else if (tb[TCA_ROUTE4_IIF]) { | 366 | } else if (tb[TCA_ROUTE4_IIF]) { |
367 | if (nla_len(tb[TCA_ROUTE4_IIF]) < sizeof(u32)) | 367 | if (nla_len(tb[TCA_ROUTE4_IIF]) < sizeof(u32)) |
368 | goto errout; | 368 | goto errout; |
369 | id = *(u32*)nla_data(tb[TCA_ROUTE4_IIF]); | 369 | id = nla_get_u32(tb[TCA_ROUTE4_IIF]); |
370 | if (id > 0x7FFF) | 370 | if (id > 0x7FFF) |
371 | goto errout; | 371 | goto errout; |
372 | nhandle |= (id | 0x8000) << 16; | 372 | nhandle |= (id | 0x8000) << 16; |
@@ -411,7 +411,7 @@ static int route4_set_parms(struct tcf_proto *tp, unsigned long base, | |||
411 | tcf_tree_unlock(tp); | 411 | tcf_tree_unlock(tp); |
412 | 412 | ||
413 | if (tb[TCA_ROUTE4_CLASSID]) { | 413 | if (tb[TCA_ROUTE4_CLASSID]) { |
414 | f->res.classid = *(u32*)nla_data(tb[TCA_ROUTE4_CLASSID]); | 414 | f->res.classid = nla_get_u32(tb[TCA_ROUTE4_CLASSID]); |
415 | tcf_bind_filter(tp, &f->res, base); | 415 | tcf_bind_filter(tp, &f->res, base); |
416 | } | 416 | } |
417 | 417 | ||