From patchwork Mon Jul 1 13:17:52 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Chevallier X-Patchwork-Id: 13718062 X-Patchwork-Delegate: kuba@kernel.org Received: from relay9-d.mail.gandi.net (relay9-d.mail.gandi.net [217.70.183.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 417A815ECC3; Mon, 1 Jul 2024 13:18:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.199 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719839898; cv=none; b=oNZRAsxQcVmHOscaDHfT8ns61zXtJqwtPT+JcQA/f2RMVSG5kIUk90/buMpa1xrdmgbIJieA0mjC6sqJxC0Ht8lYeAk0ZC/E8nGIXL4MVEeDpV74CXc4oFvgcM8bnOKF7Jy/8IiubRXmajiNoIcvP/ptMSBUBmPfAu45aAs1daY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719839898; c=relaxed/simple; bh=7FIYxRfvmusJYW3NXDOpm3dJjXJR4Z4Kf/2oD5O5l2Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=sAII22KjwJ5HbRXshc2I8iGhqzUUiEkNTG1Nfz4SJIDsWjlakt2gLOoCriOALdkivWD6VGhzfnyg85a7ZOZAdeNmjmgAsWxeoUkXOhkXVG1tBtCH+wxSJByW5+EJfVyXYE1WC2AhyqTh9HmhZHWX95VvgXSBwlg3zVaqrnY9/Wk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=PnwmXXLo; arc=none smtp.client-ip=217.70.183.199 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="PnwmXXLo" Received: by mail.gandi.net (Postfix) with ESMTPSA id 45979FF804; Mon, 1 Jul 2024 13:18:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1719839894; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uy76o+N0EM0sJl+NqRd3EHqRDxABCoWbyTToYzh4nN4=; b=PnwmXXLo5QutsNLUWJ9hGdISb4ln7Y/57ZkP7x1p68n6sWaMk0DOfydi1/ol+cxHgjd8BO xy+C7zw88DhayEQ6V002U5DuN05ICYwoP1wBhMzRcy+jmoeC87M3JZj/0f5f5cUPnvl8Dj 3Nl6GE6Z2VAVKDbRRioe8TutsGyzY5noadVlKlivjGXneEIOzq244XGt/yg4W3jcSHqaM3 iDgRRwONLzLRpuyX2DpPa9L+mXykTQxQtcpnS0KhIfH0Bf6MYf25ul2/CDlFXtDqDfLgzX KNoqcAF6SfETAIx1/Hm+zexQhOFWhC/fhWJUWa+CiyFm1bFadXCMggrwzdCrNg== From: Maxime Chevallier To: davem@davemloft.net Cc: Maxime Chevallier , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, thomas.petazzoni@bootlin.com, Andrew Lunn , Jakub Kicinski , Eric Dumazet , Paolo Abeni , Russell King , linux-arm-kernel@lists.infradead.org, Christophe Leroy , Herve Codina , Florian Fainelli , Heiner Kallweit , Vladimir Oltean , =?utf-8?q?K=C3=B6ry_Maincent?= , Jesse Brandeburg , =?utf-8?q?Marek_Beh=C3=BAn?= , Piergiorgio Beruto , Oleksij Rempel , =?utf-8?q?Nicol=C3=B2_Veronese?= , Simon Horman , mwojtas@chromium.org, Nathan Chancellor , Antoine Tenart , Marc Kleine-Budde Subject: [PATCH net-next v14 06/13] netlink: specs: add phy-index as a header parameter Date: Mon, 1 Jul 2024 15:17:52 +0200 Message-ID: <20240701131801.1227740-7-maxime.chevallier@bootlin.com> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240701131801.1227740-1-maxime.chevallier@bootlin.com> References: <20240701131801.1227740-1-maxime.chevallier@bootlin.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-GND-Sasl: maxime.chevallier@bootlin.com X-Patchwork-Delegate: kuba@kernel.org Update the spec to take the newly introduced phy-index as a generic request parameter. Signed-off-by: Maxime Chevallier Reviewed-by: Andrew Lunn --- Documentation/netlink/specs/ethtool.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/netlink/specs/ethtool.yaml b/Documentation/netlink/specs/ethtool.yaml index 949e2722505d..4ca7c5b8c504 100644 --- a/Documentation/netlink/specs/ethtool.yaml +++ b/Documentation/netlink/specs/ethtool.yaml @@ -39,6 +39,9 @@ attribute-sets: name: flags type: u32 enum: header-flags + - + name: phy-index + type: u32 - name: bitset-bit