From: Theodore Ts'o Date: Tue, 1 May 2001 15:44:37 +0000 (+0000) Subject: ChangeLog, fsck.c: X-Git-Tag: E2FSPROGS-1_20~74 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=45d7086f4e04feed8ceaa2349fe6875423209862;p=tools%2Fe2fsprogs.git 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. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 851c070..a7935cb 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,9 @@ +2001-05-01 Theodore Tso + + * 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 * tune2fs.c (parse_tune2fs_options): Interpret -c 0 as -c -1 (for diff --git a/misc/fsck.c b/misc/fsck.c index e3f1419..2c5699f 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -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);