Return error on scoutfs_forest_setup().

This setup function always returned 0, even on error, causing
initialization to continue despite the error.

Signed-off-by: Auke Kok <auke.kok@versity.com>
This commit is contained in:
Auke Kok
2026-02-19 14:00:16 -08:00
parent e0948ec6de
commit 03e22164db

View File

@@ -793,7 +793,7 @@ out:
if (ret)
scoutfs_forest_destroy(sb);
return 0;
return ret;
}
void scoutfs_forest_start(struct super_block *sb)