Intel-Wired-Lan Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jacob Keller <jacob.e.keller@intel.com>
To: Vadim Fedorenko <vadim.fedorenko@linux.dev>,
	Xuanqiang Luo <xuanqiang.luo@linux.dev>, <netdev@vger.kernel.org>
Cc: <intel-wired-lan@lists.osuosl.org>, <richardcochran@gmail.com>,
	<anthony.l.nguyen@intel.com>, <przemyslaw.kitszel@intel.com>,
	<ahmed.zaki@intel.com>, <mateusz.polchlopek@intel.com>,
	<saikrishnag@marvell.com>, <andrew+netdev@lunn.ch>,
	<davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
	<pabeni@redhat.com>, Xuanqiang Luo <luoxuanqiang@kylinos.cn>,
	<stable@vger.kernel.org>
Subject: Re: [PATCH net v1] iavf: add missing PTP adjustment callbacks
Date: Mon, 31 Aug 2026 14:58:01 -0700	[thread overview]
Message-ID: <8ab343e6-1bb3-4213-9fad-fab43bf40362@intel.com> (raw)
In-Reply-To: <ddc21a8e-b2dc-41a7-8390-5642664f08ea@linux.dev>

On 8/28/2026 2:10 AM, Vadim Fedorenko wrote:
> On 28/08/2026 02:58, Xuanqiang Luo wrote:
>> From: Xuanqiang Luo <luoxuanqiang@kylinos.cn>
>>
>> The PTP hardware clock documentation requires drivers to implement all
>> callbacks and return -EOPNOTSUPP for unsupported features.
>>
>> The iavf driver registers a PHC without adjtime or adjfine callbacks.
>> A userspace clock_adjtime(2) request reaches ptp_clock_adjtime(), where
>> ADJ_SETOFFSET calls adjtime and ADJ_FREQUENCY calls adjfine. The missing
>> callbacks can therefore cause a NULL dereference.
>>
>> Provide both callbacks and return -EOPNOTSUPP for the unsupported
>> operations.
>>
>> Fixes: d734223b2f0d ("iavf: add initial framework for registering PTP
>> clock")
>> Link: https://docs.kernel.org/driver-api/ptp.html#writing-clock-drivers
>> Link: https://lore.kernel.org/all/20260826101004.100979-1-
>> xuanqiang.luo@linux.dev/
>> Cc: stable@vger.kernel.org
>> Signed-off-by: Xuanqiang Luo <luoxuanqiang@kylinos.cn>

Acked-by: Jacob Keller <jacob.e.keller@intel.com>

>> ---
>>   drivers/net/ethernet/intel/iavf/iavf_ptp.c | 12 ++++++++++++
>>   1 file changed, 12 insertions(+)
>>
>> diff --git a/drivers/net/ethernet/intel/iavf/iavf_ptp.c b/drivers/net/
>> ethernet/intel/iavf/iavf_ptp.c
>> index 87b97e09df14a..fcb273828bc1b 100644
>> --- a/drivers/net/ethernet/intel/iavf/iavf_ptp.c
>> +++ b/drivers/net/ethernet/intel/iavf/iavf_ptp.c
>> @@ -252,6 +252,16 @@ static int iavf_ptp_gettimex64(struct
>> ptp_clock_info *info,
>>       return iavf_read_phc_indirect(adapter, ts, sts);
>>   }
>>   +static int iavf_ptp_adjfine(struct ptp_clock_info *info, long
>> scaled_ppm)
>> +{
>> +    return -EOPNOTSUPP;
>> +}
>> +
>> +static int iavf_ptp_adjtime(struct ptp_clock_info *info, s64 delta)
>> +{
>> +    return -EOPNOTSUPP;
>> +}
>> +
>>   static int iavf_ptp_settime64(struct ptp_clock_info *info,
>>                     const struct timespec64 *ts)
>>   {
>> @@ -326,6 +336,8 @@ static int iavf_ptp_register_clock(struct
>> iavf_adapter *adapter)
>>            KBUILD_MODNAME, dev_name(dev));
>>       ptp_info->owner = THIS_MODULE;
>>       ptp_info->gettimex64 = iavf_ptp_gettimex64;
>> +    ptp_info->adjfine = iavf_ptp_adjfine;
>> +    ptp_info->adjtime = iavf_ptp_adjtime;
>>       ptp_info->settime64 = iavf_ptp_settime64;
>>       ptp_info->do_aux_work = iavf_ptp_do_aux_work;
>>   
> Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev>


      reply	other threads:[~2026-08-31 21:58 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-28  1:58 [PATCH net v1] iavf: add missing PTP adjustment callbacks Xuanqiang Luo
2026-08-28  9:10 ` Vadim Fedorenko
2026-08-31 21:58   ` Jacob Keller [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8ab343e6-1bb3-4213-9fad-fab43bf40362@intel.com \
    --to=jacob.e.keller@intel.com \
    --cc=ahmed.zaki@intel.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=anthony.l.nguyen@intel.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=intel-wired-lan@lists.osuosl.org \
    --cc=kuba@kernel.org \
    --cc=luoxuanqiang@kylinos.cn \
    --cc=mateusz.polchlopek@intel.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=przemyslaw.kitszel@intel.com \
    --cc=richardcochran@gmail.com \
    --cc=saikrishnag@marvell.com \
    --cc=stable@vger.kernel.org \
    --cc=vadim.fedorenko@linux.dev \
    --cc=xuanqiang.luo@linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox