diff options
author | Vasily Averin <vvs@sw.ru> | 2008-02-07 21:10:01 -0500 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2008-02-07 21:10:01 -0500 |
commit | 4f41b09f86e0e3b48194b2ad0356391bf6d47e40 (patch) | |
tree | 49e28b85c4fabcd464ebf3e0f7431ca92406a8a2 /include/linux/device-mapper.h | |
parent | afb24528f9012e5c6361ca9a9128c7c089c1cc7c (diff) |
dm: table remove unused variable
Save some bytes.
Signed-off-by: Vasily Averin <vvs@sw.ru>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'include/linux/device-mapper.h')
-rw-r--r-- | include/linux/device-mapper.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index e765e191663d..cb784579956b 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
@@ -110,15 +110,15 @@ struct target_type { | |||
110 | }; | 110 | }; |
111 | 111 | ||
112 | struct io_restrictions { | 112 | struct io_restrictions { |
113 | unsigned int max_sectors; | 113 | unsigned long bounce_pfn; |
114 | unsigned short max_phys_segments; | 114 | unsigned long seg_boundary_mask; |
115 | unsigned short max_hw_segments; | 115 | unsigned max_hw_sectors; |
116 | unsigned short hardsect_size; | 116 | unsigned max_sectors; |
117 | unsigned int max_segment_size; | 117 | unsigned max_segment_size; |
118 | unsigned int max_hw_sectors; | 118 | unsigned short hardsect_size; |
119 | unsigned long seg_boundary_mask; | 119 | unsigned short max_hw_segments; |
120 | unsigned long bounce_pfn; | 120 | unsigned short max_phys_segments; |
121 | unsigned char no_cluster; /* inverted so that 0 is default */ | 121 | unsigned char no_cluster; /* inverted so that 0 is default */ |
122 | }; | 122 | }; |
123 | 123 | ||
124 | struct dm_target { | 124 | struct dm_target { |