From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 26FED305063; Tue, 14 Oct 2025 11:26:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760441214; cv=none; b=CXrgIQYmI11zGU5ZUH8ZD0CygiYPo4qBKJc8z+H6W+OhBbrknqPXSAxeXmkFMiZsm9Y/J3B71gmROdvBDACSKbr5IhGXIc6YzbmQbaon4uLl8czjBTHrct9d3ogX8wRyHnLpej7/rcZChMLh6Mu4IzPO+TDmeABABwphv7cDcZo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760441214; c=relaxed/simple; bh=qaxYZXuRXFgjBi4WTEOpecu/+I6bHI2yH4gD7lgIbPs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=s9UTixPKeu+ET/H1YR3uuFFt/Xg4PleI0GJ1RmGLX8GAF3cjiJwUHDI+Pcw7aWWvzyZMR8Cb1/3anVd+z9SeQmuwQordnszmeNtOZvbfmjU+ajWiVHKpdz++odoUcpVpysEuei/VDrWRycTt1gjJGlvXOuzx5z0tA46D8IkHAlU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VJwTX4Ey; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VJwTX4Ey" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4F2D8C4CEE7; Tue, 14 Oct 2025 11:26:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760441213; bh=qaxYZXuRXFgjBi4WTEOpecu/+I6bHI2yH4gD7lgIbPs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VJwTX4EytJ0bCdLya9AnSUbpbOVEWuSkrdULKQtKBnuqle10jIzs0xDyfzYsoeFvn YRGAcDKcBrcFBKW/DEMDYVh307onwvMOYGiij0iCiUatwgBoilU2zW5Nwc3gYATBKj VtfvyzEwGrLdaQBDBpo5UnmunD0dDVehQRkMoNfwNhKBhIArj7My3ZCWgmR2pnQHKv /wSym03EXY0L5DgciTSXJBR2L5mFSIPndTYUKlgSKbyHctWYigmhQ/2z7pZhIVzVEm DlDdrbEhW4mS0a/F/VHyIHR43oWGzja4MOoXN46AFMs9QIPTy4UOZT0I1ZSgYXT6RM zeKzWzWV853Ng== Date: Tue, 14 Oct 2025 12:26:46 +0100 From: Simon Horman To: Vadim Fedorenko Cc: Shyam Sundar S K , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Igor Russkikh , Egor Pomozov , Potnuri Bharat Teja , Dimitris Michailidis , Jian Shen , Salil Mehta , Jijie Shao , Sunil Goutham , Geetha sowjanya , Subbaraya Sundeep , Bharat Bhushan , Tariq Toukan , Brett Creeley , Niklas =?utf-8?Q?S=C3=B6derlund?= , Paul Barker , Yoshihiro Shimoda , MD Danish Anwar , Roger Quadros , Richard Cochran , Russell King , Vladimir Oltean , netdev@vger.kernel.org, linux-renesas-soc@vger.kernel.org Subject: Re: [PATCH net-next 13/14] net: hns3: add hwtstamp_get/hwtstamp_set ops Message-ID: References: <20251013163749.5047-1-vadim.fedorenko@linux.dev> <20251013163749.5047-8-vadim.fedorenko@linux.dev> Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251013163749.5047-8-vadim.fedorenko@linux.dev> On Mon, Oct 13, 2025 at 04:37:48PM +0000, Vadim Fedorenko wrote: > And .ndo_hwtstamp_get()/.ndo_hwtstamp_set() callbacks to HNS3 framework > to support HW timestamp configuration via netlink. > > Signed-off-by: Vadim Fedorenko Hi Vadim, This patch adds warnings about the functions it adds being unused. I would suggest addressing this by simply squashing this and the following patch, which uses these new functions, into one patch. I think the resulting patch would still be small, internally consistent, and easy enough to review.