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

Commit c313c89e authored by dingtianhong's avatar dingtianhong Committed by David S. Miller
Browse files

bonding: remove the redundant judgements for bond_option_queue_id_set()



The dev_valid_name() will check the buffer length for input name, no need to
check it twice.

Cc: Jay Vosburgh <fubar@us.ibm.com>
Cc: Veaceslav Falico <vfalico@redhat.com>
Cc: Andy Gospodarek <andy@greyhouse.net>
Signed-off-by: default avatarDing Tianhong <dingtianhong@huawei.com>
Reviewed-by: default avatarJiri Pirko <jiri@resnulli.us>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 805d157e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1199,8 +1199,7 @@ int bond_option_queue_id_set(struct bonding *bond,
		goto err_no_cmd;

	/* Check buffer length, valid ifname and queue id */
	if (strlen(newval->string) > IFNAMSIZ ||
	    !dev_valid_name(newval->string) ||
	if (!dev_valid_name(newval->string) ||
	    qid > bond->dev->real_num_tx_queues)
		goto err_no_cmd;