License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / fs / befs / endian.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * linux/fs/befs/endian.h
4 *
5 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
6 *
7 * Partially based on similar funtions in the sysv driver.
8 */
9
10#ifndef LINUX_BEFS_ENDIAN
11#define LINUX_BEFS_ENDIAN
12
9a6ab769 13#include <asm/byteorder.h>
1da177e4
LT
14
15static inline u64
1151895f 16fs64_to_cpu(const struct super_block *sb, fs64 n)
1da177e4
LT
17{
18 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 19 return le64_to_cpu((__force __le64)n);
1da177e4 20 else
1151895f 21 return be64_to_cpu((__force __be64)n);
1da177e4
LT
22}
23
1151895f 24static inline fs64
1da177e4
LT
25cpu_to_fs64(const struct super_block *sb, u64 n)
26{
27 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 28 return (__force fs64)cpu_to_le64(n);
1da177e4 29 else
1151895f 30 return (__force fs64)cpu_to_be64(n);
1da177e4
LT
31}
32
33static inline u32
1151895f 34fs32_to_cpu(const struct super_block *sb, fs32 n)
1da177e4
LT
35{
36 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 37 return le32_to_cpu((__force __le32)n);
1da177e4 38 else
1151895f 39 return be32_to_cpu((__force __be32)n);
1da177e4
LT
40}
41
1151895f 42static inline fs32
1da177e4
LT
43cpu_to_fs32(const struct super_block *sb, u32 n)
44{
45 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 46 return (__force fs32)cpu_to_le32(n);
1da177e4 47 else
1151895f 48 return (__force fs32)cpu_to_be32(n);
1da177e4
LT
49}
50
51static inline u16
1151895f 52fs16_to_cpu(const struct super_block *sb, fs16 n)
1da177e4
LT
53{
54 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 55 return le16_to_cpu((__force __le16)n);
1da177e4 56 else
1151895f 57 return be16_to_cpu((__force __be16)n);
1da177e4
LT
58}
59
1151895f 60static inline fs16
1da177e4
LT
61cpu_to_fs16(const struct super_block *sb, u16 n)
62{
63 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
1151895f 64 return (__force fs16)cpu_to_le16(n);
1da177e4 65 else
1151895f 66 return (__force fs16)cpu_to_be16(n);
1da177e4
LT
67}
68
69/* Composite types below here */
70
71static inline befs_block_run
a9721f31 72fsrun_to_cpu(const struct super_block *sb, befs_disk_block_run n)
1da177e4
LT
73{
74 befs_block_run run;
75
76 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) {
a9721f31
AV
77 run.allocation_group = le32_to_cpu((__force __le32)n.allocation_group);
78 run.start = le16_to_cpu((__force __le16)n.start);
79 run.len = le16_to_cpu((__force __le16)n.len);
1da177e4 80 } else {
a9721f31
AV
81 run.allocation_group = be32_to_cpu((__force __be32)n.allocation_group);
82 run.start = be16_to_cpu((__force __be16)n.start);
83 run.len = be16_to_cpu((__force __be16)n.len);
1da177e4
LT
84 }
85 return run;
86}
87
a9721f31 88static inline befs_disk_block_run
1da177e4
LT
89cpu_to_fsrun(const struct super_block *sb, befs_block_run n)
90{
a9721f31 91 befs_disk_block_run run;
1da177e4
LT
92
93 if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) {
94 run.allocation_group = cpu_to_le32(n.allocation_group);
95 run.start = cpu_to_le16(n.start);
96 run.len = cpu_to_le16(n.len);
97 } else {
98 run.allocation_group = cpu_to_be32(n.allocation_group);
99 run.start = cpu_to_be16(n.start);
100 run.len = cpu_to_be16(n.len);
101 }
102 return run;
103}
104
105static inline befs_data_stream
e0e3d32b 106fsds_to_cpu(const struct super_block *sb, const befs_disk_data_stream *n)
1da177e4
LT
107{
108 befs_data_stream data;
109 int i;
110
111 for (i = 0; i < BEFS_NUM_DIRECT_BLOCKS; ++i)
e0e3d32b 112 data.direct[i] = fsrun_to_cpu(sb, n->direct[i]);
1da177e4 113
e0e3d32b
JJ
114 data.max_direct_range = fs64_to_cpu(sb, n->max_direct_range);
115 data.indirect = fsrun_to_cpu(sb, n->indirect);
116 data.max_indirect_range = fs64_to_cpu(sb, n->max_indirect_range);
117 data.double_indirect = fsrun_to_cpu(sb, n->double_indirect);
1da177e4 118 data.max_double_indirect_range = fs64_to_cpu(sb,
e0e3d32b 119 n->
1da177e4 120 max_double_indirect_range);
e0e3d32b 121 data.size = fs64_to_cpu(sb, n->size);
1da177e4
LT
122
123 return data;
124}
125
126#endif //LINUX_BEFS_ENDIAN