From patchwork Fri Jul 5 13:26:57 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Chevallier X-Patchwork-Id: 13725112 X-Patchwork-Delegate: kuba@kernel.org Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) (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 DF9B5156C68; Fri, 5 Jul 2024 13:27:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.197 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720186041; cv=none; b=HNAvlbDKNjg8MDLAbHKV5vwtfuNdBrklIvzPP+tuERHm8w61wJWLSOciNIM2BvLNbngQ+8stN9LNWrPt3Zrd7z/hKdeHOmmKVJbzqKeieNBZ02mqZepa0AUU8CeRQiLxlw8ihY6KrAgfusFCf0X6bG5zs7SaxsDzyOATVMo6RQI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720186041; c=relaxed/simple; bh=7FIYxRfvmusJYW3NXDOpm3dJjXJR4Z4Kf/2oD5O5l2Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=X9TpPFROuti5ELAsSlJ9w95nieR1YiZUwHSWQ1WheKZrCuFzWVXC+oAhrHG3xb9yYMg4/wA1rPsmVVXGeSwVMh0r9bzWawB5O9w4AU1WP8P2sQ5Hh4OWnuLoazWl5+02iaCR+PGPIZ0Up6VzYZhe61rkN3LL5qX6BHnUoQ2z2zw= 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=XWrZLQu+; arc=none smtp.client-ip=217.70.183.197 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="XWrZLQu+" Received: by mail.gandi.net (Postfix) with ESMTPSA id 1623C1C0004; Fri, 5 Jul 2024 13:27:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1720186038; 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=XWrZLQu+wiJuqTXyGW2DAa/qz32it6KN9QOCzsL3GNr9PN6vG8sNIcZzMI6DLXvcJcrRrL 0VD6D0S9a0llOrVMHG2cyTfsTcK/mTZDR3uKu2W4S5uisdA8gWEPQrQkLZxKtmGbav3VH7 ISyex0pWQWIkLxY52DZ3fWMluhRK7+f3y3AM12YvrlfuGfpyl+V5MMkIqSudP6aWVB/XXb JIcW3wdSolE0+AAgFMU1/PhYFN8HficcMlukDgWsHIOZRV0bAAI/Pmyal9okOWW715uAxy Gq6yOC+c9aFjyjxd6Y3pX6uoUJBPK/Qmu0iseTOYVdMzdiGakpvRQhP0bqoPIg== 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 , Dan Carpenter , Romain Gantois Subject: [PATCH net-next v16 06/14] netlink: specs: add phy-index as a header parameter Date: Fri, 5 Jul 2024 15:26:57 +0200 Message-ID: <20240705132706.13588-7-maxime.chevallier@bootlin.com> X-Mailer: git-send-email 2.45.1 In-Reply-To: <20240705132706.13588-1-maxime.chevallier@bootlin.com> References: <20240705132706.13588-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