summaryrefslogtreecommitdiffstats
path: root/lib/device/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/device/device.h')
-rw-r--r--lib/device/device.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/device/device.h b/lib/device/device.h
index 7bf30d07..bf6354e8 100644
--- a/lib/device/device.h
+++ b/lib/device/device.h
@@ -8,6 +8,7 @@
#define _LVM_DEVICE_H
#include "lvm-types.h"
+#include "list.h"
/*
* All devices in LVM will be represented by one of these.
@@ -15,6 +16,7 @@
*/
struct device {
char *name;
+ struct list_head aliases; /* struct str_list from lvm-types.h */
dev_t dev;
};