hibernate-resume: compare device nodes using path_equal_or_inode_same

Follow-up for 9deeca1275
This commit is contained in:
Mike Yuan 2023-07-10 00:40:13 +08:00
parent ee1369d789
commit 4427194292
No known key found for this signature in database
GPG key ID: 417471C0A40F58B3

View file

@ -21,6 +21,7 @@
#include "main-func.h"
#include "os-util.h"
#include "parse-util.h"
#include "path-util.h"
#include "proc-cmdline.h"
#include "special.h"
#include "string-util.h"
@ -169,7 +170,7 @@ static int parse_efi_hibernate_location(void) {
arg_resume_device = TAKE_PTR(device);
arg_resume_offset = location.offset;
} else {
if (!streq(arg_resume_device, device))
if (!path_equal_or_inode_same(arg_resume_device, device, 0))
log_warning("resume=%s doesn't match with HibernateLocation device '%s', proceeding anyway with resume=.",
arg_resume_device, device);