]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commit
mke2fs: modify the fallback path for copying data
authorAllison Karlitskaya <allison.karlitskaya@redhat.com>
Mon, 25 Nov 2024 08:46:30 +0000 (09:46 +0100)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 23 May 2025 17:53:16 +0000 (13:53 -0400)
commitcddc1ddbe815ba7cb132ca6be3e67d46d97ed63e
treecc31fcff8322feb870302b95ec21916e4af18de7
parent51d68472456d22b6e64159244be63bce51473691
mke2fs: modify the fallback path for copying data

Right now we jump to the end as soon as we've found a method that works.
This is a reasonable approach because it's the last operation in the
function, but soon it won't be.  Switch to a logically-equivalent
alternative approach: keep trying until we find the approach that works,
dropping the `goto out`.  Now we can add code after this.

Signed-off-by: Allison Karlitskaya <allison.karlitskaya@redhat.com>
misc/create_inode.c