Index: kernel/test/synch/rcu1.c
===================================================================
--- kernel/test/synch/rcu1.c	(revision e9d2905d090ff2994c1a8f2d7b4d0d4387d60ef7)
+++ kernel/test/synch/rcu1.c	(revision 036e97cf14fc9f9a4783fbb16419e5aaf0793b2d)
@@ -282,5 +282,5 @@
 	size_t loop_cnt = 0, max_loops = 15;
 
-	while (exp_cnt != atomic_get(&nop_callbacks_cnt) && loop_cnt < max_loops) {
+	while (exp_cnt != atomic_load(&nop_callbacks_cnt) && loop_cnt < max_loops) {
 		++loop_cnt;
 		TPRINTF(".");
@@ -840,5 +840,5 @@
 	rcu_barrier();
 
-	if (1 == atomic_get(&barrier->done)) {
+	if (1 == atomic_load(&barrier->done)) {
 		free(barrier);
 		return true;
Index: kernel/test/synch/workq-test-core.h
===================================================================
--- kernel/test/synch/workq-test-core.h	(revision e9d2905d090ff2994c1a8f2d7b4d0d4387d60ef7)
+++ kernel/test/synch/workq-test-core.h	(revision 036e97cf14fc9f9a4783fbb16419e5aaf0793b2d)
@@ -179,5 +179,5 @@
 
 	for (int i = 0; i < WAVES; ++i) {
-		while (atomic_get(&call_cnt[i]) < exp_call_cnt &&
+		while (atomic_load(&call_cnt[i]) < exp_call_cnt &&
 		    sleep_cnt < max_sleep_cnt) {
 			TPRINTF(".");
@@ -190,11 +190,11 @@
 
 	for (int i = 0; i < WAVES; ++i) {
-		if (atomic_get(&call_cnt[i]) == exp_call_cnt) {
+		if (atomic_load(&call_cnt[i]) == exp_call_cnt) {
 			TPRINTF("Ok: %zu calls in wave %d, as expected.\n",
-			    atomic_get(&call_cnt[i]), i);
+			    atomic_load(&call_cnt[i]), i);
 		} else {
 			success = false;
 			TPRINTF("Error: %zu calls in wave %d, but %zu expected.\n",
-			    atomic_get(&call_cnt[i]), i, exp_call_cnt);
+			    atomic_load(&call_cnt[i]), i, exp_call_cnt);
 		}
 	}
