[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231129120036.3908495-1-arnd@kernel.org>
Date: Wed, 29 Nov 2023 13:00:29 +0100
From: Arnd Bergmann <arnd@...nel.org>
To: Chris Mason <clm@...com>, Josef Bacik <josef@...icpanda.com>,
David Sterba <dsterba@...e.com>
Cc: Arnd Bergmann <arnd@...db.de>,
Linux Kernel Functional Testing <lkft@...aro.org>,
Johannes Thumshirn <johannes.thumshirn@....com>,
Qu Wenruo <wqu@...e.com>, Anand Jain <anand.jain@...cle.com>,
linux-btrfs@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] btrfs: fix btrfs_parse_param() build failure
From: Arnd Bergmann <arnd@...db.de>
With CONFIG_BTRFS_FS_POSIX_ACL disabled, the newly added function fails
to build because of an apparent broken rebase:
fs/btrfs/super.c: In function 'btrfs_parse_param':
fs/btrfs/super.c:416:25: error: 'ret' undeclared (first use in this function); did you mean 'net'?
416 | ret = -EINVAL;
| ^~~
Just return the error directly here instead of the incorrect unwinding.
Fixes: a7293bf27082 ("btrfs: add parse_param callback for the new mount api")
Reported-by: Linux Kernel Functional Testing <lkft@...aro.org>
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
fs/btrfs/super.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 59fe4ffce6e7..022179a05d76 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -413,8 +413,7 @@ static int btrfs_parse_param(struct fs_context *fc,
fc->sb_flags |= SB_POSIXACL;
#else
btrfs_err(NULL, "support for ACL not compiled in!");
- ret = -EINVAL;
- goto out;
+ return -EINVAL;
#endif
}
/*
--
2.39.2
Powered by blists - more mailing lists