aboutsummaryrefslogtreecommitdiff
path: root/lib/bond.c
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-11-14 17:02:44 -0800
committerEthan Jackson <ethan@nicira.com>2011-11-18 12:40:09 -0800
commit7b9f1974f42d63693676d2611f9276fb8227e071 (patch)
tree60daa5e268d516ea3c719f866bc353606cc106d6 /lib/bond.c
parentceb176fdb72bb7ce90debc66e1eeb1d25823d30a (diff)
bond: Remove dead conditional.
Diffstat (limited to 'lib/bond.c')
-rw-r--r--lib/bond.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/bond.c b/lib/bond.c
index 90498f63..bb5d4996 100644
--- a/lib/bond.c
+++ b/lib/bond.c
@@ -1001,11 +1001,7 @@ bond_unixctl_show(struct unixctl_conn *conn,
ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
hash, be->tx_bytes / 1024);
- if (bond->balance != BM_SLB) {
- continue;
- }
-
- /* XXX How can we list the MACs assigned to hashes? */
+ /* XXX How can we list the MACs assigned to hashes of SLB bonds? */
}
}
unixctl_command_reply(conn, 200, ds_cstr(&ds));