diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/udf/udfend.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'fs/udf/udfend.h')
-rw-r--r-- | fs/udf/udfend.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/fs/udf/udfend.h b/fs/udf/udfend.h new file mode 100644 index 000000000000..17d378879561 --- /dev/null +++ b/fs/udf/udfend.h | |||
@@ -0,0 +1,81 @@ | |||
1 | #ifndef __UDF_ENDIAN_H | ||
2 | #define __UDF_ENDIAN_H | ||
3 | |||
4 | #include <asm/byteorder.h> | ||
5 | #include <linux/string.h> | ||
6 | |||
7 | static inline kernel_lb_addr lelb_to_cpu(lb_addr in) | ||
8 | { | ||
9 | kernel_lb_addr out; | ||
10 | out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum); | ||
11 | out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum); | ||
12 | return out; | ||
13 | } | ||
14 | |||
15 | static inline lb_addr cpu_to_lelb(kernel_lb_addr in) | ||
16 | { | ||
17 | lb_addr out; | ||
18 | out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum); | ||
19 | out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum); | ||
20 | return out; | ||
21 | } | ||
22 | |||
23 | static inline kernel_timestamp lets_to_cpu(timestamp in) | ||
24 | { | ||
25 | kernel_timestamp out; | ||
26 | memcpy(&out, &in, sizeof(timestamp)); | ||
27 | out.typeAndTimezone = le16_to_cpu(in.typeAndTimezone); | ||
28 | out.year = le16_to_cpu(in.year); | ||
29 | return out; | ||
30 | } | ||
31 | |||
32 | static inline short_ad lesa_to_cpu(short_ad in) | ||
33 | { | ||
34 | short_ad out; | ||
35 | out.extLength = le32_to_cpu(in.extLength); | ||
36 | out.extPosition = le32_to_cpu(in.extPosition); | ||
37 | return out; | ||
38 | } | ||
39 | |||
40 | static inline short_ad cpu_to_lesa(short_ad in) | ||
41 | { | ||
42 | short_ad out; | ||
43 | out.extLength = cpu_to_le32(in.extLength); | ||
44 | out.extPosition = cpu_to_le32(in.extPosition); | ||
45 | return out; | ||
46 | } | ||
47 | |||
48 | static inline kernel_long_ad lela_to_cpu(long_ad in) | ||
49 | { | ||
50 | kernel_long_ad out; | ||
51 | out.extLength = le32_to_cpu(in.extLength); | ||
52 | out.extLocation = lelb_to_cpu(in.extLocation); | ||
53 | return out; | ||
54 | } | ||
55 | |||
56 | static inline long_ad cpu_to_lela(kernel_long_ad in) | ||
57 | { | ||
58 | long_ad out; | ||
59 | out.extLength = cpu_to_le32(in.extLength); | ||
60 | out.extLocation = cpu_to_lelb(in.extLocation); | ||
61 | return out; | ||
62 | } | ||
63 | |||
64 | static inline kernel_extent_ad leea_to_cpu(extent_ad in) | ||
65 | { | ||
66 | kernel_extent_ad out; | ||
67 | out.extLength = le32_to_cpu(in.extLength); | ||
68 | out.extLocation = le32_to_cpu(in.extLocation); | ||
69 | return out; | ||
70 | } | ||
71 | |||
72 | static inline timestamp cpu_to_lets(kernel_timestamp in) | ||
73 | { | ||
74 | timestamp out; | ||
75 | memcpy(&out, &in, sizeof(timestamp)); | ||
76 | out.typeAndTimezone = cpu_to_le16(in.typeAndTimezone); | ||
77 | out.year = cpu_to_le16(in.year); | ||
78 | return out; | ||
79 | } | ||
80 | |||
81 | #endif /* __UDF_ENDIAN_H */ | ||