From 2b36095031e34d0a6c0e055d96213002381a0224 Mon Sep 17 00:00:00 2001 From: Lee Jones Date: Sat, 13 Apr 2024 08:01:40 +0100 Subject: [PATCH] ANDROID: pidfd: Disable FS_PID Commit cb12fd8e0dab ("pidfd: add pidfs") introduced a change to "move pidfds from the anonymous inode infrastructure to a tiny pseudo filesystem". This causes many x86 pre-submit tests to fail. The commit message goes on to say: "The code is entirely optional and fairly small. If it's not selected we fallback to anonymous inodes. Heavily inspired by nsfs which uses a similar stashing mechanism just for namespaces." So let's try to simply disable it and see that brings our tests back to a state of passing. Fixes: cb12fd8e0dab ("pidfd: add pidfs") Signed-off-by: Lee Jones Change-Id: I266dff7412ef577358bc60bddcbbc46547a146b3 --- fs/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/Kconfig b/fs/Kconfig index a9f9833bf5d2..ffec6b650ed2 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -177,7 +177,7 @@ source "fs/sysfs/Kconfig" config FS_PID bool "Pseudo filesystem for process file descriptors" depends on 64BIT - default y + default n help Pidfs implements advanced features for process file descriptors.