@@ -605,13 +605,13 @@ func printHelp() {
605605 fmt .Println ("calicovppctl gdb - Attach gdb to the running vpp on the current machine" )
606606 fmt .Println ("calicovppctl sh [-component vpp|agent] [-node NODENAME] - Get a shell in vpp (dataplane) or agent (controlplane) container" )
607607 fmt .Println ("calicovppctl trace [-node NODENAME] - Setup VPP packet tracing" )
608- fmt .Println (" Optional params: [-count N] [-timeout SEC] [-interface phy|af_xdp|af_packet|avf| vmxnet3|virtio|rdma|dpdk|memif|vcl]" )
608+ fmt .Println (" Optional params: [-count N] [-timeout SEC] [-interface phy|af_xdp|af_packet|vmxnet3|virtio|rdma|dpdk|memif|vcl]" )
609609 fmt .Println (" Filter params: [-srcip IP] [-dstip IP] [-srcport PORT] [-dstport PORT] [-protocol tcp|udp|icmp]" )
610610 fmt .Println ("calicovppctl pcap [-node NODENAME] - Setup VPP PCAP tracing" )
611611 fmt .Println (" Optional params: [-count N] [-timeout SEC] [-interface INTERFACE_NAME|any(default)] [-output FILE.pcap]" )
612612 fmt .Println (" Filter params: [-srcip IP] [-dstip IP] [-srcport PORT] [-dstport PORT] [-protocol tcp|udp|icmp]" )
613613 fmt .Println ("calicovppctl dispatch [-node NODENAME] - Setup VPP dispatch tracing" )
614- fmt .Println (" Optional params: [-count N] [-timeout SEC] [-interface phy|af_xdp|af_packet|avf| vmxnet3|virtio|rdma|dpdk|memif|vcl] [-output FILE.pcap]" )
614+ fmt .Println (" Optional params: [-count N] [-timeout SEC] [-interface phy|af_xdp|af_packet|vmxnet3|virtio|rdma|dpdk|memif|vcl] [-output FILE.pcap]" )
615615 fmt .Println (" Filter params: [-srcip IP] [-dstip IP] [-srcport PORT] [-dstport PORT] [-protocol tcp|udp|icmp]" )
616616 fmt .Println ()
617617}
@@ -1507,8 +1507,6 @@ func mapInterfaceTypeToVppInputNode(k *KubeClient, interfaceType string) (string
15071507 return "af-xdp-input" , "af_xdp" , nil
15081508 case "af_packet" :
15091509 return "af-packet-input" , "af_packet" , nil
1510- case "avf" :
1511- return "avf-input" , "avf" , nil
15121510 case "vmxnet3" :
15131511 return "vmxnet3-input" , "vmxnet3" , nil
15141512 case "virtio" , "tuntap" :
@@ -1528,7 +1526,6 @@ func mapInterfaceTypeToVppInputNode(k *KubeClient, interfaceType string) (string
15281526 errorMsg += " phy : use the physical interface driver configured in calico-vpp-config\n "
15291527 errorMsg += " af_xdp : use an AF_XDP socket to drive the interface\n "
15301528 errorMsg += " af_packet : use an AF_PACKET socket to drive the interface\n "
1531- errorMsg += " avf : use the VPP native driver for Intel 700-Series and 800-Series interfaces\n "
15321529 errorMsg += " vmxnet3 : use the VPP native driver for VMware virtual interfaces\n "
15331530 errorMsg += " virtio : use the VPP native driver for Virtio virtual interfaces\n "
15341531 errorMsg += " tuntap : alias for virtio (default)\n "
0 commit comments