bond: Fix comment on bond_entry::tag
authorZoltan Kiss <zoltan.kiss@citrix.com>
Sat, 5 Jan 2013 21:42:16 +0000 (21:42 +0000)
committerBen Pfaff <blp@nicira.com>
Tue, 15 Jan 2013 23:25:01 +0000 (15:25 -0800)
The hash entry tag connects to facet(s), not slaves.

Signed-off-by: Zoltan Kiss <zoltan.kiss@citrix.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
AUTHORS
lib/bond.c

diff --git a/AUTHORS b/AUTHORS
index b34287e..dc2b05c 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -79,6 +79,7 @@ Vivien Bernet-Rollande  vbr@soprive.net
 Wei Yongjun             yjwei@cn.fujitsu.com
 Yasuhito Takamiya       yasuhito@gmail.com
 Yu Zhiguo               yuzg@cn.fujitsu.com
+Zoltan Kiss             zoltan.kiss@citrix.com
 Zhi Yong Wu             zwu.kernel@gmail.com
 
 The following additional people are mentioned in commit logs as having
index fe84f9c..c05e0c8 100644 (file)
@@ -51,7 +51,7 @@ VLOG_DEFINE_THIS_MODULE(bond);
 struct bond_entry {
     struct bond_slave *slave;   /* Assigned slave, NULL if unassigned. */
     uint64_t tx_bytes;          /* Count of bytes recently transmitted. */
-    tag_type tag;               /* Tag for entry<->slave association. */
+    tag_type tag;               /* Tag for entry<->facet association. */
     struct list list_node;      /* In bond_slave's 'entries' list. */
 };