Commit 50834084 authored by Peter Xu's avatar Peter Xu Committed by Andrew Morton

selftests/mm: rename uffd_stats to uffd_args

Prepare for adding more fields into the struct.

Link: https://lkml.kernel.org/r/20230412164337.328607-1-peterx@redhat.comSigned-off-by: default avatarPeter Xu <peterx@redhat.com>
Suggested-by: default avatarMike Rapoport (IBM) <rppt@kernel.org>
Cc: Axel Rasmussen <axelrasmussen@google.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Dmitry Safonov <0x7f454c46@gmail.com>
Cc: Mike Kravetz <mike.kravetz@oracle.com>
Cc: Zach O'Keefe <zokeefe@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 265818ef
...@@ -186,34 +186,34 @@ struct uffd_test_ops hugetlb_uffd_test_ops = { ...@@ -186,34 +186,34 @@ struct uffd_test_ops hugetlb_uffd_test_ops = {
.check_pmd_mapping = NULL, .check_pmd_mapping = NULL,
}; };
void uffd_stats_report(struct uffd_stats *stats, int n_cpus) void uffd_stats_report(struct uffd_args *args, int n_cpus)
{ {
int i; int i;
unsigned long long miss_total = 0, wp_total = 0, minor_total = 0; unsigned long long miss_total = 0, wp_total = 0, minor_total = 0;
for (i = 0; i < n_cpus; i++) { for (i = 0; i < n_cpus; i++) {
miss_total += stats[i].missing_faults; miss_total += args[i].missing_faults;
wp_total += stats[i].wp_faults; wp_total += args[i].wp_faults;
minor_total += stats[i].minor_faults; minor_total += args[i].minor_faults;
} }
printf("userfaults: "); printf("userfaults: ");
if (miss_total) { if (miss_total) {
printf("%llu missing (", miss_total); printf("%llu missing (", miss_total);
for (i = 0; i < n_cpus; i++) for (i = 0; i < n_cpus; i++)
printf("%lu+", stats[i].missing_faults); printf("%lu+", args[i].missing_faults);
printf("\b) "); printf("\b) ");
} }
if (wp_total) { if (wp_total) {
printf("%llu wp (", wp_total); printf("%llu wp (", wp_total);
for (i = 0; i < n_cpus; i++) for (i = 0; i < n_cpus; i++)
printf("%lu+", stats[i].wp_faults); printf("%lu+", args[i].wp_faults);
printf("\b) "); printf("\b) ");
} }
if (minor_total) { if (minor_total) {
printf("%llu minor (", minor_total); printf("%llu minor (", minor_total);
for (i = 0; i < n_cpus; i++) for (i = 0; i < n_cpus; i++)
printf("%lu+", stats[i].minor_faults); printf("%lu+", args[i].minor_faults);
printf("\b)"); printf("\b)");
} }
printf("\n"); printf("\n");
...@@ -397,7 +397,7 @@ int uffd_read_msg(int ufd, struct uffd_msg *msg) ...@@ -397,7 +397,7 @@ int uffd_read_msg(int ufd, struct uffd_msg *msg)
return 0; return 0;
} }
void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats) void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_args *args)
{ {
unsigned long offset; unsigned long offset;
...@@ -407,7 +407,7 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats) ...@@ -407,7 +407,7 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats)
if (msg->arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_WP) { if (msg->arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_WP) {
/* Write protect page faults */ /* Write protect page faults */
wp_range(uffd, msg->arg.pagefault.address, page_size, false); wp_range(uffd, msg->arg.pagefault.address, page_size, false);
stats->wp_faults++; args->wp_faults++;
} else if (msg->arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_MINOR) { } else if (msg->arg.pagefault.flags & UFFD_PAGEFAULT_FLAG_MINOR) {
uint8_t *area; uint8_t *area;
int b; int b;
...@@ -430,7 +430,7 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats) ...@@ -430,7 +430,7 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats)
for (b = 0; b < page_size; ++b) for (b = 0; b < page_size; ++b)
area[b] = ~area[b]; area[b] = ~area[b];
continue_range(uffd, msg->arg.pagefault.address, page_size); continue_range(uffd, msg->arg.pagefault.address, page_size);
stats->minor_faults++; args->minor_faults++;
} else { } else {
/* /*
* Missing page faults. * Missing page faults.
...@@ -460,14 +460,14 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats) ...@@ -460,14 +460,14 @@ void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats)
offset &= ~(page_size-1); offset &= ~(page_size-1);
if (copy_page(uffd, offset)) if (copy_page(uffd, offset))
stats->missing_faults++; args->missing_faults++;
} }
} }
void *uffd_poll_thread(void *arg) void *uffd_poll_thread(void *arg)
{ {
struct uffd_stats *stats = (struct uffd_stats *)arg; struct uffd_args *args = (struct uffd_args *)arg;
unsigned long cpu = stats->cpu; unsigned long cpu = args->cpu;
struct pollfd pollfd[2]; struct pollfd pollfd[2];
struct uffd_msg msg; struct uffd_msg msg;
struct uffdio_register uffd_reg; struct uffdio_register uffd_reg;
...@@ -502,7 +502,7 @@ void *uffd_poll_thread(void *arg) ...@@ -502,7 +502,7 @@ void *uffd_poll_thread(void *arg)
err("unexpected msg event %u\n", msg.event); err("unexpected msg event %u\n", msg.event);
break; break;
case UFFD_EVENT_PAGEFAULT: case UFFD_EVENT_PAGEFAULT:
uffd_handle_page_fault(&msg, stats); uffd_handle_page_fault(&msg, args);
break; break;
case UFFD_EVENT_FORK: case UFFD_EVENT_FORK:
close(uffd); close(uffd);
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
- 1))) - 1)))
/* Userfaultfd test statistics */ /* Userfaultfd test statistics */
struct uffd_stats { struct uffd_args {
int cpu; int cpu;
unsigned long missing_faults; unsigned long missing_faults;
unsigned long wp_faults; unsigned long wp_faults;
...@@ -98,12 +98,12 @@ extern uffd_test_ops_t shmem_uffd_test_ops; ...@@ -98,12 +98,12 @@ extern uffd_test_ops_t shmem_uffd_test_ops;
extern uffd_test_ops_t hugetlb_uffd_test_ops; extern uffd_test_ops_t hugetlb_uffd_test_ops;
extern uffd_test_ops_t *uffd_test_ops; extern uffd_test_ops_t *uffd_test_ops;
void uffd_stats_report(struct uffd_stats *stats, int n_cpus); void uffd_stats_report(struct uffd_args *args, int n_cpus);
void uffd_test_ctx_init(uint64_t features); void uffd_test_ctx_init(uint64_t features);
void userfaultfd_open(uint64_t *features); void userfaultfd_open(uint64_t *features);
int uffd_read_msg(int ufd, struct uffd_msg *msg); int uffd_read_msg(int ufd, struct uffd_msg *msg);
void wp_range(int ufd, __u64 start, __u64 len, bool wp); void wp_range(int ufd, __u64 start, __u64 len, bool wp);
void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_stats *stats); void uffd_handle_page_fault(struct uffd_msg *msg, struct uffd_args *args);
int __copy_page(int ufd, unsigned long offset, bool retry); int __copy_page(int ufd, unsigned long offset, bool retry);
int copy_page(int ufd, unsigned long offset); int copy_page(int ufd, unsigned long offset);
void *uffd_poll_thread(void *arg); void *uffd_poll_thread(void *arg);
......
...@@ -90,16 +90,15 @@ static void usage(void) ...@@ -90,16 +90,15 @@ static void usage(void)
exit(1); exit(1);
} }
static void uffd_stats_reset(struct uffd_stats *uffd_stats, static void uffd_stats_reset(struct uffd_args *args, unsigned long n_cpus)
unsigned long n_cpus)
{ {
int i; int i;
for (i = 0; i < n_cpus; i++) { for (i = 0; i < n_cpus; i++) {
uffd_stats[i].cpu = i; args[i].cpu = i;
uffd_stats[i].missing_faults = 0; args[i].missing_faults = 0;
uffd_stats[i].wp_faults = 0; args[i].wp_faults = 0;
uffd_stats[i].minor_faults = 0; args[i].minor_faults = 0;
} }
} }
...@@ -163,7 +162,7 @@ pthread_mutex_t uffd_read_mutex = PTHREAD_MUTEX_INITIALIZER; ...@@ -163,7 +162,7 @@ pthread_mutex_t uffd_read_mutex = PTHREAD_MUTEX_INITIALIZER;
static void *uffd_read_thread(void *arg) static void *uffd_read_thread(void *arg)
{ {
struct uffd_stats *stats = (struct uffd_stats *)arg; struct uffd_args *args = (struct uffd_args *)arg;
struct uffd_msg msg; struct uffd_msg msg;
pthread_mutex_unlock(&uffd_read_mutex); pthread_mutex_unlock(&uffd_read_mutex);
...@@ -172,7 +171,7 @@ static void *uffd_read_thread(void *arg) ...@@ -172,7 +171,7 @@ static void *uffd_read_thread(void *arg)
for (;;) { for (;;) {
if (uffd_read_msg(uffd, &msg)) if (uffd_read_msg(uffd, &msg))
continue; continue;
uffd_handle_page_fault(&msg, stats); uffd_handle_page_fault(&msg, args);
} }
return NULL; return NULL;
...@@ -210,7 +209,7 @@ static void *background_thread(void *arg) ...@@ -210,7 +209,7 @@ static void *background_thread(void *arg)
return NULL; return NULL;
} }
static int stress(struct uffd_stats *uffd_stats) static int stress(struct uffd_args *args)
{ {
unsigned long cpu; unsigned long cpu;
pthread_t locking_threads[nr_cpus]; pthread_t locking_threads[nr_cpus];
...@@ -225,12 +224,12 @@ static int stress(struct uffd_stats *uffd_stats) ...@@ -225,12 +224,12 @@ static int stress(struct uffd_stats *uffd_stats)
if (bounces & BOUNCE_POLL) { if (bounces & BOUNCE_POLL) {
if (pthread_create(&uffd_threads[cpu], &attr, if (pthread_create(&uffd_threads[cpu], &attr,
uffd_poll_thread, uffd_poll_thread,
(void *)&uffd_stats[cpu])) (void *)&args[cpu]))
return 1; return 1;
} else { } else {
if (pthread_create(&uffd_threads[cpu], &attr, if (pthread_create(&uffd_threads[cpu], &attr,
uffd_read_thread, uffd_read_thread,
(void *)&uffd_stats[cpu])) (void *)&args[cpu]))
return 1; return 1;
pthread_mutex_lock(&uffd_read_mutex); pthread_mutex_lock(&uffd_read_mutex);
} }
...@@ -264,7 +263,7 @@ static int stress(struct uffd_stats *uffd_stats) ...@@ -264,7 +263,7 @@ static int stress(struct uffd_stats *uffd_stats)
if (write(pipefd[cpu*2+1], &c, 1) != 1) if (write(pipefd[cpu*2+1], &c, 1) != 1)
err("pipefd write error"); err("pipefd write error");
if (pthread_join(uffd_threads[cpu], if (pthread_join(uffd_threads[cpu],
(void *)&uffd_stats[cpu])) (void *)&args[cpu]))
return 1; return 1;
} else { } else {
if (pthread_cancel(uffd_threads[cpu])) if (pthread_cancel(uffd_threads[cpu]))
...@@ -493,7 +492,7 @@ static int userfaultfd_events_test(void) ...@@ -493,7 +492,7 @@ static int userfaultfd_events_test(void)
int err, features; int err, features;
pid_t pid; pid_t pid;
char c; char c;
struct uffd_stats stats = { 0 }; struct uffd_args args = { 0 };
printf("testing events (fork, remap, remove): "); printf("testing events (fork, remap, remove): ");
fflush(stdout); fflush(stdout);
...@@ -508,7 +507,7 @@ static int userfaultfd_events_test(void) ...@@ -508,7 +507,7 @@ static int userfaultfd_events_test(void)
true, test_uffdio_wp, false)) true, test_uffdio_wp, false))
err("register failure"); err("register failure");
if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &stats)) if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &args))
err("uffd_poll_thread create"); err("uffd_poll_thread create");
pid = fork(); pid = fork();
...@@ -526,9 +525,9 @@ static int userfaultfd_events_test(void) ...@@ -526,9 +525,9 @@ static int userfaultfd_events_test(void)
if (pthread_join(uffd_mon, NULL)) if (pthread_join(uffd_mon, NULL))
return 1; return 1;
uffd_stats_report(&stats, 1); uffd_stats_report(&args, 1);
return stats.missing_faults != nr_pages; return args.missing_faults != nr_pages;
} }
static int userfaultfd_sig_test(void) static int userfaultfd_sig_test(void)
...@@ -538,7 +537,7 @@ static int userfaultfd_sig_test(void) ...@@ -538,7 +537,7 @@ static int userfaultfd_sig_test(void)
int err, features; int err, features;
pid_t pid; pid_t pid;
char c; char c;
struct uffd_stats stats = { 0 }; struct uffd_args args = { 0 };
printf("testing signal delivery: "); printf("testing signal delivery: ");
fflush(stdout); fflush(stdout);
...@@ -557,7 +556,7 @@ static int userfaultfd_sig_test(void) ...@@ -557,7 +556,7 @@ static int userfaultfd_sig_test(void)
uffd_test_ops->release_pages(area_dst); uffd_test_ops->release_pages(area_dst);
if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &stats)) if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &args))
err("uffd_poll_thread create"); err("uffd_poll_thread create");
pid = fork(); pid = fork();
...@@ -606,7 +605,7 @@ static int userfaultfd_minor_test(void) ...@@ -606,7 +605,7 @@ static int userfaultfd_minor_test(void)
unsigned long p; unsigned long p;
pthread_t uffd_mon; pthread_t uffd_mon;
char c; char c;
struct uffd_stats stats = { 0 }; struct uffd_args args = { 0 };
if (!test_uffdio_minor) if (!test_uffdio_minor)
return 0; return 0;
...@@ -629,7 +628,7 @@ static int userfaultfd_minor_test(void) ...@@ -629,7 +628,7 @@ static int userfaultfd_minor_test(void)
page_size); page_size);
} }
if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &stats)) if (pthread_create(&uffd_mon, &attr, uffd_poll_thread, &args))
err("uffd_poll_thread create"); err("uffd_poll_thread create");
/* /*
...@@ -645,7 +644,7 @@ static int userfaultfd_minor_test(void) ...@@ -645,7 +644,7 @@ static int userfaultfd_minor_test(void)
if (pthread_join(uffd_mon, NULL)) if (pthread_join(uffd_mon, NULL))
return 1; return 1;
uffd_stats_report(&stats, 1); uffd_stats_report(&args, 1);
if (test_collapse) { if (test_collapse) {
printf("testing collapse of uffd memory into PMD-mapped THPs:"); printf("testing collapse of uffd memory into PMD-mapped THPs:");
...@@ -664,7 +663,7 @@ static int userfaultfd_minor_test(void) ...@@ -664,7 +663,7 @@ static int userfaultfd_minor_test(void)
printf(" done.\n"); printf(" done.\n");
} }
return stats.missing_faults != 0 || stats.minor_faults != nr_pages; return args.missing_faults != 0 || args.minor_faults != nr_pages;
} }
static int pagemap_open(void) static int pagemap_open(void)
...@@ -822,7 +821,7 @@ static int userfaultfd_stress(void) ...@@ -822,7 +821,7 @@ static int userfaultfd_stress(void)
{ {
void *area; void *area;
unsigned long nr; unsigned long nr;
struct uffd_stats uffd_stats[nr_cpus]; struct uffd_args args[nr_cpus];
uint64_t mem_size = nr_pages * page_size; uint64_t mem_size = nr_pages * page_size;
uffd_test_ctx_init(UFFD_FEATURE_WP_UNPOPULATED); uffd_test_ctx_init(UFFD_FEATURE_WP_UNPOPULATED);
...@@ -894,10 +893,10 @@ static int userfaultfd_stress(void) ...@@ -894,10 +893,10 @@ static int userfaultfd_stress(void)
*/ */
uffd_test_ops->release_pages(area_dst); uffd_test_ops->release_pages(area_dst);
uffd_stats_reset(uffd_stats, nr_cpus); uffd_stats_reset(args, nr_cpus);
/* bounce pass */ /* bounce pass */
if (stress(uffd_stats)) if (stress(args))
return 1; return 1;
/* Clear all the write protections if there is any */ /* Clear all the write protections if there is any */
...@@ -926,7 +925,7 @@ static int userfaultfd_stress(void) ...@@ -926,7 +925,7 @@ static int userfaultfd_stress(void)
swap(area_src_alias, area_dst_alias); swap(area_src_alias, area_dst_alias);
uffd_stats_report(uffd_stats, nr_cpus); uffd_stats_report(args, nr_cpus);
} }
if (test_type == TEST_ANON) { if (test_type == TEST_ANON) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment