Make hibernation test work for swap files

Suspend to disk works for swap files too (even if it is located
on an ecrypted file system):
https://www.kernel.org/doc/Documentation/power/swsusp-and-swap-files.txt
This commit is contained in:
Jan Janssen 2013-10-31 17:22:03 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent f49e8bc472
commit 0c6f1f4ea4

View file

@ -206,7 +206,7 @@ static int hibernation_partition_size(size_t *size, size_t *used) {
if (!d)
return -ENOMEM;
if (!streq(type, "partition")) {
if (!streq(type, "partition") && !streq(type, "file")) {
log_debug("Partition %s has type %s, ignoring.", d, type);
continue;
}