endian.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/befs/endian.h
  3.  *
  4.  * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
  5.  *
  6.  * Partially based on similar funtions in the sysv driver.
  7.  */
  8. #ifndef LINUX_BEFS_ENDIAN
  9. #define LINUX_BEFS_ENDIAN
  10. #include <linux/byteorder/generic.h>
  11. #include "befs_fs.h"
  12. static inline u64
  13. fs64_to_cpu(const struct super_block *sb, u64 n)
  14. {
  15. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  16. return le64_to_cpu(n);
  17. else
  18. return be64_to_cpu(n);
  19. }
  20. static inline u64
  21. cpu_to_fs64(const struct super_block *sb, u64 n)
  22. {
  23. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  24. return cpu_to_le64(n);
  25. else
  26. return cpu_to_be64(n);
  27. }
  28. static inline u32
  29. fs32_to_cpu(const struct super_block *sb, u32 n)
  30. {
  31. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  32. return le32_to_cpu(n);
  33. else
  34. return be32_to_cpu(n);
  35. }
  36. static inline u32
  37. cpu_to_fs32(const struct super_block *sb, u32 n)
  38. {
  39. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  40. return cpu_to_le32(n);
  41. else
  42. return cpu_to_be32(n);
  43. }
  44. static inline u16
  45. fs16_to_cpu(const struct super_block *sb, u16 n)
  46. {
  47. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  48. return le16_to_cpu(n);
  49. else
  50. return be16_to_cpu(n);
  51. }
  52. static inline u16
  53. cpu_to_fs16(const struct super_block *sb, u16 n)
  54. {
  55. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE)
  56. return cpu_to_le16(n);
  57. else
  58. return cpu_to_be16(n);
  59. }
  60. /* Composite types below here */
  61. static inline befs_block_run
  62. fsrun_to_cpu(const struct super_block *sb, befs_block_run n)
  63. {
  64. befs_block_run run;
  65. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) {
  66. run.allocation_group = le32_to_cpu(n.allocation_group);
  67. run.start = le16_to_cpu(n.start);
  68. run.len = le16_to_cpu(n.len);
  69. } else {
  70. run.allocation_group = be32_to_cpu(n.allocation_group);
  71. run.start = be16_to_cpu(n.start);
  72. run.len = be16_to_cpu(n.len);
  73. }
  74. return run;
  75. }
  76. static inline befs_block_run
  77. cpu_to_fsrun(const struct super_block *sb, befs_block_run n)
  78. {
  79. befs_block_run run;
  80. if (BEFS_SB(sb)->byte_order == BEFS_BYTESEX_LE) {
  81. run.allocation_group = cpu_to_le32(n.allocation_group);
  82. run.start = cpu_to_le16(n.start);
  83. run.len = cpu_to_le16(n.len);
  84. } else {
  85. run.allocation_group = cpu_to_be32(n.allocation_group);
  86. run.start = cpu_to_be16(n.start);
  87. run.len = cpu_to_be16(n.len);
  88. }
  89. return run;
  90. }
  91. static inline befs_data_stream
  92. fsds_to_cpu(const struct super_block *sb, befs_data_stream n)
  93. {
  94. befs_data_stream data;
  95. int i;
  96. for (i = 0; i < BEFS_NUM_DIRECT_BLOCKS; ++i)
  97. data.direct[i] = fsrun_to_cpu(sb, n.direct[i]);
  98. data.max_direct_range = fs64_to_cpu(sb, n.max_direct_range);
  99. data.indirect = fsrun_to_cpu(sb, n.indirect);
  100. data.max_indirect_range = fs64_to_cpu(sb, n.max_indirect_range);
  101. data.double_indirect = fsrun_to_cpu(sb, n.double_indirect);
  102. data.max_double_indirect_range = fs64_to_cpu(sb,
  103.      n.
  104.      max_double_indirect_range);
  105. data.size = fs64_to_cpu(sb, n.size);
  106. return data;
  107. }
  108. #endif //LINUX_BEFS_ENDIAN