summaryrefslogtreecommitdiff
path: root/rhel
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2020-02-28 17:56:46 +0100
committerIlya Maximets <i.maximets@ovn.org>2020-03-06 12:41:04 +0100
commit82c9d9993d47f8990af23721c049f65369177dfa (patch)
tree40467c1c3453850ecee871c0e29934ffd1e5e0be /rhel
parent4cf89cb0742419cda7b290816fbf3b9f6edfa1fc (diff)
downloadopenvswitch-82c9d9993d47f8990af23721c049f65369177dfa.tar.gz
netdev-dpdk: Remove deprecated ring port type.
'dpdkr' ring ports was deprecated in 2.13 release and was not actually used for a long time. Remove support now. More details in commit b4c5f00c339b ("netdev-dpdk: Deprecate ring ports.") Acked-by: Aaron Conole <aconole@redhat.com> Acked-by: David Marchand <david.marchand@redhat.com> Acked-by: Ian Stokes <ian.stokes@intel.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'rhel')
-rw-r--r--rhel/README.RHEL.rst3
-rwxr-xr-xrhel/etc_sysconfig_network-scripts_ifdown-ovs2
-rwxr-xr-xrhel/etc_sysconfig_network-scripts_ifup-ovs7
3 files changed, 1 insertions, 11 deletions
diff --git a/rhel/README.RHEL.rst b/rhel/README.RHEL.rst
index 1cd2065ef..98175dfd3 100644
--- a/rhel/README.RHEL.rst
+++ b/rhel/README.RHEL.rst
@@ -36,9 +36,6 @@ TYPE
* ``OVSDPDKPort``, if ``<name>`` is a physical DPDK NIC port (name must start
with ``dpdk`` and end with portid, eg ``dpdk0``)
- * ``OVSDPDKRPort``, if ``<name>`` is a DPDK ring port (name must start with
- ``dpdkr`` and end with portid, e.g. ``dpdkr0``)
-
* ``OVSDPDKVhostUserPort`` if ``<name>`` is a DPDK vhost-user port
* ``OVSDPDKBond`` if ``<name>`` is an OVS DPDK bond.
diff --git a/rhel/etc_sysconfig_network-scripts_ifdown-ovs b/rhel/etc_sysconfig_network-scripts_ifdown-ovs
index 63d048b22..343ac0945 100755
--- a/rhel/etc_sysconfig_network-scripts_ifdown-ovs
+++ b/rhel/etc_sysconfig_network-scripts_ifdown-ovs
@@ -59,7 +59,7 @@ case "$TYPE" in
OVSPatchPort|OVSTunnel)
ovs-vsctl -t ${TIMEOUT} -- --if-exists del-port "$OVS_BRIDGE" "$DEVICE"
;;
- OVSDPDKPort|OVSDPDKRPort|OVSDPDKVhostUserPort|OVSDPDKBond)
+ OVSDPDKPort|OVSDPDKVhostUserPort|OVSDPDKBond)
ovs-vsctl -t ${TIMEOUT} -- --if-exists del-port "$OVS_BRIDGE" "$DEVICE"
;;
*)
diff --git a/rhel/etc_sysconfig_network-scripts_ifup-ovs b/rhel/etc_sysconfig_network-scripts_ifup-ovs
index b01461cc4..0955c0e1f 100755
--- a/rhel/etc_sysconfig_network-scripts_ifup-ovs
+++ b/rhel/etc_sysconfig_network-scripts_ifup-ovs
@@ -180,13 +180,6 @@ case "$TYPE" in
${OTHERSCRIPT} "$OVS_BRIDGE"
fi
;;
- OVSDPDKRPort)
- ifup_ovs_bridge
- ovs-vsctl -t ${TIMEOUT} \
- -- --if-exists del-port "$OVS_BRIDGE" "$DEVICE" \
- -- add-port "$OVS_BRIDGE" "$DEVICE" $OVS_OPTIONS \
- -- set Interface "$DEVICE" type=dpdkr ${OVS_EXTRA+-- $OVS_EXTRA}
- ;;
OVSDPDKVhostUserPort)
ifup_ovs_bridge
PORT_TYPE="dpdkvhostuser"