aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2015-03-13 01:06:43 -0400
committerDavid S. Miller <davem@davemloft.net>2015-03-13 01:57:07 -0400
commit8a4bff714fc088729abdd479acbfe934ddf16f7e (patch)
tree1c9f3b5847004fa63a576e87fbac992bda10770b
parent849e8a0ca8d5d286510ab30b5f67b91aa6965ef6 (diff)
tcp_metrics: Remove the unused return code from tcp_metrics_flush_all
tcp_metrics_flush_all always returns 0. Remove the unnecessary return code. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv4/tcp_metrics.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c
index 461c3d2e1ca4..0d07e14f2ca5 100644
--- a/net/ipv4/tcp_metrics.c
+++ b/net/ipv4/tcp_metrics.c
@@ -1043,7 +1043,7 @@ out_free:
1043 1043
1044#define deref_genl(p) rcu_dereference_protected(p, lockdep_genl_is_held()) 1044#define deref_genl(p) rcu_dereference_protected(p, lockdep_genl_is_held())
1045 1045
1046static int tcp_metrics_flush_all(struct net *net) 1046static void tcp_metrics_flush_all(struct net *net)
1047{ 1047{
1048 unsigned int max_rows = 1U << net->ipv4.tcp_metrics_hash_log; 1048 unsigned int max_rows = 1U << net->ipv4.tcp_metrics_hash_log;
1049 struct tcpm_hash_bucket *hb = net->ipv4.tcp_metrics_hash; 1049 struct tcpm_hash_bucket *hb = net->ipv4.tcp_metrics_hash;
@@ -1064,7 +1064,6 @@ static int tcp_metrics_flush_all(struct net *net)
1064 tm = next; 1064 tm = next;
1065 } 1065 }
1066 } 1066 }
1067 return 0;
1068} 1067}
1069 1068
1070static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info) 1069static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
@@ -1081,8 +1080,10 @@ static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info)
1081 ret = parse_nl_addr(info, &daddr, &hash, 1); 1080 ret = parse_nl_addr(info, &daddr, &hash, 1);
1082 if (ret < 0) 1081 if (ret < 0)
1083 return ret; 1082 return ret;
1084 if (ret > 0) 1083 if (ret > 0) {
1085 return tcp_metrics_flush_all(net); 1084 tcp_metrics_flush_all(net);
1085 return 0;
1086 }
1086 ret = parse_nl_saddr(info, &saddr); 1087 ret = parse_nl_saddr(info, &saddr);
1087 if (ret < 0) 1088 if (ret < 0)
1088 src = false; 1089 src = false;