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

Commit 6952d892 authored by David S. Miller's avatar David S. Miller
Browse files

[BOND]: Fix warning in bond_sysfs.c



original_mtu is only used if we end up with a non-NULL
dev, and it is assigned in all such cases, but GCC can't
see that.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3480c63b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -341,6 +341,7 @@ static ssize_t bonding_store_slaves(struct device *d,

	if (command[0] == '-') {
		dev = NULL;
		original_mtu = 0;
		bond_for_each_slave(bond, slave, i)
			if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
				dev = slave->dev;