diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/adj/adj_midchain.h | 2 | ||||
-rw-r--r-- | src/vnet/classify/vnet_classify.c | 12 | ||||
-rw-r--r-- | src/vnet/devices/virtio/vhost_user.c | 68 | ||||
-rw-r--r-- | src/vnet/ethernet/node.c | 2 | ||||
-rw-r--r-- | src/vnet/interface_cli.c | 9 | ||||
-rw-r--r-- | src/vnet/ip/ip4_source_and_port_range_check.c | 7 | ||||
-rw-r--r-- | src/vnet/ip6-nd/ip6_ra.c | 68 | ||||
-rw-r--r-- | src/vnet/ipsec/ipsec.rst | 4 | ||||
-rw-r--r-- | src/vnet/l2/l2_rw.c | 2 | ||||
-rw-r--r-- | src/vnet/mpls/interface.c | 2 | ||||
-rw-r--r-- | src/vnet/qos/qos.api | 2 | ||||
-rw-r--r-- | src/vnet/qos/qos_store.c | 6 | ||||
-rw-r--r-- | src/vnet/srmpls/sr_mpls.h | 2 | ||||
-rw-r--r-- | src/vnet/srv6/sr.h | 2 | ||||
-rw-r--r-- | src/vnet/srv6/sr_policy_rewrite.c | 4 |
15 files changed, 108 insertions, 84 deletions
diff --git a/src/vnet/adj/adj_midchain.h b/src/vnet/adj/adj_midchain.h index 5fb0ee8efb3..85294122f08 100644 --- a/src/vnet/adj/adj_midchain.h +++ b/src/vnet/adj/adj_midchain.h @@ -99,7 +99,7 @@ extern void adj_nbr_midchain_stack(adj_index_t adj_index, * The FIB entry to stack on * * @param fct - * The chain type to use from the fib entry fowarding + * The chain type to use from the fib entry forwarding */ extern void adj_nbr_midchain_stack_on_fib_entry(adj_index_t adj_index, fib_node_index_t fei, diff --git a/src/vnet/classify/vnet_classify.c b/src/vnet/classify/vnet_classify.c index 0b819db3573..4fb4f336582 100644 --- a/src/vnet/classify/vnet_classify.c +++ b/src/vnet/classify/vnet_classify.c @@ -2043,7 +2043,7 @@ vlib_enable_disable_pkt_trace_filter (int enable) * It's reasonably likely that folks will configure a single * table with one or two matches. As a result, we configure * 8 hash buckets and 128K of match rule space. One can override - * the defaults by specifiying "buckets <nnn>" and "memory-size <xxx>" + * the defaults by specifying "buckets <nnn>" and "memory-size <xxx>" * as desired. * * To build up complex filter chains, repeatedly issue the @@ -2079,16 +2079,18 @@ vlib_enable_disable_pkt_trace_filter (int enable) * * Configure a simple classify filter, and configure pcap rx trace to use it: * - * <b><em>classify filter rx mask l3 ip4 src match l3 ip4 src 192.168.1.11"</em></b><br> + * @cliexcmd{classify filter rx mask l3 ip4 src match l3 ip4 src 192.168.1.11} * <b><em>pcap rx trace on max 100 filter</em></b> * * Configure another fairly simple filter * - * <b><em>classify filter mask l3 ip4 src dst match l3 ip4 src 192.168.1.10 dst 192.168.2.10"</em></b> + * @cliexcmd{classify filter mask l3 ip4 src dst match l3 ip4 src 192.168.1.10 + * dst 192.168.2.10} * * * Configure a filter for use with the vpp packet tracer: - * <b><em>classify filter trace mask l3 ip4 src dst match l3 ip4 src 192.168.1.10 dst 192.168.2.10"</em></b> + * @cliexcmd{classify filter trace mask l3 ip4 src dst match l3 ip4 src + * 192.168.1.10 dst 192.168.2.10} * <b><em>trace add dpdk-input 100 filter</em></b> * * Clear classifier filters @@ -2096,7 +2098,7 @@ vlib_enable_disable_pkt_trace_filter (int enable) * <b><em>classify filter [trace | rx | tx | <intfc>] del</em></b> * * To display the top-level classifier tables for each use case: - * <b><em>show classify filter</em/></b> + * <b><em>show classify filter</em></b> * * To inspect the classifier tables, use * diff --git a/src/vnet/devices/virtio/vhost_user.c b/src/vnet/devices/virtio/vhost_user.c index 089e08aabb4..cd37d4c59f8 100644 --- a/src/vnet/devices/virtio/vhost_user.c +++ b/src/vnet/devices/virtio/vhost_user.c @@ -2343,23 +2343,25 @@ done: * * There are several parameters associated with a vHost interface: * - * - <b>socket <socket-filename></b> - Name of the linux socket used by hypervisor - * and VPP to manage the vHost interface. If in '<em>server</em>' mode, VPP will - * create the socket if it does not already exist. If in '<em>client</em>' mode, - * hypervisor will create the socket if it does not already exist. The VPP code - * is indifferent to the file location. However, if SELinux is enabled, then the - * socket needs to be created in '<em>/var/run/vpp/</em>'. + * - <b>socket <socket-filename></b> - Name of the linux socket used by + * hypervisor and VPP to manage the vHost interface. If in <em>server</em> + * mode, VPP will create the socket if it does not already exist. If in + * <em>client</em> mode, hypervisor will create the socket if it does not + * already exist. The VPP code is indifferent to the file location. However, + * if SELinux is enabled, then the socket needs to be created in + * <em>/var/run/vpp/</em>. * - * - <b>server</b> - Optional flag to indicate that VPP should be the server for - * the linux socket. If not provided, VPP will be the client. In '<em>server</em>' - * mode, the VM can be reset without tearing down the vHost Interface. In - * '<em>client</em>' mode, VPP can be reset without bringing down the VM and - * tearing down the vHost Interface. + * - <b>server</b> - Optional flag to indicate that VPP should be the server + * for the linux socket. If not provided, VPP will be the client. In + * <em>server</em> mode, the VM can be reset without tearing down the vHost + * Interface. In <em>client</em> mode, VPP can be reset without bringing down + * the VM and tearing down the vHost Interface. * - * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at - * startup. <b>This is intended for degugging only.</b> It is recommended that this - * parameter not be used except by experienced users. By default, all supported - * features will be advertised. Otherwise, provide the set of features desired. + * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated + * at startup. <b>This is intended for degugging only.</b> It is recommended + * that this parameter not be used except by experienced users. By default, + * all supported features will be advertised. Otherwise, provide the set of + * features desired. * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE @@ -2373,18 +2375,21 @@ done: * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either * X:X:X:X:X:X unix or X.X.X cisco format. * - * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance - * in the name to be specified. If instance already exists, name will be used - * anyway and multiple instances will have the same name. Use with caution. + * - <b>renumber <dev_instance></b> - Optional parameter which allows the + * instance in the name to be specified. If instance already exists, name + * will be used anyway and multiple instances will have the same name. Use + * with caution. * * @cliexpar - * Example of how to create a vhost interface with VPP as the client and all features enabled: + * Example of how to create a vhost interface with VPP as the client and all + * features enabled: * @cliexstart{create vhost-user socket /var/run/vpp/vhost1.sock} * VirtualEthernet0/0/0 * @cliexend - * Example of how to create a vhost interface with VPP as the server and with just - * multiple queues enabled: - * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server feature-mask 0x40400000} + * Example of how to create a vhost interface with VPP as the server and with + * just multiple queues enabled: + * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server + * feature-mask 0x40400000} * VirtualEthernet0/0/1 * @cliexend * Once the vHost interface is created, enable the interface using: @@ -2422,9 +2427,9 @@ VLIB_CLI_COMMAND (vhost_user_delete_command, static) = { /*? * Display the attributes of a single vHost User interface (provide interface - * name), multiple vHost User interfaces (provide a list of interface names seperated - * by spaces) or all Vhost User interfaces (omit an interface name to display all - * vHost interfaces). + * name), multiple vHost User interfaces (provide a list of interface names + * separated by spaces) or all Vhost User interfaces (omit an interface name + * to display all vHost interfaces). * * @cliexpar * @parblock @@ -2458,10 +2463,10 @@ VLIB_CLI_COMMAND (vhost_user_delete_command, static) = { * thread 2 on vring 0 * * Memory regions (total 2) - * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr - * ====== ===== ================== ================== ================== ================== ================== - * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000 - * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000 + * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr + * ====== == =============== =========== ============== =========== ========== + * 0 60 0x00000000 0x000a0000 0xaac00000 0x00000000 0x2b400000 + * 1 61 0x000c0000 0x3ff40000 0xaacc0000 0x000c0000 0xabcc0000 * * Virtqueue 0 (TX) * qsz 256 last_avail_idx 0 last_used_idx 0 @@ -2505,8 +2510,9 @@ VLIB_CLI_COMMAND (vhost_user_delete_command, static) = { * * @cliexend * - * The optional '<em>descriptors</em>' parameter will display the same output as - * the previous example but will include the descriptor table for each queue. + * The optional '<em>descriptors</em>' parameter will display the same output + * as the previous example but will include the descriptor table for each + * queue. * The output is truncated below: * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors} * Virtio vhost-user interfaces diff --git a/src/vnet/ethernet/node.c b/src/vnet/ethernet/node.c index cc0a0c30b9c..214e68809cc 100644 --- a/src/vnet/ethernet/node.c +++ b/src/vnet/ethernet/node.c @@ -1897,7 +1897,7 @@ ethernet_sw_interface_get_config (vnet_main_t * vnm, } else { - // a specific outer + specifc innner vlan id, a common case + // a specific outer + specific innner vlan id, a common case // get the qinq table if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0) diff --git a/src/vnet/interface_cli.c b/src/vnet/interface_cli.c index 2f231c117db..4f6f2cf05a5 100644 --- a/src/vnet/interface_cli.c +++ b/src/vnet/interface_cli.c @@ -941,7 +941,6 @@ done: return error; } - /*? * This command is used to change the admin state (up/down) of an interface. * @@ -951,9 +950,11 @@ done: * '<em>punt</em>' flag (interface is still down). * * @cliexpar - * Example of how to configure the admin state of an interface to '<em>up</em?': + * Example of how to configure the admin state of an interface to + '<em>up</em>': * @cliexcmd{set interface state GigabitEthernet2/0/0 up} - * Example of how to configure the admin state of an interface to '<em>down</em?': + * Example of how to configure the admin state of an interface to + '<em>down</em>': * @cliexcmd{set interface state GigabitEthernet2/0/0 down} ?*/ /* *INDENT-OFF* */ @@ -2392,7 +2393,7 @@ pcap_trace_command_fn (vlib_main_t * vm, * @cliexend * Example of how to start a tx packet capture: * @cliexstart{pcap trace tx max 35 intfc GigabitEthernet0/8/0 file -vppTest.pcap} + * vppTest.pcap} * @cliexend * Example of how to display the status of a tx packet capture in progress: * @cliexstart{pcap trace status} diff --git a/src/vnet/ip/ip4_source_and_port_range_check.c b/src/vnet/ip/ip4_source_and_port_range_check.c index 00ab51e2440..4c311eb8335 100644 --- a/src/vnet/ip/ip4_source_and_port_range_check.c +++ b/src/vnet/ip/ip4_source_and_port_range_check.c @@ -749,7 +749,8 @@ set_ip_source_and_port_range_check_fn (vlib_main_t * vm, * @cliexend * * Example of how to enable range checking on TX: - * @cliexcmd{set interface ip source-and-port-range-check GigabitEthernet2/0/0 udp-in-vrf 7} + * @cliexcmd{set interface ip source-and-port-range-check GigabitEthernet2/0/0 + * udp-in-vrf 7} * * Example of graph node after range checking is enabled: * @cliexstart{show vlib graph ip4-source-and-port-range-check-tx} @@ -758,7 +759,7 @@ set_ip_source_and_port_range_check_fn (vlib_main_t * vm, * interface-output [1] * @cliexend * - * Example of how to display the features enabed on an interface: + * Example of how to display the features enabled on an interface: * @cliexstart{show ip interface features GigabitEthernet2/0/0} * IP feature paths configured on GigabitEthernet2/0/0... * @@ -1367,7 +1368,7 @@ show_source_and_port_range_check_fn (vlib_main_t * vm, * @cliexstart{show ip source-and-port-range-check vrf 7 172.16.2.0} * 172.16.2.0: 23 - 101 * @cliexend - * Example of how to test to determine of a given Pv4 address and port + * Example of how to test to determine of a given iPv4 address and port * are being validated: * @cliexstart{show ip source-and-port-range-check vrf 7 172.16.2.2 port 23} * 172.16.2.2 port 23 PASS diff --git a/src/vnet/ip6-nd/ip6_ra.c b/src/vnet/ip6-nd/ip6_ra.c index 895f3092820..d3597706293 100644 --- a/src/vnet/ip6-nd/ip6_ra.c +++ b/src/vnet/ip6-nd/ip6_ra.c @@ -2175,7 +2175,6 @@ format_ip6_ra (u8 * s, va_list * args) return (s); } - /*? * This command is used to configure the neighbor discovery * parameters on a given interface. Use the '<em>show ip6 interface</em>' @@ -2183,9 +2182,16 @@ format_ip6_ra (u8 * s, va_list * args) * on a given interface. This command has three formats: * * - * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in a single command) + * <b>Format 1 - Router Advertisement Options:</b> (Only one can be entered in + * a single command) * - * '<em><b>ip6 nd <interface> [no] [ra-managed-config-flag] | [ra-other-config-flag] | [ra-suppress] | [ra-suppress-link-layer] | [ra-send-unicast] | [ra-lifetime <lifetime>] | [ra-initial <cnt> <interval>] | [ra-interval <max-interval> [<min-interval>]] | [ra-cease]</b></em>' + * @clistart + * ip6 nd <interface> [no] [ra-managed-config-flag] | + * [ra-other-config-flag] | [ra-suppress] | [ra-suppress-link-layer] | + * [ra-send-unicast] | [ra-lifetime <lifetime>] | + * [ra-initial <cnt> <interval>] | + * [ra-interval <max-interval> [<min-interval>]] | [ra-cease] + * @cliend * * Where: * @@ -2211,7 +2217,7 @@ format_ip6_ra (u8 * s, va_list * args) * and the '<em>no</em>' option returns it to this default state. * * <em>[no] ra-send-unicast</em> - Use the source address of the - * router-solicitation message if availiable. The default is to use + * router-solicitation message if available. The default is to use * multicast address of all nodes, and the '<em>no</em>' option returns * it to this default state. * @@ -2242,52 +2248,60 @@ format_ip6_ra (u8 * s, va_list * args) * * <b>Format 2 - Prefix Options:</b> * - * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> [<valid-lifetime> <pref-lifetime> | infinite] [no-advertise] [off-link] [no-autoconfig] [no-onlink]</b></em>' + * @clistart + * ip6 nd <interface> [no] prefix <ip6-address>/<width> + * [<valid-lifetime> <pref-lifetime> | infinite] [no-advertise] [off-link] + * [no-autoconfig] [no-onlink] + * @cliend * * Where: * * <em>no</em> - All additional flags are ignored and the prefix is deleted. * - * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is the - * length of time in seconds during what the prefix is valid for the purpose of - * on-link determination. Range is 7203 to 2592000 seconds and default is 2592000 - * seconds (30 days). '<em><pref-lifetime></em>' is the prefered-lifetime and is the - * length of time in seconds during what addresses generated from the prefix remain - * preferred. Range is 0 to 604800 seconds and default is 604800 seconds (7 days). + * <em><valid-lifetime> <pref-lifetime></em> - '<em><valid-lifetime></em>' is + * the length of time in seconds during what the prefix is valid for the + * purpose of on-link determination. Range is 7203 to 2592000 seconds and + * default is 2592000 seconds (30 days). '<em><pref-lifetime></em>' is the + * preferred-lifetime and is the length of time in seconds during what + * addresses generated from the prefix remain preferred. Range is 0 to 604800 + * seconds and default is 604800 seconds (7 days). * - * <em>infinite</em> - Both '<em><valid-lifetime></em>' and '<em><<pref-lifetime></em>' - * are inifinte, no timeout. + * <em>infinite</em> - Both '<em><valid-lifetime></em>' and + * '<em><pref-lifetime></em>' are infinite, no timeout. * * <em>no-advertise</em> - Do not send full router address in prefix * advertisement. Default is to advertise (i.e. - This flag is off by default). * - * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is on-link - * (i.e. - This flag is off and L-bit in packet is set by default and this prefix can - * be used for on-link determination). '<em>no-onlink</em>' also controls the L-bit. + * <em>off-link</em> - Prefix is off-link, clear L-bit in packet. Default is + * on-link (i.e. - This flag is off and L-bit in packet is set by default + * and this prefix can be used for on-link determination). '<em>no-onlink</em>' + * also controls the L-bit. * - * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear A-bit in packet. - * Default is autoconfig (i.e. - This flag is off and A-bit in packet is set by default. + * <em>no-autoconfig</em> - Do not use prefix for autoconfiguration, clear + * A-bit in packet. Default is autoconfig (i.e. - This flag is off and A-bit + * in packet is set by default. * - * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit in packet. - * Default is on-link (i.e. - This flag is off and L-bit in packet is set by default and - * this prefix can be used for on-link determination). '<em>off-link</em>' also controls - * the L-bit. + * <em>no-onlink</em> - Do not use prefix for onlink determination, clear L-bit + * in packet. Default is on-link (i.e. - This flag is off and L-bit in packet + * is set by default and this prefix can be used for on-link determination). + * '<em>off-link</em>' also controls the L-bit. * * * <b>Format 3: - Default of Prefix:</b> * - * '<em><b>ip6 nd <interface> [no] prefix <ip6-address>/<width> default</b></em>' + * @cliexcmd{ip6 nd <interface> [no] prefix <ip6-address>/<width> default} * - * When a new prefix is added (or existing one is being overwritten) <em>default</em> - * uses default values for the prefix. If <em>no</em> is used, the <em>default</em> - * is ignored and the prefix is deleted. + * When a new prefix is added (or existing one is being overwritten) + * <em>default</em> uses default values for the prefix. If <em>no</em> is + * used, the <em>default</em> is ignored and the prefix is deleted. * * * @cliexpar * Example of how set a router advertisement option: * @cliexcmd{ip6 nd GigabitEthernet2/0/0 ra-interval 100 20} * Example of how to add a prefix: - * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 infinite no-advertise} + * @cliexcmd{ip6 nd GigabitEthernet2/0/0 prefix fe80::fe:28ff:fe9c:75b3/64 + * infinite no-advertise} * Example of how to delete a prefix: * @cliexcmd{ip6 nd GigabitEthernet2/0/0 no prefix fe80::fe:28ff:fe9c:75b3/64} ?*/ diff --git a/src/vnet/ipsec/ipsec.rst b/src/vnet/ipsec/ipsec.rst index d7e02740fc3..933d0852a07 100644 --- a/src/vnet/ipsec/ipsec.rst +++ b/src/vnet/ipsec/ipsec.rst @@ -2,8 +2,8 @@ .. toctree:: -IP Security -=========== +IPSec (IP Security) +=================== This is not a description on how IPSec works. Please read: diff --git a/src/vnet/l2/l2_rw.c b/src/vnet/l2/l2_rw.c index b6de2faffc5..2c008794c1b 100644 --- a/src/vnet/l2/l2_rw.c +++ b/src/vnet/l2/l2_rw.c @@ -588,7 +588,7 @@ l2_rw_set_cli_fn (vlib_main_t * vm, /*? * Layer 2-Rewrite node uses classify tables to match packets. Then, using - * the provisioned mask and value, modfies the packet header. + * the provisioned mask and value, modifies the packet header. * * @cliexpar * @todo This is incomplete. This needs a detailed description and a diff --git a/src/vnet/mpls/interface.c b/src/vnet/mpls/interface.c index fd075c92d3d..e6c3dfeb801 100644 --- a/src/vnet/mpls/interface.c +++ b/src/vnet/mpls/interface.c @@ -128,7 +128,7 @@ mpls_interface_enable_disable (vlib_main_t * vm, } /*? - * This command enables an interface to accpet MPLS packets + * This command enables an interface to accept MPLS packets * * @cliexpar * @cliexstart{set interface mpls} diff --git a/src/vnet/qos/qos.api b/src/vnet/qos/qos.api index d655165cef2..84addf0e449 100644 --- a/src/vnet/qos/qos.api +++ b/src/vnet/qos/qos.api @@ -57,7 +57,7 @@ typedef qos_store /** * Enable/Disable QoS storing * The QoS bits from the packet at the specified input layer are copied - * into the packet. Storeing should be used in conjunction with marking + * into the packet. Storing should be used in conjunction with marking * @param enable - enable=1 or disable the feature * @param store - Store configuration */ diff --git a/src/vnet/qos/qos_store.c b/src/vnet/qos/qos_store.c index 06336434e5d..1e8a53bbdfc 100644 --- a/src/vnet/qos/qos_store.c +++ b/src/vnet/qos/qos_store.c @@ -55,7 +55,7 @@ qos_store_feature_config (u32 sw_if_index, case QOS_SOURCE_MPLS: case QOS_SOURCE_VLAN: case QOS_SOURCE_EXT: - /* not a valid option for storeing */ + /* not a valid option for storing */ break; } } @@ -127,7 +127,7 @@ qos_store_walk (qos_store_walk_cb_t fn, void *c) } /* - * Disable storeing feature for all protocols when the interface + * Disable storing feature for all protocols when the interface * is deleted */ static clib_error_t * @@ -203,7 +203,7 @@ qos_store_cli (vlib_main_t * vm, } /*? - * Enable QoS bit storeing on an interface using the packet's input DSCP bits + * Enable QoS bit storing on an interface using the packet's input DSCP bits * Which input QoS bits to use are either; IP, MPLS or VLAN. If more than * one protocol is chosen (which is foolish) the higher layers override the * lower. diff --git a/src/vnet/srmpls/sr_mpls.h b/src/vnet/srmpls/sr_mpls.h index 5b04f76b7a7..a8f9494428f 100644 --- a/src/vnet/srmpls/sr_mpls.h +++ b/src/vnet/srmpls/sr_mpls.h @@ -67,7 +67,7 @@ typedef struct u8 type; /**< Type (default is 0) */ /* SR Policy specific DPO */ - /* IF Type = DEFAULT Then Load Balancer DPO among SID lists */ + /* IF Type = DEFAULT Then Load-Balancer DPO among SID lists */ /* IF Type = SPRAY then Spray DPO with all SID lists */ ip46_address_t endpoint; /**< Optional NH for SR TE */ diff --git a/src/vnet/srv6/sr.h b/src/vnet/srv6/sr.h index c84534c8ae7..ea9ff709feb 100644 --- a/src/vnet/srv6/sr.h +++ b/src/vnet/srv6/sr.h @@ -101,7 +101,7 @@ typedef struct u8 type; /**< Type (default is 0) */ /* SR Policy specific DPO */ - /* IF Type = DEFAULT Then Load Balancer DPO among SID lists */ + /* IF Type = DEFAULT Then Load-Balancer DPO among SID lists */ /* IF Type = SPRAY then Spray DPO with all SID lists */ dpo_id_t bsid_dpo; /**< SR Policy specific DPO - BSID */ dpo_id_t ip4_dpo; /**< SR Policy specific DPO - IPv6 */ diff --git a/src/vnet/srv6/sr_policy_rewrite.c b/src/vnet/srv6/sr_policy_rewrite.c index 95de43166a1..500772e8065 100644 --- a/src/vnet/srv6/sr_policy_rewrite.c +++ b/src/vnet/srv6/sr_policy_rewrite.c @@ -33,7 +33,7 @@ * Traffic input usually is IPv6 packets. However it is possible to have * IPv4 packets or L2 frames. (that are encapsulated into IPv6 with SRH) * - * This file provides the appropiates VPP graph nodes to do any of these + * This file provides the appropriate VPP graph nodes to do any of these * methods. * */ @@ -434,7 +434,7 @@ create_sl (ip6_sr_policy_t * sr_policy, ip6_address_t * sl, u32 weight, } /** - * @brief Updates the Load Balancer after an SR Policy change + * @brief Updates the Load-Balancer after an SR Policy change * * @param sr_policy is the modified SR Policy */ |