bond: Add bonding driver and LACP protocol
[vpp.git] / src / vnet / bonding / device.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #define _GNU_SOURCE
19 #include <stdint.h>
20 #include <vnet/ethernet/ethernet.h>
21 #include <vnet/ip/ip4_packet.h>
22 #include <vnet/ip/ip6_packet.h>
23 #include <vnet/ip/ip6_hop_by_hop_packet.h>
24 #include <vnet/bonding/node.h>
25
26 #define foreach_bond_tx_error     \
27   _(NONE, "no error")             \
28   _(IF_DOWN, "interface down")    \
29   _(NO_SLAVE, "no slave")
30
31 typedef enum
32 {
33 #define _(f,s) BOND_TX_ERROR_##f,
34   foreach_bond_tx_error
35 #undef _
36     BOND_TX_N_ERROR,
37 } bond_tx_error_t;
38
39 static char *bond_tx_error_strings[] = {
40 #define _(n,s) s,
41   foreach_bond_tx_error
42 #undef _
43 };
44
45 static u8 *
46 format_bond_tx_trace (u8 * s, va_list * args)
47 {
48   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
49   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
50   bond_packet_trace_t *t = va_arg (*args, bond_packet_trace_t *);
51   vnet_hw_interface_t *hw, *hw1;
52   vnet_main_t *vnm = vnet_get_main ();
53
54   hw = vnet_get_sup_hw_interface (vnm, t->sw_if_index);
55   hw1 = vnet_get_sup_hw_interface (vnm, t->bond_sw_if_index);
56   s = format (s, "src %U, dst %U, %s -> %s",
57               format_ethernet_address, t->ethernet.src_address,
58               format_ethernet_address, t->ethernet.dst_address,
59               hw->name, hw1->name);
60
61   return s;
62 }
63
64 u8 *
65 format_bond_interface_name (u8 * s, va_list * args)
66 {
67   u32 dev_instance = va_arg (*args, u32);
68   bond_main_t *bm = &bond_main;
69   bond_if_t *bif = pool_elt_at_index (bm->interfaces, dev_instance);
70
71   s = format (s, "BondEthernet%lu", bif->dev_instance);
72
73   return s;
74 }
75
76 static __clib_unused clib_error_t *
77 bond_subif_add_del_function (vnet_main_t * vnm, u32 hw_if_index,
78                              struct vnet_sw_interface_t *st, int is_add)
79 {
80   /* Nothing for now */
81   return 0;
82 }
83
84 static clib_error_t *
85 bond_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
86 {
87   vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
88   uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
89   bond_main_t *bm = &bond_main;
90   bond_if_t *bif = pool_elt_at_index (bm->interfaces, hif->dev_instance);
91
92   bif->admin_up = is_up;
93   if (is_up && vec_len (bif->active_slaves))
94     vnet_hw_interface_set_flags (vnm, bif->hw_if_index,
95                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
96   return 0;
97 }
98
99 static inline u32
100 bond_load_balance_broadcast (vlib_main_t * vm, vlib_node_runtime_t * node,
101                              bond_if_t * bif, vlib_buffer_t * b0)
102 {
103   vnet_main_t *vnm = vnet_get_main ();
104   vlib_buffer_t *c0;
105   int i;
106   u32 *to_next = 0;
107   u32 sw_if_index;
108   vlib_frame_t *f;
109
110
111   for (i = 1; i < vec_len (bif->active_slaves); i++)
112     {
113       sw_if_index = *vec_elt_at_index (bif->active_slaves, i);
114       f = vnet_get_frame_to_sw_interface (vnm, sw_if_index);
115       to_next = vlib_frame_vector_args (f);
116       to_next += f->n_vectors;
117       c0 = vlib_buffer_copy (vm, b0);
118       if (PREDICT_TRUE (c0 != 0))
119         {
120           vnet_buffer (c0)->sw_if_index[VLIB_TX] = sw_if_index;
121           to_next[0] = vlib_get_buffer_index (vm, c0);
122           f->n_vectors++;
123           vnet_put_frame_to_sw_interface (vnm, sw_if_index, f);
124         }
125     }
126
127   return 0;
128 }
129
130 static inline u32
131 bond_load_balance_l2 (vlib_main_t * vm, vlib_node_runtime_t * node,
132                       bond_if_t * bif, vlib_buffer_t * b0)
133 {
134   ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
135   u32 a = 0, b = 0, c = 0, t1, t2;
136   u16 t11, t22;
137
138   memcpy (&t1, eth->src_address, sizeof (t1));
139   memcpy (&t11, &eth->src_address[4], sizeof (t11));
140   a = t1 ^ t11;
141
142   memcpy (&t2, eth->dst_address, sizeof (t2));
143   memcpy (&t22, &eth->dst_address[4], sizeof (t22));
144   b = t2 ^ t22;
145
146   hash_v3_mix32 (a, b, c);
147   hash_v3_finalize32 (a, b, c);
148
149   return c % vec_len (bif->active_slaves);
150 }
151
152 static inline u16 *
153 bond_locate_ethertype (ethernet_header_t * eth)
154 {
155   u16 *ethertype_p;
156   ethernet_vlan_header_t *vlan;
157
158   if (!ethernet_frame_is_tagged (clib_net_to_host_u16 (eth->type)))
159     {
160       ethertype_p = &eth->type;
161     }
162   else
163     {
164       vlan = (void *) (eth + 1);
165       ethertype_p = &vlan->type;
166       if (*ethertype_p == ntohs (ETHERNET_TYPE_VLAN))
167         {
168           vlan++;
169           ethertype_p = &vlan->type;
170         }
171     }
172   return ethertype_p;
173 }
174
175 static inline u32
176 bond_load_balance_l23 (vlib_main_t * vm, vlib_node_runtime_t * node,
177                        bond_if_t * bif, vlib_buffer_t * b0)
178 {
179   ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
180   u8 ip_version;
181   ip4_header_t *ip4;
182   u16 ethertype, *ethertype_p;
183
184   ethertype_p = bond_locate_ethertype (eth);
185   ethertype = *ethertype_p;
186
187   if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
188       (ethertype != htons (ETHERNET_TYPE_IP6)))
189     return (bond_load_balance_l2 (vm, node, bif, b0));
190
191   ip4 = (ip4_header_t *) (ethertype_p + 1);
192   ip_version = (ip4->ip_version_and_header_length >> 4);
193
194   if (ip_version == 0x4)
195     {
196       u16 t11, t22;
197       u32 a = 0, b = 0, c = 0, t1, t2;
198
199       memcpy (&t1, eth->src_address, sizeof (t1));
200       memcpy (&t11, &eth->src_address[4], sizeof (t11));
201       a = t1 ^ t11;
202
203       memcpy (&t2, eth->dst_address, sizeof (t2));
204       memcpy (&t22, &eth->dst_address[4], sizeof (t22));
205       b = t2 ^ t22;
206
207       c = ip4->src_address.data_u32 ^ ip4->dst_address.data_u32;
208
209       hash_v3_mix32 (a, b, c);
210       hash_v3_finalize32 (a, b, c);
211
212       return c % vec_len (bif->active_slaves);
213     }
214   else if (ip_version == 0x6)
215     {
216       u64 a, b, c;
217       u64 t1 = 0, t2 = 0;
218       ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
219
220       memcpy (&t1, eth->src_address, sizeof (eth->src_address));
221       memcpy (&t2, eth->dst_address, sizeof (eth->dst_address));
222       a = t1 ^ t2;
223
224       b = (ip6->src_address.as_u64[0] ^ ip6->src_address.as_u64[1]);
225       c = (ip6->dst_address.as_u64[0] ^ ip6->dst_address.as_u64[1]);
226
227       hash_mix64 (a, b, c);
228       return c % vec_len (bif->active_slaves);
229     }
230   return (bond_load_balance_l2 (vm, node, bif, b0));
231 }
232
233 static inline u32
234 bond_load_balance_l34 (vlib_main_t * vm, vlib_node_runtime_t * node,
235                        bond_if_t * bif, vlib_buffer_t * b0)
236 {
237   ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
238   u8 ip_version;
239   uword is_tcp_udp = 0;
240   ip4_header_t *ip4;
241   u16 ethertype, *ethertype_p;
242
243   ethertype_p = bond_locate_ethertype (eth);
244   ethertype = *ethertype_p;
245
246   if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
247       (ethertype != htons (ETHERNET_TYPE_IP6)))
248     return (bond_load_balance_l2 (vm, node, bif, b0));
249
250   ip4 = (ip4_header_t *) (ethertype_p + 1);
251   ip_version = (ip4->ip_version_and_header_length >> 4);
252
253   if (ip_version == 0x4)
254     {
255       u32 a = 0, b = 0, c = 0, t1, t2;
256       tcp_header_t *tcp = (void *) (ip4 + 1);
257       is_tcp_udp = (ip4->protocol == IP_PROTOCOL_TCP) ||
258         (ip4->protocol == IP_PROTOCOL_UDP);
259
260       a = ip4->src_address.data_u32 ^ ip4->dst_address.data_u32;
261
262       t1 = is_tcp_udp ? tcp->src : 0;
263       t2 = is_tcp_udp ? tcp->dst : 0;
264       b = t1 + (t2 << 16);
265
266       hash_v3_mix32 (a, b, c);
267       hash_v3_finalize32 (a, b, c);
268
269       return c % vec_len (bif->active_slaves);
270     }
271   else if (ip_version == 0x6)
272     {
273       u64 a, b, c;
274       u64 t1, t2;
275       ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
276       tcp_header_t *tcp = (void *) (ip6 + 1);
277
278       if (PREDICT_TRUE ((ip6->protocol == IP_PROTOCOL_TCP) ||
279                         (ip6->protocol == IP_PROTOCOL_UDP)))
280         {
281           is_tcp_udp = 1;
282           tcp = (void *) (ip6 + 1);
283         }
284       else if (ip6->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)
285         {
286           ip6_hop_by_hop_header_t *hbh =
287             (ip6_hop_by_hop_header_t *) (ip6 + 1);
288           if ((hbh->protocol == IP_PROTOCOL_TCP)
289               || (hbh->protocol == IP_PROTOCOL_UDP))
290             {
291               is_tcp_udp = 1;
292               tcp = (tcp_header_t *) ((u8 *) hbh + ((hbh->length + 1) << 3));
293             }
294         }
295       a = (ip6->src_address.as_u64[0] ^ ip6->src_address.as_u64[1]);
296       b = (ip6->dst_address.as_u64[0] ^ ip6->dst_address.as_u64[1]);
297
298       t1 = is_tcp_udp ? tcp->src : 0;
299       t2 = is_tcp_udp ? tcp->dst : 0;
300       c = (t2 << 16) | t1;
301       hash_mix64 (a, b, c);
302
303       return c % vec_len (bif->active_slaves);
304     }
305
306   return (bond_load_balance_l2 (vm, node, bif, b0));
307 }
308
309 static inline u32
310 bond_load_balance_round_robin (vlib_main_t * vm,
311                                vlib_node_runtime_t * node,
312                                bond_if_t * bif, vlib_buffer_t * b0)
313 {
314   bif->lb_rr_last_index++;
315   bif->lb_rr_last_index %= vec_len (bif->active_slaves);
316
317   return bif->lb_rr_last_index;
318 }
319
320 static inline u32
321 bond_load_balance_active_backup (vlib_main_t * vm,
322                                  vlib_node_runtime_t * node,
323                                  bond_if_t * bif, vlib_buffer_t * b0)
324 {
325   /* First interface is the active, the rest is backup */
326   return 0;
327 }
328
329 static bond_load_balance_func_t bond_load_balance_table[] = {
330 #define _(v,f,s, p) { bond_load_balance_##p },
331   foreach_bond_lb_algo
332 #undef _
333 };
334
335 static uword
336 bond_tx_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
337             vlib_frame_t * frame)
338 {
339   vnet_interface_output_runtime_t *rund = (void *) node->runtime_data;
340   bond_main_t *bm = &bond_main;
341   bond_if_t *bif = pool_elt_at_index (bm->interfaces, rund->dev_instance);
342   u32 bi0, bi1, bi2, bi3;
343   vlib_buffer_t *b0, *b1, *b2, *b3;
344   u32 *from = vlib_frame_vector_args (frame);
345   u32 n_left_from;
346   ethernet_header_t *eth;
347   u32 next0 = 0, next1 = 0, next2 = 0, next3 = 0;
348   u32 port, port1, port2, port3;
349   u32 sw_if_index, sw_if_index1, sw_if_index2, sw_if_index3;
350   bond_packet_trace_t *t0;
351   uword n_trace = vlib_get_trace_count (vm, node);
352   u16 thread_index = vlib_get_thread_index ();
353   vnet_main_t *vnm = vnet_get_main ();
354   u32 *to_next, *to_next1, *to_next2, *to_next3;
355   u32 sif_if_index, sif_if_index1, sif_if_index2, sif_if_index3;
356   vlib_frame_t *f, *f1, *f2, *f3;
357
358   if (PREDICT_FALSE (bif->admin_up == 0))
359     {
360       vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
361       vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
362                                      VNET_INTERFACE_COUNTER_DROP,
363                                      thread_index, bif->sw_if_index,
364                                      frame->n_vectors);
365       vlib_error_count (vm, node->node_index, BOND_TX_ERROR_IF_DOWN,
366                         frame->n_vectors);
367       return frame->n_vectors;
368     }
369
370   if (PREDICT_FALSE (vec_len (bif->active_slaves) == 0))
371     {
372       bi0 = from[0];
373       b0 = vlib_get_buffer (vm, bi0);
374       vlib_increment_combined_counter
375         (vnet_main.interface_main.combined_sw_if_counters
376          + VNET_INTERFACE_COUNTER_TX, thread_index, bif->sw_if_index,
377          frame->n_vectors, b0->current_length);
378
379       vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
380       vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
381                                      VNET_INTERFACE_COUNTER_DROP,
382                                      thread_index, bif->sw_if_index,
383                                      frame->n_vectors);
384       vlib_error_count (vm, node->node_index, BOND_TX_ERROR_NO_SLAVE,
385                         frame->n_vectors);
386       return frame->n_vectors;
387     }
388
389   /* Number of buffers / pkts */
390   n_left_from = frame->n_vectors;
391
392   while (n_left_from >= 8)
393     {
394       // Prefetch next iteration
395       {
396         vlib_buffer_t *p4, *p5, *p6, *p7;
397
398         p4 = vlib_get_buffer (vm, from[4]);
399         p5 = vlib_get_buffer (vm, from[5]);
400         p6 = vlib_get_buffer (vm, from[6]);
401         p7 = vlib_get_buffer (vm, from[7]);
402
403         vlib_prefetch_buffer_header (p4, STORE);
404         vlib_prefetch_buffer_header (p5, STORE);
405         vlib_prefetch_buffer_header (p6, STORE);
406         vlib_prefetch_buffer_header (p7, STORE);
407
408         CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, LOAD);
409         CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, LOAD);
410         CLIB_PREFETCH (p6->data, CLIB_CACHE_LINE_BYTES, LOAD);
411         CLIB_PREFETCH (p7->data, CLIB_CACHE_LINE_BYTES, LOAD);
412       }
413
414       bi0 = from[0];
415       bi1 = from[1];
416       bi2 = from[2];
417       bi3 = from[3];
418
419       b0 = vlib_get_buffer (vm, bi0);
420       b1 = vlib_get_buffer (vm, bi1);
421       b2 = vlib_get_buffer (vm, bi2);
422       b3 = vlib_get_buffer (vm, bi3);
423
424       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
425       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
426       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b2);
427       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b3);
428
429       sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
430       sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_TX];
431       sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_TX];
432       sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_TX];
433
434       port =
435         (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif, b0);
436       port1 =
437         (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif, b1);
438       port2 =
439         (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif, b2);
440       port3 =
441         (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif, b3);
442
443       sif_if_index = *vec_elt_at_index (bif->active_slaves, port);
444       sif_if_index1 = *vec_elt_at_index (bif->active_slaves, port1);
445       sif_if_index2 = *vec_elt_at_index (bif->active_slaves, port2);
446       sif_if_index3 = *vec_elt_at_index (bif->active_slaves, port3);
447
448       vnet_buffer (b0)->sw_if_index[VLIB_TX] = sif_if_index;
449       vnet_buffer (b1)->sw_if_index[VLIB_TX] = sif_if_index1;
450       vnet_buffer (b2)->sw_if_index[VLIB_TX] = sif_if_index2;
451       vnet_buffer (b3)->sw_if_index[VLIB_TX] = sif_if_index3;
452
453       f = vnet_get_frame_to_sw_interface (vnm, sif_if_index);
454       f1 = vnet_get_frame_to_sw_interface (vnm, sif_if_index1);
455       f2 = vnet_get_frame_to_sw_interface (vnm, sif_if_index2);
456       f3 = vnet_get_frame_to_sw_interface (vnm, sif_if_index3);
457
458       to_next = vlib_frame_vector_args (f);
459       to_next1 = vlib_frame_vector_args (f1);
460       to_next2 = vlib_frame_vector_args (f2);
461       to_next3 = vlib_frame_vector_args (f3);
462
463       to_next += f->n_vectors;
464       to_next1 += f1->n_vectors;
465       to_next2 += f2->n_vectors;
466       to_next3 += f3->n_vectors;
467
468       to_next[0] = vlib_get_buffer_index (vm, b0);
469       to_next1[0] = vlib_get_buffer_index (vm, b1);
470       to_next2[0] = vlib_get_buffer_index (vm, b2);
471       to_next3[0] = vlib_get_buffer_index (vm, b3);
472
473       f->n_vectors++;
474       f1->n_vectors++;
475       f2->n_vectors++;
476       f3->n_vectors++;
477
478       vnet_put_frame_to_sw_interface (vnm, sif_if_index, f);
479       vnet_put_frame_to_sw_interface (vnm, sif_if_index1, f1);
480       vnet_put_frame_to_sw_interface (vnm, sif_if_index2, f2);
481       vnet_put_frame_to_sw_interface (vnm, sif_if_index3, f3);
482
483       if (PREDICT_FALSE (n_trace > 0))
484         {
485           vlib_trace_buffer (vm, node, next0, b0, 0 /* follow_chain */ );
486           vlib_set_trace_count (vm, node, --n_trace);
487           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
488           eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
489           t0->ethernet = *eth;
490           t0->sw_if_index = sw_if_index;
491           t0->bond_sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
492
493           if (PREDICT_TRUE (n_trace > 0))
494             {
495               vlib_trace_buffer (vm, node, next1, b1, 0 /* follow_chain */ );
496               vlib_set_trace_count (vm, node, --n_trace);
497               t0 = vlib_add_trace (vm, node, b1, sizeof (*t0));
498               eth = (ethernet_header_t *) vlib_buffer_get_current (b1);
499               t0->ethernet = *eth;
500               t0->sw_if_index = sw_if_index1;
501               t0->bond_sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
502
503               if (PREDICT_TRUE (n_trace > 0))
504                 {
505                   vlib_trace_buffer (vm, node, next2, b2,
506                                      0 /* follow_chain */ );
507                   vlib_set_trace_count (vm, node, --n_trace);
508                   t0 = vlib_add_trace (vm, node, b2, sizeof (*t0));
509                   eth = (ethernet_header_t *) vlib_buffer_get_current (b2);
510                   t0->ethernet = *eth;
511                   t0->sw_if_index = sw_if_index2;
512                   t0->bond_sw_if_index =
513                     vnet_buffer (b2)->sw_if_index[VLIB_TX];
514
515                   if (PREDICT_TRUE (n_trace > 0))
516                     {
517                       vlib_trace_buffer (vm, node, next3, b3,
518                                          0 /* follow_chain */ );
519                       vlib_set_trace_count (vm, node, --n_trace);
520                       t0 = vlib_add_trace (vm, node, b3, sizeof (*t0));
521                       eth =
522                         (ethernet_header_t *) vlib_buffer_get_current (b3);
523                       t0->ethernet = *eth;
524                       t0->sw_if_index = sw_if_index3;
525                       t0->bond_sw_if_index =
526                         vnet_buffer (b3)->sw_if_index[VLIB_TX];
527                     }
528                 }
529             }
530         }
531
532       from += 4;
533       n_left_from -= 4;
534     }
535
536   while (n_left_from > 0)
537     {
538       // Prefetch next iteration
539       if (n_left_from > 1)
540         {
541           vlib_buffer_t *p2;
542
543           p2 = vlib_get_buffer (vm, from[1]);
544           vlib_prefetch_buffer_header (p2, STORE);
545           CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD);
546         }
547
548       bi0 = from[0];
549       b0 = vlib_get_buffer (vm, bi0);
550
551       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
552
553       sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
554
555       port =
556         (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif, b0);
557       sif_if_index = *vec_elt_at_index (bif->active_slaves, port);
558       vnet_buffer (b0)->sw_if_index[VLIB_TX] = sif_if_index;
559       f = vnet_get_frame_to_sw_interface (vnm, sif_if_index);
560       to_next = vlib_frame_vector_args (f);
561       to_next += f->n_vectors;
562
563       to_next[0] = vlib_get_buffer_index (vm, b0);
564       f->n_vectors++;
565       vnet_put_frame_to_sw_interface (vnm, sif_if_index, f);
566
567       if (PREDICT_FALSE (n_trace > 0))
568         {
569           vlib_trace_buffer (vm, node, next0, b0, 0 /* follow_chain */ );
570           vlib_set_trace_count (vm, node, --n_trace);
571           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
572           eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
573           t0->ethernet = *eth;
574           t0->sw_if_index = sw_if_index;
575           t0->bond_sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
576         }
577
578       from += 1;
579       n_left_from -= 1;
580     }
581
582   vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters
583                                  + VNET_INTERFACE_COUNTER_TX, thread_index,
584                                  bif->sw_if_index, frame->n_vectors);
585
586   return frame->n_vectors;
587 }
588
589 /* *INDENT-OFF* */
590 VNET_DEVICE_CLASS (bond_dev_class) = {
591   .name = "bond",
592   .tx_function = bond_tx_fn,
593   .tx_function_n_errors = BOND_TX_N_ERROR,
594   .tx_function_error_strings = bond_tx_error_strings,
595   .format_device_name = format_bond_interface_name,
596   .admin_up_down_function = bond_interface_admin_up_down,
597   .subif_add_del_function = bond_subif_add_del_function,
598   .format_tx_trace = format_bond_tx_trace,
599 };
600
601 VLIB_DEVICE_TX_FUNCTION_MULTIARCH (bond_dev_class, bond_tx_fn)
602 /* *INDENT-ON* */
603
604 /*
605  * fd.io coding-style-patch-verification: ON
606  *
607  * Local Variables:
608  * eval: (c-set-style "gnu")
609  * End:
610  */