diff options
author | Dave Chinner <david@fromorbit.com> | 2022-05-04 12:36:54 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-05-04 12:36:54 +1000 |
commit | 9cf4f6160c20bbdb53f20a773d48ab6dfa3b49e3 (patch) | |
tree | a2db0e2211a394d46347b6c6df373c6b453e88da /fs/xfs/xfs_filestream.c | |
parent | a44a027a8b2a20fec30e0e9c99b0eb41c03e7420 (diff) | |
parent | bc37e4fb5cac2925b2e286b1f1d4fc2b519f7d92 (diff) |
Merge branch 'guilt/xfs-5.19-misc-2' into xfs-5.19-for-next
Diffstat (limited to 'fs/xfs/xfs_filestream.c')
-rw-r--r-- | fs/xfs/xfs_filestream.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/xfs/xfs_filestream.c b/fs/xfs/xfs_filestream.c index 6a3ce0f6dc9e..be9bcf8a1f99 100644 --- a/fs/xfs/xfs_filestream.c +++ b/fs/xfs/xfs_filestream.c @@ -128,11 +128,12 @@ xfs_filestream_pick_ag( if (!pag->pagf_init) { err = xfs_alloc_pagf_init(mp, NULL, ag, trylock); if (err) { - xfs_perag_put(pag); - if (err != -EAGAIN) + if (err != -EAGAIN) { + xfs_perag_put(pag); return err; + } /* Couldn't lock the AGF, skip this AG. */ - continue; + goto next_ag; } } |