ANDROID: pidfd: Disable FS_PID

Commit cb12fd8e0d ("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: cb12fd8e0d ("pidfd: add pidfs")
Signed-off-by: Lee Jones <joneslee@google.com>
Change-Id: I266dff7412ef577358bc60bddcbbc46547a146b3
This commit is contained in:
Lee Jones
2024-04-13 08:01:40 +01:00
parent f90ae1bfeb
commit 2b36095031
+1 -1
View File
@@ -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.