lib/device/device_id.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/device/device_id.c b/lib/device/device_id.c index 67f72e5..1b98487 100644 --- a/lib/device/device_id.c +++ b/lib/device/device_id.c @@ -325,8 +325,12 @@ const char *device_id_system_read(struct cmd_context *cmd, struct device *dev, u else if (idtype == DEV_ID_TYPE_MD_UUID) _read_sys_block(cmd, dev, "md/uuid", sysbuf, sizeof(sysbuf)); - else if (idtype == DEV_ID_TYPE_LOOP_FILE) + else if (idtype == DEV_ID_TYPE_LOOP_FILE) { _read_sys_block(cmd, dev, "loop/backing_file", sysbuf, sizeof(sysbuf)); + /* if backing file is deleted, fall back to devname */ + if (strstr(sysbuf, "(deleted)")) + sysbuf[0] = '\0'; + } else if (idtype == DEV_ID_TYPE_DEVNAME) { if (!(idname = strdup(dev_name(dev))))