We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a437e commit 8415487Copy full SHA for 8415487
drivers/net/ethernet/qlogic/qede/qede_filter.c
@@ -1671,7 +1671,7 @@ static int qede_parse_actions(struct qede_dev *edev,
1671
int i;
1672
1673
if (!flow_action_has_entries(flow_action)) {
1674
- DP_NOTICE(edev, "No actions received\n");
+ NL_SET_ERR_MSG_MOD(extack, "No actions received");
1675
return -EINVAL;
1676
}
1677
@@ -1687,7 +1687,8 @@ static int qede_parse_actions(struct qede_dev *edev,
1687
break;
1688
1689
if (act->queue.index >= QEDE_RSS_COUNT(edev)) {
1690
- DP_INFO(edev, "Queue out-of-bounds\n");
+ NL_SET_ERR_MSG_MOD(extack,
1691
+ "Queue out-of-bounds");
1692
1693
1694
0 commit comments