In the Linux kernel, the following vulnerability has been resolved:
mptcp: fix scheduling with atomic in timestamp sockopt
Using locksockfast() (atomic context) around socksettimestamp() and socksettimestamping() is unsafe, as both helpers can sleep.
Replace locksockfast() with sleepable locksock()/releasesock() to avoid scheduling while atomic panic.