From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [95.215.58.174]) (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 BD03F21D5B6 for ; Thu, 8 May 2025 20:41:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.174 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746736903; cv=none; b=YppstAqmXSImollTZvKGnc2qLxAUlZDVlKpDVqZu9gi1KRcmF2YP3AE/63u9UszR5HP0dFMwzVJG/8bG1bOl7Luo57tsXckLQyp2JbRsU9mWdMaATgXG5hkbNAt+Wki25OpGK3uel/q6V3SWWHiRRJQsRrK7uaYcjwAnVI00SZ8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1746736903; c=relaxed/simple; bh=ioUmbuKo5pcxglh/C/a2eGwKvsxJbEfxm2KZKVxmmJo=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=bvdqVUzYhBRZTKOOXQll4/0beU7Z5U98RlZBki13ZJvNIsO/26Z+8RZT4CDnbqCQLOziWKzQbVjXtg1N97bNhFhS43V0bS80aYHA8p9/dylPcYzALIJeeQG6nLykvEINpli/XNmSiddj09N3ZJquGTKQUDuTv9y3tZx3/S35cg0= 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=M2JuCfa9; arc=none smtp.client-ip=95.215.58.174 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="M2JuCfa9" Message-ID: <03c54e2a-61a9-4377-80c0-7037c03d3127@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1746736899; 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=fnuv5y5GncHbfe6Hcr7O5i1pTYi7yqZI3Oy2vC/nr5U=; b=M2JuCfa98YTR/PTDnVwqyKOXNuNH0npsYfQQJf6yMLukBNl07PXXW1vvJQhtm4X2DSJiYw GZiYARgXixyzhUe+uCjvGK0amO02IySJD08CLBUJAEsFLLZ4zfk1BqAErHDgj44mUa1I/r k3mX9wA93FAFb41yc5rNx65V5NHjmFo= Date: Thu, 8 May 2025 21:41:35 +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 2/2] net: dpaa2-eth: add ndo_hwtstamp_get() implementation To: Vladimir Oltean , netdev@vger.kernel.org Cc: =?UTF-8?Q?K=C3=B6ry_Maincent?= , Ioana Ciornei , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Richard Cochran , linux-kernel@vger.kernel.org References: <20250508134102.1747075-1-vladimir.oltean@nxp.com> <20250508134102.1747075-2-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: <20250508134102.1747075-2-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 14:41, Vladimir Oltean wrote: > Allow SIOCGHWTSTAMP to retrieve the current timestamping settings on > DPNIs. This reflects what has been done in dpaa2_eth_hwtstamp_set(). > > Tested with hwstamp_ctl -i endpmac17. Before the change, it prints > "Device driver does not have support for non-destructive SIOCGHWTSTAMP." > After the change, it retrieves the previously set configuration. > > Signed-off-by: Vladimir Oltean > Tested-by: Vladimir Oltean # LX2160A Reviewed-by: Vadim Fedorenko