[tip: locking/futex] selftests/futex: Drop logging.h include from futex_numa

From: tip-bot2 for André Almeida

Date: Sat Sep 20 2025 - 12:27:43 EST


The following commit has been merged into the locking/futex branch of tip:

Commit-ID: b257d91c4db5bafcc3f67eab120e75bda4f61137
Gitweb: https://git.kernel.org/tip/b257d91c4db5bafcc3f67eab120e75bda4f61137
Author: André Almeida <andrealmeid@xxxxxxxxxx>
AuthorDate: Wed, 17 Sep 2025 18:21:53 -03:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitterDate: Sat, 20 Sep 2025 18:11:56 +02:00

selftests/futex: Drop logging.h include from futex_numa

futex_numa doesn't really use logging.h helpers, it's only need two
includes from this file. So drop it and include the two missing
includes.

Signed-off-by: André Almeida <andrealmeid@xxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
---
tools/testing/selftests/futex/functional/futex_numa.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/testing/selftests/futex/functional/futex_numa.c b/tools/testing/selftests/futex/functional/futex_numa.c
index f29e4d6..e0a3351 100644
--- a/tools/testing/selftests/futex/functional/futex_numa.c
+++ b/tools/testing/selftests/futex/functional/futex_numa.c
@@ -5,9 +5,10 @@
#include <sys/mman.h>
#include <fcntl.h>
#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <time.h>
#include <assert.h>
-#include "logging.h"
#include "futextest.h"
#include "futex2test.h"