From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-181.mta0.migadu.com (out-181.mta0.migadu.com [91.218.175.181]) (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 1B49F43151 for ; Mon, 10 Feb 2025 09:13:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.181 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739178821; cv=none; b=nWfvV98+oEthqMfkqGtehZOAGw9RSPMb3am5h+1elOOOg4Yy0MfxLh+lpi9TpcreJ+eDCYnovvDp7bWLl4j18H0nefETNglidd0VQjXLtlRadfd/5Zv1j9bXldKZ91fYINn6vr1CvIPOVX6Md8Bf+8/WgYPltrgmOEQiMs5oSqM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739178821; c=relaxed/simple; bh=SO2WLT9I1fEp6/tddXypx3LT/ZM5k7PH/JAeb+PsiFw=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=Pxx7JHHhovS4g33hCfy8zlTRG2/ay1R4L+RlAoN6262xewguiQyh9jTcR1z87lcl6sUXbqLqrc/JwzFsblv4XLPiJkza5DbaD8jOxR17Y8VMhWSsN46e8dyoMJv6bxxCR0vz80PF6KGojI54KZDaT0DW9piQxnD10iyJAht0mzc= 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=CceZQDOI; arc=none smtp.client-ip=91.218.175.181 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="CceZQDOI" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1739178806; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pAf4xxjMd3bido3OYSPc5jm1TyPEocE6gMB8ihRh6EI=; b=CceZQDOIpIJ8DujjXQhLHKVWH2biBmI5Huqn7vs2vKD0wInknLcSiw0ug8ybSVw31/wGSA pAg4L7EctJLJwQ+rbnRuARQfnE90KGoW3tgf12xeCsT5UvsVWtAqdVpo0wdgK4brGzauFv 1Yn1hubC91lNdczFV9oeCK6v96EmPYA= Date: Mon, 10 Feb 2025 09:13:24 +0000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH v2] net: e1000e: convert to ndo_hwtstamp_get() and ndo_hwtstamp_set() To: Piotr Wejman , Tony Nguyen , Przemek Kitszel , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org References: <20250208154350.75316-1-wejmanpm@gmail.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: <20250208154350.75316-1-wejmanpm@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 08/02/2025 15:43, Piotr Wejman wrote: > Update the driver to use the new hardware timestamping API added in commit > 66f7223039c0 ("net: add NDOs for configuring hardware timestamping"). > Use Netlink extack for error reporting in e1000e_hwtstamp_set. > Align the indentation of net_device_ops. > > Signed-off-by: Piotr Wejman > --- > Changes in v2: > - amend commit message > - use extack for error reporting > - rename e1000_mii_ioctl to e1000_ioctl > - Link to v1: https://lore.kernel.org/netdev/20250202170839.47375-1-piotrwejman90@gmail.com/ > Reviewed-by: Vadim Fedorenko