From: Wen Gu <guwen@linux.alibaba.com>
To: Vadim Fedorenko <vadim.fedorenko@linux.dev>,
Andrew Lunn <andrew@lunn.ch>
Cc: richardcochran@gmail.com, andrew+netdev@lunn.ch,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, xuanzhuo@linux.alibaba.com,
dust.li@linux.alibaba.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next v2] ptp: add Alibaba CIPU PTP clock driver
Date: Mon, 30 Jun 2025 19:23:49 +0800 [thread overview]
Message-ID: <ea85f778-a2d4-439c-abbd-2a8ecea0e928@linux.alibaba.com> (raw)
In-Reply-To: <99debaac-3768-45f5-b7e0-ec89704e39eb@linux.dev>
On 2025/6/27 18:59, Vadim Fedorenko wrote:
> On 27/06/2025 08:57, Andrew Lunn wrote:
>
>>> +static int ptp_cipu_enable(struct ptp_clock_info *info,
>>> + struct ptp_clock_request *request, int on)
>>> +{
>>> + return -EOPNOTSUPP;
>>> +}
>>> +
>>> +static int ptp_cipu_settime(struct ptp_clock_info *p,
>>> + const struct timespec64 *ts)
>>> +{
>>> + return -EOPNOTSUPP;
>>> +}
>>> +
>>> +static int ptp_cipu_adjfine(struct ptp_clock_info *ptp, long scaled_ppm)
>>> +{
>>> + return -EOPNOTSUPP;
>>> +}
>>> +
>>> +static int ptp_cipu_adjtime(struct ptp_clock_info *ptp, s64 delta)
>>> +{
>>> + return -EOPNOTSUPP;
>>> +}
>>
>> I've not looked at the core. Are these actually required? Or if they
>> are missing, does the core default to -EOPNOTSUPP?
>>
>
> I was going to say that these are not needed because posix clocks do
> check if callbacks are assigned and return -EOPNOTSUPP if they are not.
> That's why ptp_clock_* functions do call these callbacks without checks.
Hi Vadim, do you mean posix clock functions like this:
e.g. posix-clock.c:
static int pc_clock_settime(clockid_t id, const struct timespec64 *ts)
{
<...>
if (cd.clk->ops.clock_settime)
err = cd.clk->ops.clock_settime(cd.clk, ts);
else
err = -EOPNOTSUPP;
<...>
}
In ptp_clock.c, ops.clock_settime() is assigned to ptp_clock_settime(),
and it will call ptp->info->settime64() without checks. So I think these
'return -EOPNOTSUPP' functions are needed. Did I miss something?
Thanks!
next prev parent reply other threads:[~2025-06-30 11:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-27 7:29 [PATCH net-next v2] ptp: add Alibaba CIPU PTP clock driver Wen Gu
2025-06-27 7:46 ` Andrew Lunn
2025-06-30 9:04 ` Wen Gu
2025-06-27 7:57 ` Andrew Lunn
2025-06-27 10:59 ` Vadim Fedorenko
2025-06-30 11:23 ` Wen Gu [this message]
2025-06-30 13:42 ` Richard Cochran
2025-06-30 12:45 ` Wen Gu
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=ea85f778-a2d4-439c-abbd-2a8ecea0e928@linux.alibaba.com \
--to=guwen@linux.alibaba.com \
--cc=andrew+netdev@lunn.ch \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=dust.li@linux.alibaba.com \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=vadim.fedorenko@linux.dev \
--cc=xuanzhuo@linux.alibaba.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.