Commit b714ca2c authored by Edward Adam Davis's avatar Edward Adam Davis Committed by Jakub Kicinski
Browse files

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: default avatarRichard Cochran <richardcochran@gmail.com>
Reported-and-tested-by: default avatar <syzbot+df3f3ef31f60781fa911@syzkaller.appspotmail.com>
Fixes: 8f5de6fb ("ptp: support multiple timestamp event readers")
Signed-off-by: default avatarEdward Adam Davis <eadavis@qq.com>
Link: https://lore.kernel.org/r/tencent_18747D76F1675A3C633772960237544AAA09@qq.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 9b818a34
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -585,7 +585,5 @@ ssize_t ptp_read(struct posix_clock_context *pccontext, uint rdflags,
free_event:
	kfree(event);
exit:
	if (result < 0)
		ptp_release(pccontext);
	return result;
}