From e7953d8d9c8a807648210e25bee05dc57895707c Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sun, 6 Feb 2022 00:22:28 +0800 Subject: [PATCH] semaphore: Change FS_NAMED_SEMPATH from "/var/lock" to "/var/sem" since sem isn't only used as lock Signed-off-by: Xiang Xiao --- fs/semaphore/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/semaphore/Kconfig b/fs/semaphore/Kconfig index cd84e6394e6..8e58d65bdbc 100644 --- a/fs/semaphore/Kconfig +++ b/fs/semaphore/Kconfig @@ -13,7 +13,7 @@ if FS_NAMED_SEMAPHORES config FS_NAMED_SEMAPHORES_VFS_PATH string "Path to semaphore storage" - default "/var/lock" + default "/var/sem" ---help--- The path to where named semaphores will exist in the VFS namespace.