Skip to content

Commit b714ca2

Browse files
ea1daviskuba-moo
authored andcommitted
ptp: ptp_read should not release queue
Firstly, queue is not the memory allocated in ptp_read; Secondly, other processes may block at ptp_read and wait for conditions to be met to perform read operations. Acked-by: Richard Cochran <[email protected]> Reported-and-tested-by: [email protected] Fixes: 8f5de6f ("ptp: support multiple timestamp event readers") Signed-off-by: Edward Adam Davis <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 9b818a3 commit b714ca2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

drivers/ptp/ptp_chardev.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,5 @@ ssize_t ptp_read(struct posix_clock_context *pccontext, uint rdflags,
585585
free_event:
586586
kfree(event);
587587
exit:
588-
if (result < 0)
589-
ptp_release(pccontext);
590588
return result;
591589
}

0 commit comments

Comments
 (0)