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>
                                                    VCAP_KF_L3_FRAGMENT,
                                                    VCAP_BIT_0);
                if (err)
-                       goto out;
+                       goto bad_frag_out;
        }
 
        if (match.mask->flags & FLOW_DIS_FIRST_FRAG) {
                                                    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;
 }