diff options
Diffstat (limited to 'include/linux/genhd.h')
-rw-r--r-- | include/linux/genhd.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 79b8bba19363..9f3c275e053e 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -231,6 +231,12 @@ static inline void part_pack_uuid(const u8 *uuid_str, u8 *to) | |||
231 | } | 231 | } |
232 | } | 232 | } |
233 | 233 | ||
234 | static inline int blk_part_pack_uuid(const u8 *uuid_str, u8 *to) | ||
235 | { | ||
236 | part_pack_uuid(uuid_str, to); | ||
237 | return 0; | ||
238 | } | ||
239 | |||
234 | static inline int disk_max_parts(struct gendisk *disk) | 240 | static inline int disk_max_parts(struct gendisk *disk) |
235 | { | 241 | { |
236 | if (disk->flags & GENHD_FL_EXT_DEVT) | 242 | if (disk->flags & GENHD_FL_EXT_DEVT) |
@@ -718,6 +724,10 @@ static inline dev_t blk_lookup_devt(const char *name, int partno) | |||
718 | return devt; | 724 | return devt; |
719 | } | 725 | } |
720 | 726 | ||
727 | static inline int blk_part_pack_uuid(const u8 *uuid_str, u8 *to) | ||
728 | { | ||
729 | return -EINVAL; | ||
730 | } | ||
721 | #endif /* CONFIG_BLOCK */ | 731 | #endif /* CONFIG_BLOCK */ |
722 | 732 | ||
723 | #endif /* _LINUX_GENHD_H */ | 733 | #endif /* _LINUX_GENHD_H */ |