VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Jakub Kicinski <kuba@kernel.org> 2020-09-04 21:18:58 -0700 committer: Jakub Kicinski <kuba@kernel.org> 2020-09-04 21:28:59 -0700 commit: 44a8c4f33c0073ca614db79f22e023811bdd0f3c parent: 3ab1270bfa1e8ae7db0d46fee90c5db2935ac91b
Commit Summary:
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/init/initramfs.c b/init/initramfs.c
index e6dbfb767057..1f97c0328a7a 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -297,7 +297,7 @@ static void __init clean_path(char *path, umode_t fmode)
 {
 	struct kstat st;
 
-	if (init_stat(path, &st, AT_SYMLINK_NOFOLLOW) &&
+	if (!init_stat(path, &st, AT_SYMLINK_NOFOLLOW) &&
 	    (st.mode ^ fmode) & S_IFMT) {
 		if (S_ISDIR(st.mode))
 			init_rmdir(path);