Index: kernel/test/mm/falloc2.c
===================================================================
--- kernel/test/mm/falloc2.c	(revision bab75df6bdac0b39185034277416374a06d4b37f)
+++ kernel/test/mm/falloc2.c	(revision 279188c06352e8625cf73d1e32e3d8f3758aa8d1)
@@ -43,5 +43,5 @@
 #define THREADS      8
 
-static atomic_t thread_count;
+static atomic_t thread_cnt;
 static atomic_t thread_fail;
 
@@ -56,5 +56,5 @@
 		    "Unable to allocate frames\n", THREAD->tid, CPU->id);
 		atomic_inc(&thread_fail);
-		atomic_dec(&thread_count);
+		atomic_dec(&thread_cnt);
 		return;
 	}
@@ -110,10 +110,10 @@
 	TPRINTF("Thread #%" PRIu64 " (cpu%u): Exiting\n",
 	    THREAD->tid, CPU->id);
-	atomic_dec(&thread_count);
+	atomic_dec(&thread_cnt);
 }
 
 const char *test_falloc2(void)
 {
-	atomic_store(&thread_count, THREADS);
+	atomic_store(&thread_cnt, THREADS);
 	atomic_store(&thread_fail, 0);
 
@@ -128,7 +128,7 @@
 	}
 
-	while (atomic_load(&thread_count) > 0) {
+	while (atomic_load(&thread_cnt) > 0) {
 		TPRINTF("Threads left: %zu\n",
-		    atomic_load(&thread_count));
+		    atomic_load(&thread_cnt));
 		thread_sleep(1);
 	}
