From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76664C4167B for ; Mon, 4 Dec 2023 10:37:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343855AbjLDKhf (ORCPT ); Mon, 4 Dec 2023 05:37:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55714 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231817AbjLDKhd (ORCPT ); Mon, 4 Dec 2023 05:37:33 -0500 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4D9C7B6; Mon, 4 Dec 2023 02:37:39 -0800 (PST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 9748F60010; Mon, 4 Dec 2023 10:37:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1701686257; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RnURjJz1zj2iI+Yo08gh8Y5xpFjyOss3hVk+wsOXKm8=; b=jGrqD6aq+br++ssVKJLITkxZqRn5OtU0PmFkMwy1JHMs4Yr27JJXvdDuLlmazSBSV9wkTh pjzadBBumg1jw3zflVi2UqDfTCrgectVRDLD/LE0P5p4BJyZQbMAI8v4L4A0i0HH82jXQL 4yFGII6gzx1nICwaGEqmzG/qZDu/iT36Cao6K3OvmUdjw7SnzYZ9YwXLWqQBDGW10I4gIN R7Rxj2QBu3tSsw4ZaSwxRXV6JojayJf+3Dlz3bGIeCm2hJL7RcvLq7PGUb5JnK5AZ1+TTM sge2LNL3bnJpC0L9asM90j7KIgmhGS4869MVOOq1CpLHvjSpmerdqI/KlRMEtg== Date: Mon, 4 Dec 2023 11:37:32 +0100 From: Maxime Chevallier To: davem@davemloft.net Cc: 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?B?S8O2cnk=?= Maincent , Jesse Brandeburg , Jonathan Corbet , Marek =?UTF-8?B?QmVow7pu?= , Piergiorgio Beruto , Oleksij Rempel , =?UTF-8?B?Tmljb2zDsg==?= Veronese Subject: Re: [RFC PATCH net-next v3 08/13] netlink: specs: add ethnl PHY_GET command set Message-ID: <20231204113732.052e1b78@device.home> In-Reply-To: <20231201163704.1306431-9-maxime.chevallier@bootlin.com> References: <20231201163704.1306431-1-maxime.chevallier@bootlin.com> <20231201163704.1306431-9-maxime.chevallier@bootlin.com> Organization: Bootlin X-Mailer: Claws Mail 4.1.1 (GTK 3.24.38; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-GND-Sasl: maxime.chevallier@bootlin.com Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi all, On Fri, 1 Dec 2023 17:36:58 +0100 Maxime Chevallier wrote: > The PHY_GET command, supporting both DUMP and GET operations, is used to > retrieve the list of PHYs connected to a netdevice, and get topology > information to know where exactly it sits on the physical link. > > Add the netlink specs corresponding to that command, and bump the > ethtool-user.c|h autogenerated files. Same as for patch 06, I'll drop the ethtool-user stuff for next version. Maxime