diff options
author | Christoph Hellwig <hch@lst.de> | 2017-05-10 15:16:44 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-06-05 16:59:10 +0200 |
commit | 1dd771eb0b09fe9c12ea58b18c676b32a528be39 (patch) | |
tree | 3ecf6db352ea013e300645c63b75f3c6c9a5ba44 /include/linux/genhd.h | |
parent | d905fdaaa7d59abde1535075cca6774fd7f0ef0a (diff) | |
download | linux-stable-1dd771eb0b09fe9c12ea58b18c676b32a528be39.tar.gz linux-stable-1dd771eb0b09fe9c12ea58b18c676b32a528be39.tar.bz2 linux-stable-1dd771eb0b09fe9c12ea58b18c676b32a528be39.zip |
block: remove blk_part_pack_uuid
This helper was only used by IMA of all things, which would get spurious
errors if CONFIG_BLOCK is disabled. Just opencode the call there.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
Acked-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'include/linux/genhd.h')
-rw-r--r-- | include/linux/genhd.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index acff9437e5c3..e619fae2f037 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h @@ -219,12 +219,6 @@ static inline struct gendisk *part_to_disk(struct hd_struct *part) return NULL; } -static inline int blk_part_pack_uuid(const u8 *uuid_str, u8 *to) -{ - uuid_be_to_bin(uuid_str, (uuid_be *)to); - return 0; -} - static inline int disk_max_parts(struct gendisk *disk) { if (disk->flags & GENHD_FL_EXT_DEVT) @@ -736,11 +730,6 @@ static inline dev_t blk_lookup_devt(const char *name, int partno) dev_t devt = MKDEV(0, 0); return devt; } - -static inline int blk_part_pack_uuid(const u8 *uuid_str, u8 *to) -{ - return -EINVAL; -} #endif /* CONFIG_BLOCK */ #endif /* _LINUX_GENHD_H */ |