PM / Hibernate: user.c, fix SNAPSHOT_SET_SWAP_AREA handling

When CONFIG_DEBUG_BLOCK_EXT_DEVT is set we decode the device
improperly by old_decode_dev and it results in an error while
hibernating with s2disk.

All users already pass the new device number, so switch to
new_decode_dev().

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Reported-and-tested-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: "Rafael J. Wysocki" <rjw@sisk.pl>

authored by Jiri Slaby and committed by Rafael J. Wysocki d88d4050 0eddb519

+1 -1
+1 -1
kernel/power/user.c
··· 420 420 * User space encodes device types as two-byte values, 421 421 * so we need to recode them 422 422 */ 423 - swdev = old_decode_dev(swap_area.dev); 423 + swdev = new_decode_dev(swap_area.dev); 424 424 if (swdev) { 425 425 offset = swap_area.offset; 426 426 data->swap = swap_type_of(swdev, offset, NULL);