From patchwork Thu Apr 4 09:29:56 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Chevallier X-Patchwork-Id: 13617480 X-Patchwork-Delegate: kuba@kernel.org Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) (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 D776980C1D; Thu, 4 Apr 2024 09:30:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.198 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712223020; cv=none; b=d+ekqIMMw9HWNc8htW9E+27chCN5L3CFbpsOvZWzTYPM0AyC/IGmX87SbeQ+pXyvlv8JJ83iJqx7KEzzBXabSDjhRHKKcJPLY51ps44xELrSu+CDyWpK2prSKMmFXvYtKEMR9JKGrxC9b05ApeUNCuhT7orIjMksjs3HXlfczDI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712223020; c=relaxed/simple; bh=zR3+BKqSPv3phP73GAXMgprEYTYaZN4oYHbMIgLlpmY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MSF/QwiLqrer7qa9eUYi1i40Pp2vja2f05rjfUCV1IFloihj5QN3HOCwG3ESYbIEqjGXW7q8QJ4u/BrzbxQms7KF/xa8BIZd8Q3ZLnINZk3TBtuJN8ST1mRSEHcmdUZ7/1DeT6QpGXfFYFz8LkkZe79J2ncpFDPO2r00Sz8UkGE= 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=dJKGlnSS; arc=none smtp.client-ip=217.70.183.198 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="dJKGlnSS" Received: by mail.gandi.net (Postfix) with ESMTPSA id E92C9C0005; Thu, 4 Apr 2024 09:30:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1712223017; 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=Ftf0Qt6oc3t/ouWeMSLXqD8jKNjOd9YFDXGVzzNB3uA=; b=dJKGlnSSlUcwNHh5tswQx1yz674qMZdUsLUCY7ZhEcUscAagdevaPeT3JJ2YZelkoxgFnW q8pH6FBQdIIUfFxmqyTvsZeoMQQxDP40ZGiVNrh1hKcO959RZB5VgHH+agIp22RDzWYQeR 1pQ8SaRvtVk6l2eDlM3AsXHX6CILkC3KNt+5rkHQFwfJbsa2HMyiAisgryaVUcJ7elevID ny8mWDVOciGRJeQ8PPLtj1w1GLyPcklklm1Fg0z4DZFrJiF/2x4nn9tYf3TQ0eZEmbFQe3 hGO6E5a24J9gFvCnkuJjDgZqvCte4NOuJPf6RXhyl07QZhebVPIhdOGETLoz5g== 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 , Jonathan Corbet , =?utf-8?q?Marek_Beh=C3=BAn?= , Piergiorgio Beruto , Oleksij Rempel , =?utf-8?q?Nicol=C3=B2_Veronese?= , Simon Horman , mwojtas@chromium.org Subject: [PATCH net-next v11 06/13] netlink: specs: add phy-index as a header parameter Date: Thu, 4 Apr 2024 11:29:56 +0200 Message-ID: <20240404093004.2552221-7-maxime.chevallier@bootlin.com> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240404093004.2552221-1-maxime.chevallier@bootlin.com> References: <20240404093004.2552221-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 --- V11: No changes V10: No changes V9: No changes V8: No changes V7: No changes V6: No changes V5: Added Andrew's R-b V4: Ditch the ethtool-user generated code V3: New patch 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 197208f419dc..bb6e1dc6d1c5 100644 --- a/Documentation/netlink/specs/ethtool.yaml +++ b/Documentation/netlink/specs/ethtool.yaml @@ -30,6 +30,9 @@ attribute-sets: - name: flags type: u32 + - + name: phy-index + type: u32 - name: bitset-bit