On 06/11/18 11:22 PM, Daniel Borkmann wrote: > While hacking on kTLS, I ran into the following panic from an > unprivileged netserver / netperf TCP session: > > [...] > Looks like the recent conversion from poll to poll_mask callback started > in 152524231023 ("net: add support for ->poll_mask in proto_ops") missed > to eventually convert kTLS, too: TCP's ->poll was converted over to the > ->poll_mask in commit 2c7d3dacebd4 ("net/tcp: convert to ->poll_mask") > and therefore kTLS wrongly saved the ->poll old one which is now NULL. > > Convert kTLS over to use ->poll_mask instead. Also instead of POLLIN | > POLLRDNORM use the proper EPOLLIN | EPOLLRDNORM bits as the case in > tcp_poll_mask() as well that is mangled here.
Thanks, was just trying to bisect this myself. Works for me. Tested-by: Dave Watson <davejwat...@fb.com> > Fixes: 2c7d3dacebd4 ("net/tcp: convert to ->poll_mask") > Signed-off-by: Daniel Borkmann <dan...@iogearbox.net> > Cc: Christoph Hellwig <h...@lst.de> > Cc: Dave Watson <davejwat...@fb.com>