mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
net: bridge: fix misspellings using codespell tool
Some typos are found out by codespell tool: $ codespell ./net/bridge/ ./net/bridge/br_stp.c:604: permanant ==> permanent ./net/bridge/br_stp.c:605: persistance ==> persistence ./net/bridge/br.c:125: underlaying ==> underlying ./net/bridge/br_input.c:43: modue ==> mode ./net/bridge/br_mrp.c:828: Determin ==> Determine ./net/bridge/br_mrp.c:848: Determin ==> Determine ./net/bridge/br_mrp.c:897: Determin ==> Determine Fix typos found by codespell. Signed-off-by: Menglong Dong <dong.menglong@zte.com.cn> Acked-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20210108025332.52480-1-dong.menglong@zte.com.cn Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
7e34984cc6
commit
efb5b338da
@ -122,7 +122,7 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case NETDEV_PRE_TYPE_CHANGE:
|
case NETDEV_PRE_TYPE_CHANGE:
|
||||||
/* Forbid underlaying device to change its type. */
|
/* Forbid underlying device to change its type. */
|
||||||
return NOTIFY_BAD;
|
return NOTIFY_BAD;
|
||||||
|
|
||||||
case NETDEV_RESEND_IGMP:
|
case NETDEV_RESEND_IGMP:
|
||||||
|
@ -40,7 +40,7 @@ static int br_pass_frame_up(struct sk_buff *skb)
|
|||||||
|
|
||||||
vg = br_vlan_group_rcu(br);
|
vg = br_vlan_group_rcu(br);
|
||||||
/* Bridge is just like any other port. Make sure the
|
/* Bridge is just like any other port. Make sure the
|
||||||
* packet is allowed except in promisc modue when someone
|
* packet is allowed except in promisc mode when someone
|
||||||
* may be running packet capture.
|
* may be running packet capture.
|
||||||
*/
|
*/
|
||||||
if (!(brdev->flags & IFF_PROMISC) &&
|
if (!(brdev->flags & IFF_PROMISC) &&
|
||||||
|
@ -825,7 +825,7 @@ int br_mrp_start_in_test(struct net_bridge *br,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Determin if the frame type is a ring frame */
|
/* Determine if the frame type is a ring frame */
|
||||||
static bool br_mrp_ring_frame(struct sk_buff *skb)
|
static bool br_mrp_ring_frame(struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
const struct br_mrp_tlv_hdr *hdr;
|
const struct br_mrp_tlv_hdr *hdr;
|
||||||
@ -845,7 +845,7 @@ static bool br_mrp_ring_frame(struct sk_buff *skb)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Determin if the frame type is an interconnect frame */
|
/* Determine if the frame type is an interconnect frame */
|
||||||
static bool br_mrp_in_frame(struct sk_buff *skb)
|
static bool br_mrp_in_frame(struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
const struct br_mrp_tlv_hdr *hdr;
|
const struct br_mrp_tlv_hdr *hdr;
|
||||||
@ -894,7 +894,7 @@ static void br_mrp_mrm_process(struct br_mrp *mrp, struct net_bridge_port *port,
|
|||||||
br_mrp_ring_port_open(port->dev, false);
|
br_mrp_ring_port_open(port->dev, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Determin if the test hdr has a better priority than the node */
|
/* Determine if the test hdr has a better priority than the node */
|
||||||
static bool br_mrp_test_better_than_own(struct br_mrp *mrp,
|
static bool br_mrp_test_better_than_own(struct br_mrp *mrp,
|
||||||
struct net_bridge *br,
|
struct net_bridge *br,
|
||||||
const struct br_mrp_ring_test_hdr *hdr)
|
const struct br_mrp_ring_test_hdr *hdr)
|
||||||
|
@ -601,8 +601,8 @@ int __set_ageing_time(struct net_device *dev, unsigned long t)
|
|||||||
/* Set time interval that dynamic forwarding entries live
|
/* Set time interval that dynamic forwarding entries live
|
||||||
* For pure software bridge, allow values outside the 802.1
|
* For pure software bridge, allow values outside the 802.1
|
||||||
* standard specification for special cases:
|
* standard specification for special cases:
|
||||||
* 0 - entry never ages (all permanant)
|
* 0 - entry never ages (all permanent)
|
||||||
* 1 - entry disappears (no persistance)
|
* 1 - entry disappears (no persistence)
|
||||||
*
|
*
|
||||||
* Offloaded switch entries maybe more restrictive
|
* Offloaded switch entries maybe more restrictive
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user