Browse Source

[NET_SCHED]: mark classifier ops __read_mostly

Additionally remove unnecessary NULL initilizations of the next pointer.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Patrick McHardy 17 years ago
parent
commit
2eb9d75c72
6 changed files with 6 additions and 10 deletions
  1. 1 1
      net/sched/cls_api.c
  2. 1 1
      net/sched/cls_basic.c
  3. 1 2
      net/sched/cls_fw.c
  4. 1 2
      net/sched/cls_route.c
  5. 1 2
      net/sched/cls_tcindex.c
  6. 1 2
      net/sched/cls_u32.c

+ 1 - 1
net/sched/cls_api.c

@@ -31,7 +31,7 @@
 
 
 /* The list of all installed classifier types */
 /* The list of all installed classifier types */
 
 
-static struct tcf_proto_ops *tcf_proto_base;
+static struct tcf_proto_ops *tcf_proto_base __read_mostly;
 
 
 /* Protects list of registered TC modules. It is pure SMP lock. */
 /* Protects list of registered TC modules. It is pure SMP lock. */
 static DEFINE_RWLOCK(cls_mod_lock);
 static DEFINE_RWLOCK(cls_mod_lock);

+ 1 - 1
net/sched/cls_basic.c

@@ -271,7 +271,7 @@ rtattr_failure:
 	return -1;
 	return -1;
 }
 }
 
 
-static struct tcf_proto_ops cls_basic_ops = {
+static struct tcf_proto_ops cls_basic_ops __read_mostly = {
 	.kind		=	"basic",
 	.kind		=	"basic",
 	.classify	=	basic_classify,
 	.classify	=	basic_classify,
 	.init		=	basic_init,
 	.init		=	basic_init,

+ 1 - 2
net/sched/cls_fw.c

@@ -370,8 +370,7 @@ rtattr_failure:
 	return -1;
 	return -1;
 }
 }
 
 
-static struct tcf_proto_ops cls_fw_ops = {
-	.next		=	NULL,
+static struct tcf_proto_ops cls_fw_ops __read_mostly = {
 	.kind		=	"fw",
 	.kind		=	"fw",
 	.classify	=	fw_classify,
 	.classify	=	fw_classify,
 	.init		=	fw_init,
 	.init		=	fw_init,

+ 1 - 2
net/sched/cls_route.c

@@ -590,8 +590,7 @@ rtattr_failure:
 	return -1;
 	return -1;
 }
 }
 
 
-static struct tcf_proto_ops cls_route4_ops = {
-	.next		=	NULL,
+static struct tcf_proto_ops cls_route4_ops __read_mostly = {
 	.kind		=	"route",
 	.kind		=	"route",
 	.classify	=	route4_classify,
 	.classify	=	route4_classify,
 	.init		=	route4_init,
 	.init		=	route4_init,

+ 1 - 2
net/sched/cls_tcindex.c

@@ -485,8 +485,7 @@ rtattr_failure:
 	return -1;
 	return -1;
 }
 }
 
 
-static struct tcf_proto_ops cls_tcindex_ops = {
-	.next		=	NULL,
+static struct tcf_proto_ops cls_tcindex_ops __read_mostly = {
 	.kind		=	"tcindex",
 	.kind		=	"tcindex",
 	.classify	=	tcindex_classify,
 	.classify	=	tcindex_classify,
 	.init		=	tcindex_init,
 	.init		=	tcindex_init,

+ 1 - 2
net/sched/cls_u32.c

@@ -751,8 +751,7 @@ rtattr_failure:
 	return -1;
 	return -1;
 }
 }
 
 
-static struct tcf_proto_ops cls_u32_ops = {
-	.next		=	NULL,
+static struct tcf_proto_ops cls_u32_ops __read_mostly = {
 	.kind		=	"u32",
 	.kind		=	"u32",
 	.classify	=	u32_classify,
 	.classify	=	u32_classify,
 	.init		=	u32_init,
 	.init		=	u32_init,