mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-01 12:39:06 +07:00
userfaultfd: selftest: only warn if __NR_userfaultfd is undefined
If __NR_userfaultfd is not yet defined by the arch, warn but still build and run the userfaultfd selftest successfully. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Cc: Shuah Khan <shuahkh@osg.samsung.com> Cc: Thierry Reding <treding@nvidia.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
67f6a029b2
commit
56ed8f169e
@ -66,9 +66,7 @@
|
|||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <linux/userfaultfd.h>
|
#include <linux/userfaultfd.h>
|
||||||
|
|
||||||
#ifndef __NR_userfaultfd
|
#ifdef __NR_userfaultfd
|
||||||
#error "missing __NR_userfaultfd definition"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static unsigned long nr_cpus, nr_pages, nr_pages_per_cpu, page_size;
|
static unsigned long nr_cpus, nr_pages, nr_pages_per_cpu, page_size;
|
||||||
|
|
||||||
@ -631,3 +629,15 @@ int main(int argc, char **argv)
|
|||||||
nr_pages, nr_pages_per_cpu);
|
nr_pages, nr_pages_per_cpu);
|
||||||
return userfaultfd_stress();
|
return userfaultfd_stress();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else /* __NR_userfaultfd */
|
||||||
|
|
||||||
|
#warning "missing __NR_userfaultfd definition"
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
printf("skip: Skipping userfaultfd test (missing __NR_userfaultfd)\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* __NR_userfaultfd */
|
||||||
|
Loading…
Reference in New Issue
Block a user