* [PATCH net v2] ptp: fc3: register PTP clock after initialization
@ 2026-08-03 13:59 Myeonghun Pak
2026-08-06 15:20 ` patchwork-bot+netdevbpf
0 siblings, 1 reply; 2+ messages in thread
From: Myeonghun Pak @ 2026-08-03 13:59 UTC (permalink / raw)
To: Richard Cochran
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, netdev, linux-kernel, stable, Myeonghun Pak,
Ijae Kim
ptp_clock_register() exposes the clock to userspace. If either following
initialization operation fails, probe returns and devres frees idtfc3 while
the registered clock still refers to the clock information embedded in it.
Complete the fallible initialization before registering the clock. Schedule
the worker after registration because it requires the registered clock.
This removes post-registration failures and avoids exposing a partially
initialized clock.
Fixes: 1ddfecafabf7 ("ptp: add FemtoClock3 Wireless as ptp hardware clock")
Cc: stable@vger.kernel.org
Co-developed-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Myeonghun Pak <mhun512@gmail.com>
---
Changes in v2:
- Register the PTP clock after initialization instead of unregistering it
while holding idtfc3->lock, which could deadlock with a concurrent clock
operation holding the POSIX clock rwsem.
drivers/ptp/ptp_fc3.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/ptp/ptp_fc3.c b/drivers/ptp/ptp_fc3.c
index f0e0004..02b9739 100644
--- a/drivers/ptp/ptp_fc3.c
+++ b/drivers/ptp/ptp_fc3.c
@@ -665,8 +665,6 @@ static int idtfc3_init_timecounter(struct idtfc3 *idtfc3)
if (err)
return err;
- ptp_schedule_worker(idtfc3->ptp_clock, idtfc3->tc_update_period);
-
return 0;
}
@@ -825,6 +823,14 @@ static int idtfc3_enable_ptp(struct idtfc3 *idtfc3)
idtfc3->caps = idtfc3_caps;
snprintf(idtfc3->caps.name, sizeof(idtfc3->caps.name), "IDT FC3W");
+ err = idtfc3_set_overhead(idtfc3);
+ if (err)
+ return err;
+
+ err = idtfc3_init_timecounter(idtfc3);
+ if (err)
+ return err;
+
idtfc3->ptp_clock = ptp_clock_register(&idtfc3->caps, NULL);
if (IS_ERR(idtfc3->ptp_clock)) {
@@ -833,13 +839,7 @@ static int idtfc3_enable_ptp(struct idtfc3 *idtfc3)
return err;
}
- err = idtfc3_set_overhead(idtfc3);
- if (err)
- return err;
-
- err = idtfc3_init_timecounter(idtfc3);
- if (err)
- return err;
+ ptp_schedule_worker(idtfc3->ptp_clock, idtfc3->tc_update_period);
dev_info(idtfc3->dev, "TIME_SYNC_CHANNEL registered as ptp%d",
idtfc3->ptp_clock->index);
--
2.50.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH net v2] ptp: fc3: register PTP clock after initialization
2026-08-03 13:59 [PATCH net v2] ptp: fc3: register PTP clock after initialization Myeonghun Pak
@ 2026-08-06 15:20 ` patchwork-bot+netdevbpf
0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-08-06 15:20 UTC (permalink / raw)
To: Myeonghun Pak
Cc: richardcochran, andrew+netdev, davem, edumazet, kuba, pabeni,
netdev, linux-kernel, stable, ae878000
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 3 Aug 2026 22:59:42 +0900 you wrote:
> ptp_clock_register() exposes the clock to userspace. If either following
> initialization operation fails, probe returns and devres frees idtfc3 while
> the registered clock still refers to the clock information embedded in it.
>
> Complete the fallible initialization before registering the clock. Schedule
> the worker after registration because it requires the registered clock.
> This removes post-registration failures and avoids exposing a partially
> initialized clock.
>
> [...]
Here is the summary with links:
- [net,v2] ptp: fc3: register PTP clock after initialization
https://git.kernel.org/netdev/net-next/c/762137ff748f
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-06 15:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-03 13:59 [PATCH net v2] ptp: fc3: register PTP clock after initialization Myeonghun Pak
2026-08-06 15:20 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox