Steve French <smfrench@xxxxxxxxx> wrote: > I see many "Couldn't get user pages" netfs errors running cifs/102 > regression test (which tests for leaked file handles) when using > current mainline from today (which includes the recent netfs read > retry fixes). For example many of: > > [Mon Feb 17 14:08:31 2025] netfs: Couldn't get user pages (rc=-4) > [Mon Feb 17 14:08:31 2025] netfs: Zero-sized read [R=32f] > [Mon Feb 17 14:08:31 2025] netfs: Couldn't get user pages (rc=-4) > > Anyone else see netfs problems when running with current mainline? rc=-4 is -EINTR. I guess this is because your test is hitting a request with SIGKILL and iov_iter_extract_pages() is failing. The above is probably not a bug, per se, but rather some logging that wants cleaning up. David