about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/prl-tools/prl-tools-6.0.patch
blob: f0bd00d24e0babfa2fe62448ddbc5045b599b154 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/kmods/prl_fs_freeze/Snapshot/Guest/Linux/prl_freeze/prl_fs_freeze.c b/kmods/prl_fs_freeze/Snapshot/Guest/Linux/prl_freeze/prl_fs_freeze.c
index baa8a19..6788791 100644
--- a/kmods/prl_fs_freeze/Snapshot/Guest/Linux/prl_freeze/prl_fs_freeze.c
+++ b/kmods/prl_fs_freeze/Snapshot/Guest/Linux/prl_freeze/prl_fs_freeze.c
@@ -306,7 +306,7 @@ int seq_show(struct seq_file *file, void *data)
 	char buf[BDEVNAME_SIZE];
 
 	fsb = list_entry((struct list_head*)data, struct frozen_sb, list);
-	bdevname(fsb->sb->s_bdev, buf);
+	snprintf(buf, sizeof(buf), "%pg", fsb->sb->s_bdev);
 	seq_printf(file, "%s\n", buf);
 	return 0;
 }