mirror of
https://github.com/versity/scoutfs.git
synced 2026-02-06 10:40:44 +00:00
Suppress another forced shutdown error message
The "server error emptying freed" error was causing a fence-and-reclaim test failure. In this case, the error was -ENOLINK, which we should ignore for messaging purposes. Signed-off-by: Chris Kirby <ckirby@versity.com>
This commit is contained in:
@@ -630,7 +630,7 @@ static void scoutfs_server_commit_func(struct work_struct *work)
|
||||
ret = scoutfs_alloc_empty_list(sb, &server->alloc, &server->wri,
|
||||
server->meta_freed,
|
||||
server->other_freed);
|
||||
if (ret) {
|
||||
if (ret && ret != -ENOLINK) {
|
||||
scoutfs_err(sb, "server error emptying freed: %d", ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user