diff options
Diffstat (limited to 'net/sched/sch_ingress.c')
-rw-r--r-- | net/sched/sch_ingress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_ingress.c b/net/sched/sch_ingress.c index d377deca4f20..902d82ea764b 100644 --- a/net/sched/sch_ingress.c +++ b/net/sched/sch_ingress.c | |||
@@ -338,7 +338,7 @@ rtattr_failure: | |||
338 | return -1; | 338 | return -1; |
339 | } | 339 | } |
340 | 340 | ||
341 | static struct Qdisc_class_ops ingress_class_ops = { | 341 | static const struct Qdisc_class_ops ingress_class_ops = { |
342 | .graft = ingress_graft, | 342 | .graft = ingress_graft, |
343 | .leaf = ingress_leaf, | 343 | .leaf = ingress_leaf, |
344 | .get = ingress_get, | 344 | .get = ingress_get, |
@@ -352,7 +352,7 @@ static struct Qdisc_class_ops ingress_class_ops = { | |||
352 | .dump = NULL, | 352 | .dump = NULL, |
353 | }; | 353 | }; |
354 | 354 | ||
355 | static struct Qdisc_ops ingress_qdisc_ops = { | 355 | static struct Qdisc_ops ingress_qdisc_ops __read_mostly = { |
356 | .next = NULL, | 356 | .next = NULL, |
357 | .cl_ops = &ingress_class_ops, | 357 | .cl_ops = &ingress_class_ops, |
358 | .id = "ingress", | 358 | .id = "ingress", |