mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-27 12:04:43 +08:00
ChangeLog, fsck.c:
fsck.c (device_already_active): If we're not able to determine the base device, we should assume that the device is already active in order to force serialization.
This commit is contained in:
parent
b1416db322
commit
45d7086f4e
@ -1,3 +1,9 @@
|
||||
2001-05-01 Theodore Tso <tytso@valinux.com>
|
||||
|
||||
* fsck.c (device_already_active): If we're not able to determine
|
||||
the base device, we should assume that the device is
|
||||
already active in order to force serialization.
|
||||
|
||||
2001-04-26 Theodore Tso <tytso@valinux.com>
|
||||
|
||||
* tune2fs.c (parse_tune2fs_options): Interpret -c 0 as -c -1 (for
|
||||
|
@ -699,7 +699,7 @@ static int device_already_active(char *device)
|
||||
|
||||
base = base_device(device);
|
||||
if (!base)
|
||||
return 0;
|
||||
return 1;
|
||||
for (inst = instance_list; inst; inst = inst->next) {
|
||||
if (!strcmp(base, inst->base_device)) {
|
||||
free(base);
|
||||
|
Loading…
Reference in New Issue
Block a user