Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
selftests/mm: replace atomic_bool with pthread_barrier_t
Browse files Browse the repository at this point in the history
commit e61ef21 upstream.

Patch series "selftests/mm: fix deadlock after pthread_create".

On Android arm, pthread_create followed by a fork caused a deadlock in the
case where the fork required work to be completed by the created thread.

Update the synchronization primitive to use pthread_barrier instead of
atomic_bool.

Apply the same fix to the wp-fork-with-event test.


This patch (of 2):

Swap synchronization primitive with pthread_barrier, so that stdatomic.h
does not need to be included.

The synchronization is needed on Android ARM64; we see a deadlock with
pthread_create when the parent thread races forward before the child has a
chance to start doing work.

Link: https://lkml.kernel.org/r/[email protected]
Link: https://lkml.kernel.org/r/[email protected]
Fixes: cff2945 ("selftests/mm: extend and rename uffd pagemap test")
Signed-off-by: Edward Liaw <[email protected]>
Cc: Lokesh Gidra <[email protected]>
Cc: Peter Xu <[email protected]>
Cc: Shuah Khan <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
edliaw authored and gregkh committed Oct 22, 2024
1 parent 008eef4 commit cf7b550
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
5 changes: 3 additions & 2 deletions tools/testing/selftests/mm/uffd-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bool test_uffdio_wp = true;
unsigned long long *count_verify;
uffd_test_ops_t *uffd_test_ops;
uffd_test_case_ops_t *uffd_test_case_ops;
atomic_bool ready_for_fork;
pthread_barrier_t ready_for_fork;

static int uffd_mem_fd_create(off_t mem_size, bool hugetlb)
{
Expand Down Expand Up @@ -519,7 +519,8 @@ void *uffd_poll_thread(void *arg)
pollfd[1].fd = pipefd[cpu*2];
pollfd[1].events = POLLIN;

ready_for_fork = true;
/* Ready for parent thread to fork */
pthread_barrier_wait(&ready_for_fork);

for (;;) {
ret = poll(pollfd, 2, -1);
Expand Down
3 changes: 1 addition & 2 deletions tools/testing/selftests/mm/uffd-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include <inttypes.h>
#include <stdint.h>
#include <sys/random.h>
#include <stdatomic.h>

#include "../kselftest.h"
#include "vm_util.h"
Expand Down Expand Up @@ -105,7 +104,7 @@ extern bool map_shared;
extern bool test_uffdio_wp;
extern unsigned long long *count_verify;
extern volatile bool test_uffdio_copy_eexist;
extern atomic_bool ready_for_fork;
extern pthread_barrier_t ready_for_fork;

extern uffd_test_ops_t anon_uffd_test_ops;
extern uffd_test_ops_t shmem_uffd_test_ops;
Expand Down
14 changes: 8 additions & 6 deletions tools/testing/selftests/mm/uffd-unit-tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ static void uffd_sigbus_test_common(bool wp)
char c;
struct uffd_args args = { 0 };

ready_for_fork = false;
pthread_barrier_init(&ready_for_fork, NULL, 2);

fcntl(uffd, F_SETFL, uffd_flags | O_NONBLOCK);

Expand All @@ -791,8 +791,9 @@ static void uffd_sigbus_test_common(bool wp)
if (pthread_create(&uffd_mon, NULL, uffd_poll_thread, &args))
err("uffd_poll_thread create");

while (!ready_for_fork)
; /* Wait for the poll_thread to start executing before forking */
/* Wait for child thread to start before forking */
pthread_barrier_wait(&ready_for_fork);
pthread_barrier_destroy(&ready_for_fork);

pid = fork();
if (pid < 0)
Expand Down Expand Up @@ -833,7 +834,7 @@ static void uffd_events_test_common(bool wp)
char c;
struct uffd_args args = { 0 };

ready_for_fork = false;
pthread_barrier_init(&ready_for_fork, NULL, 2);

fcntl(uffd, F_SETFL, uffd_flags | O_NONBLOCK);
if (uffd_register(uffd, area_dst, nr_pages * page_size,
Expand All @@ -844,8 +845,9 @@ static void uffd_events_test_common(bool wp)
if (pthread_create(&uffd_mon, NULL, uffd_poll_thread, &args))
err("uffd_poll_thread create");

while (!ready_for_fork)
; /* Wait for the poll_thread to start executing before forking */
/* Wait for child thread to start before forking */
pthread_barrier_wait(&ready_for_fork);
pthread_barrier_destroy(&ready_for_fork);

pid = fork();
if (pid < 0)
Expand Down

0 comments on commit cf7b550

Please sign in to comment.