mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 22:22:08 +02:00
net: lan966x: flower: rename goto in lan966x_tc_flower_handler_control_usage()
Rename goto label, as the error message is specific to the fragment flags. Only compile-tested. Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com> Link: https://lore.kernel.org/r/20240424125347.461995-3-ast@fiberby.net Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
505ccf890c
commit
12b8e129c4
|
|
@ -60,7 +60,7 @@ lan966x_tc_flower_handler_control_usage(struct vcap_tc_flower_parse_usage *st)
|
|||
VCAP_KF_L3_FRAGMENT,
|
||||
VCAP_BIT_0);
|
||||
if (err)
|
||||
goto out;
|
||||
goto bad_frag_out;
|
||||
}
|
||||
|
||||
if (match.mask->flags & FLOW_DIS_FIRST_FRAG) {
|
||||
|
|
@ -73,14 +73,14 @@ lan966x_tc_flower_handler_control_usage(struct vcap_tc_flower_parse_usage *st)
|
|||
VCAP_KF_L3_FRAG_OFS_GT0,
|
||||
VCAP_BIT_1);
|
||||
if (err)
|
||||
goto out;
|
||||
goto bad_frag_out;
|
||||
}
|
||||
|
||||
st->used_keys |= BIT_ULL(FLOW_DISSECTOR_KEY_CONTROL);
|
||||
|
||||
return err;
|
||||
|
||||
out:
|
||||
bad_frag_out:
|
||||
NL_SET_ERR_MSG_MOD(extack, "ip_frag parse error");
|
||||
return err;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user