summaryrefslogtreecommitdiff
path: root/net/ipv4/ipvs/ip_vs_lblc.c
diff options
context:
space:
mode:
authorRoberto Nibali <ratz@drugphish.ch>2005-12-13 23:17:20 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-01-03 13:10:43 -0800
commitf1f71e03b17db3b9edb0264a8be7719bd5c35582 (patch)
treef782baf31e8ea2b14b1b126bd9557c76c56032a5 /net/ipv4/ipvs/ip_vs_lblc.c
parent65a45441d7e91ef6107fadbc55f775db4ba23874 (diff)
downloadlinux-3.10-f1f71e03b17db3b9edb0264a8be7719bd5c35582.tar.gz
linux-3.10-f1f71e03b17db3b9edb0264a8be7719bd5c35582.tar.bz2
linux-3.10-f1f71e03b17db3b9edb0264a8be7719bd5c35582.zip
[IPVS]: remove dead code
This patch removes dead code. I don't see the reason to keep this cruft around, besides cluttering the nice and functionally working code. Signed-off-by: Roberto Nibali <ratz@drugphish.ch> Signed-off-by: Horms <horms@verge.net.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipvs/ip_vs_lblc.c')
-rw-r--r--net/ipv4/ipvs/ip_vs_lblc.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/net/ipv4/ipvs/ip_vs_lblc.c b/net/ipv4/ipvs/ip_vs_lblc.c
index 561cda326fa..b6dad7e3710 100644
--- a/net/ipv4/ipvs/ip_vs_lblc.c
+++ b/net/ipv4/ipvs/ip_vs_lblc.c
@@ -228,33 +228,6 @@ ip_vs_lblc_hash(struct ip_vs_lblc_table *tbl, struct ip_vs_lblc_entry *en)
}
-#if 0000
-/*
- * Unhash ip_vs_lblc_entry from ip_vs_lblc_table.
- * returns bool success.
- */
-static int ip_vs_lblc_unhash(struct ip_vs_lblc_table *tbl,
- struct ip_vs_lblc_entry *en)
-{
- if (list_empty(&en->list)) {
- IP_VS_ERR("ip_vs_lblc_unhash(): request for not hashed entry, "
- "called from %p\n", __builtin_return_address(0));
- return 0;
- }
-
- /*
- * Remove it from the table
- */
- write_lock(&tbl->lock);
- list_del(&en->list);
- INIT_LIST_HEAD(&en->list);
- write_unlock(&tbl->lock);
-
- return 1;
-}
-#endif
-
-
/*
* Get ip_vs_lblc_entry associated with supplied parameters.
*/