aboutsummaryrefslogtreecommitdiff
path: root/util-linux/volume_id
diff options
context:
space:
mode:
authorJames Hunt <james.hunt@ubuntu.com>2010-12-16 12:22:38 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2010-12-19 17:18:45 +0100
commit86ffe5c15a14dc7f8483faf42ef907c5f861137d (patch)
tree6b25ff441677fec97af35c4162f67fa8761fcb61 /util-linux/volume_id
parent407ab2a4349de67c0a3203cdcb544a3360506291 (diff)
downloadbusybox-86ffe5c15a14dc7f8483faf42ef907c5f861137d.tar.gz
volume_id: recognize compressed hibernate swap signature
util-linux/volume_id/linux_swap.c: Added the new magic LINHIB0001 signature. See: https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/683605 Signed-off-by: James Hunt <james.hunt@ubuntu.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id')
-rw-r--r--util-linux/volume_id/linux_swap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util-linux/volume_id/linux_swap.c b/util-linux/volume_id/linux_swap.c
index 574354611..0aa43f3de 100644
--- a/util-linux/volume_id/linux_swap.c
+++ b/util-linux/volume_id/linux_swap.c
@@ -55,6 +55,7 @@ int FAST_FUNC volume_id_probe_linux_swap(struct volume_id *id /*,uint64_t off*/)
if (memcmp(buf, "SWAPSPACE2", 10) == 0
|| memcmp(buf, "S1SUSPEND", 9) == 0
|| memcmp(buf, "S2SUSPEND", 9) == 0
+ || memcmp(buf, "LINHIB0001", 10) == 0
|| memcmp(buf, "ULSUSPEND", 9) == 0
) {
sw = volume_id_get_buffer(id, off, sizeof(struct swap_header_v1_2));