1 2 #ifndef _LINEAR_H 3 #define _LINEAR_H 4 5 struct linear_hash 6 { 7 struct real_dev *dev0, *dev1; 8 }; 9 10 struct linear_data 11 { 12 struct linear_hash *hash_table; /* Dynamically allocated */ 13 struct real_dev *smallest; 14 int nr_zones; 15 }; 16 17 #endif 18 19 #ifndef _LINEAR_H 20 #define _LINEAR_H 21 22 struct linear_hash 23 { 24 struct real_dev *dev0, *dev1; 25 }; 26 27 struct linear_data 28 { 29 struct linear_hash *hash_table; /* Dynamically allocated */ 30 struct real_dev *smallest; 31 int nr_zones; 32 }; 33 34 #endif