disable some mediatekl custom warnings
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / fs_uuid.h
CommitLineData
6fa3eb70
S
1#include <linux/device.h>
2
3struct hd_struct;
4struct block_device;
5
6struct fs_info {
7 char uuid[16];
8 dev_t dev_t;
9 char *last_mount;
10 int last_mount_size;
11};
12
13int part_matches_fs_info(struct hd_struct *part, struct fs_info *seek);
14dev_t blk_lookup_fs_info(struct fs_info *seek);
15struct fs_info *fs_info_from_block_dev(struct block_device *bdev);
16void free_fs_info(struct fs_info *fs_info);
17int bdev_matches_key(struct block_device *bdev, const char *key);
18struct block_device *next_bdev_of_type(struct block_device *last, const char *key);