bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 1 | #ifndef BLKID_TOPOLOGY_H |
| 2 | #define BLKID_TOPOLOGY_H |
| 3 | |
| 4 | #include "blkidP.h" |
| 5 | |
| 6 | extern int blkid_topology_set_alignment_offset(blkid_probe pr, int val); |
| 7 | extern int blkid_topology_set_minimum_io_size(blkid_probe pr, unsigned long val); |
| 8 | extern int blkid_topology_set_optimal_io_size(blkid_probe pr, unsigned long val); |
| 9 | extern int blkid_topology_set_physical_sector_size(blkid_probe pr, unsigned long val); |
| 10 | |
| 11 | /* |
| 12 | * topology probers |
| 13 | */ |
| 14 | #ifdef __linux__ |
| 15 | extern const struct blkid_idinfo ioctl_tp_idinfo; |
| 16 | extern const struct blkid_idinfo md_tp_idinfo; |
| 17 | extern const struct blkid_idinfo evms_tp_idinfo; |
| 18 | extern const struct blkid_idinfo sysfs_tp_idinfo; |
| 19 | extern const struct blkid_idinfo dm_tp_idinfo; |
| 20 | extern const struct blkid_idinfo lvm_tp_idinfo; |
| 21 | #endif |
| 22 | |
| 23 | #endif /* BLKID_TOPOLOGY_H */ |
| 24 | |