Commit 84154879 authored by Asbjørn Sloth Tønnesen's avatar Asbjørn Sloth Tønnesen Committed by Jakub Kicinski
Browse files

net: qede: use extack in qede_parse_actions()



Convert DP_NOTICE/DP_INFO to NL_SET_ERR_MSG_MOD.

Keep edev around for use with QEDE_RSS_COUNT().

Only compile tested.

Signed-off-by: default avatarAsbjørn Sloth Tønnesen <ast@fiberby.net>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20240508143404.95901-15-ast@fiberby.net


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent d2a437ef
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1671,7 +1671,7 @@ static int qede_parse_actions(struct qede_dev *edev,
	int i;

	if (!flow_action_has_entries(flow_action)) {
		DP_NOTICE(edev, "No actions received\n");
		NL_SET_ERR_MSG_MOD(extack, "No actions received");
		return -EINVAL;
	}

@@ -1687,7 +1687,8 @@ static int qede_parse_actions(struct qede_dev *edev,
				break;

			if (act->queue.index >= QEDE_RSS_COUNT(edev)) {
				DP_INFO(edev, "Queue out-of-bounds\n");
				NL_SET_ERR_MSG_MOD(extack,
						   "Queue out-of-bounds");
				return -EINVAL;
			}
			break;