From 4b4f2915453476dbcba1c55b9bc704b4de3f4ce9 Mon Sep 17 00:00:00 2001 From: ericxiett Date: Tue, 21 Sep 2021 09:33:29 +0800 Subject: [PATCH] Fix typos Change-Id: I605bcdde50a3e4427af74ba616887c15c787a40a --- vif_plug_linux_bridge/linux_net.py | 4 ++-- vif_plug_ovs/linux_net.py | 4 ++-- vif_plug_ovs/ovs.py | 6 +++--- vif_plug_ovs/ovsdb/ovsdb_lib.py | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/vif_plug_linux_bridge/linux_net.py b/vif_plug_linux_bridge/linux_net.py index 539250bf..3d90c934 100644 --- a/vif_plug_linux_bridge/linux_net.py +++ b/vif_plug_linux_bridge/linux_net.py @@ -81,7 +81,7 @@ def _ensure_vlan_privileged(vlan_num, bridge_interface, mac_address, mtu): check_exit_code=[0, 2, 254]) ip_lib.set(interface, state='up', check_exit_code=[0, 2, 254]) # NOTE(vish): set mtu every time to ensure that changes to mtu get - # propogated + # propagated _set_device_mtu(interface, mtu) return interface @@ -204,7 +204,7 @@ def _ensure_bridge_privileged(bridge, interface, net_attrs, gateway, _set_device_mtu(interface, mtu) _update_bridge_routes(interface, bridge) # NOTE(sean-k-mooney): - # The bridge mtu cannont be set until after an + # The bridge mtu cannot be set until after an # interface is added due to bug: # https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1399064 _set_device_mtu(bridge, mtu) diff --git a/vif_plug_ovs/linux_net.py b/vif_plug_ovs/linux_net.py index 7c5e1a2f..c780ec39 100644 --- a/vif_plug_ovs/linux_net.py +++ b/vif_plug_ovs/linux_net.py @@ -102,7 +102,7 @@ def _disable_ipv6(bridge): privsep context. """ # NOTE(sean-k-mooney): os-vif disables ipv6 to ensure the Bridge - # does not aquire an ipv6 auto config or link local adress. + # does not acquire an ipv6 auto config or link local address. # This is required to prevent bug 1302080. # https://bugs.launchpad.net/neutron/+bug/1302080 disv6 = ('/proc/sys/net/ipv6/conf/%s/disable_ipv6' % @@ -147,7 +147,7 @@ def delete_bridge(bridge, dev): # Note(sean-k-mooney): this will detach all ports on # the bridge before deleting the bridge. ip_lib.delete(bridge, check_exit_code=[0, 2, 254]) - # howver it will not set the detached interface down + # however it will not set the detached interface down # so we set the dev down if dev is not None and exists. if dev and ip_lib.exists(dev): set_interface_state(dev, "down") diff --git a/vif_plug_ovs/ovs.py b/vif_plug_ovs/ovs.py index 41762e62..69e5f3d1 100644 --- a/vif_plug_ovs/ovs.py +++ b/vif_plug_ovs/ovs.py @@ -46,7 +46,7 @@ class OvsPlugin(plugin.PluginBase): If given a VIFBridge, then it will create connect the VM via a regular Linux bridge device to allow security group rules to - be applied to VM traiffic. + be applied to VM traffic. """ NIC_NAME_LEN = 14 @@ -291,8 +291,8 @@ class OvsPlugin(plugin.PluginBase): # was written it was understood by me that libvirt would not # modify ovs if the port exists but in fact it deletes and # recreates the port. This both undoes the effort to resolve - # bug #1734320 and intoduces other issues for neutron. - # this comment will be removed when we actully fix #1734320 in + # bug #1734320 and introduces other issues for neutron. + # this comment will be removed when we actually fix #1734320 in # all cases. # NOTE(hamdyk): As a WA to the above note, one can use diff --git a/vif_plug_ovs/ovsdb/ovsdb_lib.py b/vif_plug_ovs/ovsdb/ovsdb_lib.py index 68511657..ad11ba5d 100644 --- a/vif_plug_ovs/ovsdb/ovsdb_lib.py +++ b/vif_plug_ovs/ovsdb/ovsdb_lib.py @@ -72,7 +72,7 @@ class BaseOVS(object): datapath_type=datapath_type).execute() def delete_ovs_bridge(self, bridge): - """Delete ovs brdige by name + """Delete ovs bridge by name :param bridge: bridge name as a string @@ -105,7 +105,7 @@ class BaseOVS(object): # NOTE(sean-k-mooney): we use a transaction here for 2 reasons: # 1.) if using the vsctl client its faster # 2.) in all cases we either want to fully create the patch port - # pair or not create it atomicly. By using a transaction we know + # pair or not create it atomically. By using a transaction we know # that we will never be in a mixed state where it was partly created. with self.ovsdb.transaction() as txn: # create integration bridge patch peer @@ -126,7 +126,7 @@ class BaseOVS(object): txn.add( self.ovsdb.db_set('Interface', int_bridge_port, *col_values)) - # create port bidge patch peer + # create port bridge patch peer col_values = [ ('type', 'patch'), ('options', {'peer': int_bridge_port})