blob: 489f52fb428cd309fb73002be58ce8b38bb09f0d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __UDF_ENDIAN_H
2#define __UDF_ENDIAN_H
3
4#include <asm/byteorder.h>
5#include <linux/string.h>
6
7static inline kernel_lb_addr lelb_to_cpu(lb_addr in)
8{
9 kernel_lb_addr out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum);
12 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 return out;
15}
16
17static inline lb_addr cpu_to_lelb(kernel_lb_addr in)
18{
19 lb_addr out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum);
22 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 return out;
25}
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static inline short_ad lesa_to_cpu(short_ad in)
28{
29 short_ad out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 out.extLength = le32_to_cpu(in.extLength);
32 out.extPosition = le32_to_cpu(in.extPosition);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return out;
35}
36
37static inline short_ad cpu_to_lesa(short_ad in)
38{
39 short_ad out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 out.extLength = cpu_to_le32(in.extLength);
42 out.extPosition = cpu_to_le32(in.extPosition);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return out;
45}
46
47static inline kernel_long_ad lela_to_cpu(long_ad in)
48{
49 kernel_long_ad out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 out.extLength = le32_to_cpu(in.extLength);
52 out.extLocation = lelb_to_cpu(in.extLocation);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return out;
55}
56
57static inline long_ad cpu_to_lela(kernel_long_ad in)
58{
59 long_ad out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 out.extLength = cpu_to_le32(in.extLength);
62 out.extLocation = cpu_to_lelb(in.extLocation);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return out;
65}
66
67static inline kernel_extent_ad leea_to_cpu(extent_ad in)
68{
69 kernel_extent_ad out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 out.extLength = le32_to_cpu(in.extLength);
72 out.extLocation = le32_to_cpu(in.extLocation);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return out;
75}
76
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070077#endif /* __UDF_ENDIAN_H */