From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-171.mta1.migadu.com (out-171.mta1.migadu.com [95.215.58.171]) (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 C898028A1ED for ; Thu, 8 May 2025 20:39:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.171 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746736774; cv=none; b=lPCKsb23S46WxChl+h2N6B8QZyiCHrXgWgXmZjo2IyjVNMDsIeC+ETXeyoBpl3TBDP0VqiUomEMTNeD9cANXtMaARi+oj0VVNM4cdmxjE84GIE4nciAhxxK0HNkASPisxK8xNda0q5G6VuaVxoSLyKGau70dEY7P0z+8524vTsk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746736774; c=relaxed/simple; bh=OzrAaiNREhsCcZ5piTxWmi5+xi0338q9UN3vldT6s/I=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=Z1qfk2d9xTsncPOYMZCu1B0abft5Qrm5myPJM+VsbYQ/Bi901plb7HaUymoHqEwNCdg5XHdUDFgiFRwrUBioonBWcVx98UWN21sxXsWlwKewIT2EcuWtO+JloumoKi6baC6uQDZTu9N/5CjJ3CjVDoaPTnUOIyaKmyU9/sms/gg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=I15lbxJr; arc=none smtp.client-ip=95.215.58.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="I15lbxJr" Message-ID: <7395888c-d674-44aa-9220-dda90d7f6b96@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1746736770; 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=exTPBcS6ztBxyKvnjJwhYkGJFCh4zMeDA6QE+FUcAlM=; b=I15lbxJrG72hXUNDBxg6q/6/D77tZkwbiPuWZKMC0RLWZ+CQAI19SKfuDJUeBF6z8skT3v gn1cXvRp7Pam9c6nlRAePIc/Sg1DRwhsd1WN2mp4UAy4NE/2SyMkIpzrw4H51dTFO5oDkd g763gvLCn/GOQPxjniGMWbm5BJOvfnE= Date: Thu, 8 May 2025 21:39:23 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH net-next 0/3] dpaa_eth conversion to ndo_hwtstamp_get() and ndo_hwtstamp_set() To: Vladimir Oltean , netdev@vger.kernel.org Cc: =?UTF-8?Q?K=C3=B6ry_Maincent?= , Madalin Bucur , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Richard Cochran , Russell King , linux-kernel@vger.kernel.org References: <20250508124753.1492742-1-vladimir.oltean@nxp.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Vadim Fedorenko In-Reply-To: <20250508124753.1492742-1-vladimir.oltean@nxp.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 08/05/2025 13:47, Vladimir Oltean wrote: > This is part of the effort to finalize the conversion of drivers to the > dedicated hardware timestamping API. > > In the case of the DPAA1 Ethernet driver, a bit more care is needed, > because dpaa_ioctl() looks a bit strange. It handles the "set" IOCTL but > not the "get", and even the phylink_mii_ioctl() portion could do with > some cleanup. > > Vladimir Oltean (3): > net: dpaa_eth: convert to ndo_hwtstamp_set() > net: dpaa_eth: add ndo_hwtstamp_get() implementation > net: dpaa_eth: simplify dpaa_ioctl() > > .../net/ethernet/freescale/dpaa/dpaa_eth.c | 41 ++++++++++--------- > 1 file changed, 21 insertions(+), 20 deletions(-) > For the series: Reviewed-by: Vadim Fedorenko