Re: [PATCH 3/6] selftests/mm: Skip uffd-stress if userfaultfd not available

From: Brendan Jackman
Date: Thu Feb 20 2025 - 13:18:27 EST


On Thu, 20 Feb 2025 at 19:06, Dev Jain <dev.jain@xxxxxxx> wrote:
> > - if (uffd_get_features(&features))
> > - err("failed to get available features");
> > + if (uffd_get_features(&features) && errno == ENOENT)
> > + ksft_exit_skip("failed to get avialable features (%d)\n", errno);
> >
>
> s/avialable/available

Oh thanks. I thought I had codespell running automatically on my
diffs, I'll have to look at why that wasn't caught.