Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcea21c2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "bonding: Bonding Overriding Configuration logic restored."

parents d021dd52 b928c63d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3799,7 +3799,8 @@ static inline int bond_slave_override(struct bonding *bond,
	/* Find out if any slaves have the same mapping as this skb. */
	bond_for_each_slave_rcu(bond, slave, iter) {
		if (slave->queue_id == skb->queue_mapping) {
			if (bond_slave_can_tx(slave)) {
			if (bond_slave_is_up(slave) &&
			    slave->link == BOND_LINK_UP) {
				bond_dev_queue_xmit(bond, skb, slave->dev);
				return 0;
			}