diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-05-21 07:18:18 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-05-21 07:18:18 -0400 |
| commit | 85442b095993ab6b337e65e83be804e92e66be61 (patch) | |
| tree | a16b90537ce94e6a0c157047c9ac4e919efbf1ef /zebra/zebra_vxlan_private.h | |
| parent | abceee4119057ded851ea5825635ba4092c02fdf (diff) | |
zebra: Cleanup some nits from Review Comments
1) Small formating mistake fixed
2) Rename of a variable to give it a slightly better name
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vxlan_private.h')
| -rw-r--r-- | zebra/zebra_vxlan_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/zebra_vxlan_private.h b/zebra/zebra_vxlan_private.h index b2bfcecfc5..fa7075f2de 100644 --- a/zebra/zebra_vxlan_private.h +++ b/zebra/zebra_vxlan_private.h @@ -221,8 +221,8 @@ struct host_rb_entry { struct prefix p; }; -RB_HEAD(host_rb_entry_rb, host_rb_entry); -RB_PROTOTYPE(host_rb_entry_rb, host_rb_entry, hl_entry, +RB_HEAD(host_rb_tree_entry, host_rb_entry); +RB_PROTOTYPE(host_rb_tree_entry, host_rb_entry, hl_entry, host_rb_entry_compare); /* * MAC hash table. @@ -262,7 +262,7 @@ struct zebra_mac_t_ { struct list *neigh_list; /* list of hosts pointing to this remote RMAC */ - struct host_rb_entry_rb host_rb; + struct host_rb_tree_entry host_rb; }; /* @@ -336,7 +336,7 @@ struct zebra_neigh_t_ { struct in_addr r_vtep_ip; /* list of hosts pointing to this remote NH entry */ - struct host_rb_entry_rb host_rb; + struct host_rb_tree_entry host_rb; }; /* |
