ondisk.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/sched.h>
  10. #include <linux/slab.h>
  11. #include <linux/spinlock.h>
  12. #include <linux/completion.h>
  13. #include <linux/buffer_head.h>
  14. #include "gfs2.h"
  15. #include <linux/gfs2_ondisk.h>
  16. #define pv(struct, member, fmt) printk(KERN_INFO " "#member" = "fmt"\n", \
  17. struct->member);
  18. /*
  19. * gfs2_xxx_in - read in an xxx struct
  20. * first arg: the cpu-order structure
  21. * buf: the disk-order buffer
  22. *
  23. * gfs2_xxx_out - write out an xxx struct
  24. * first arg: the cpu-order structure
  25. * buf: the disk-order buffer
  26. *
  27. * gfs2_xxx_print - print out an xxx struct
  28. * first arg: the cpu-order structure
  29. */
  30. void gfs2_inum_in(struct gfs2_inum *no, const void *buf)
  31. {
  32. const struct gfs2_inum *str = buf;
  33. no->no_formal_ino = be64_to_cpu(str->no_formal_ino);
  34. no->no_addr = be64_to_cpu(str->no_addr);
  35. }
  36. void gfs2_inum_out(const struct gfs2_inum *no, void *buf)
  37. {
  38. struct gfs2_inum *str = buf;
  39. str->no_formal_ino = cpu_to_be64(no->no_formal_ino);
  40. str->no_addr = cpu_to_be64(no->no_addr);
  41. }
  42. static void gfs2_inum_print(const struct gfs2_inum *no)
  43. {
  44. printk(KERN_INFO " no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino);
  45. printk(KERN_INFO " no_addr = %llu\n", (unsigned long long)no->no_addr);
  46. }
  47. static void gfs2_meta_header_in(struct gfs2_meta_header *mh, const void *buf)
  48. {
  49. const struct gfs2_meta_header *str = buf;
  50. mh->mh_magic = be32_to_cpu(str->mh_magic);
  51. mh->mh_type = be32_to_cpu(str->mh_type);
  52. mh->mh_format = be32_to_cpu(str->mh_format);
  53. }
  54. static void gfs2_meta_header_out(const struct gfs2_meta_header *mh, void *buf)
  55. {
  56. struct gfs2_meta_header *str = buf;
  57. str->mh_magic = cpu_to_be32(mh->mh_magic);
  58. str->mh_type = cpu_to_be32(mh->mh_type);
  59. str->mh_format = cpu_to_be32(mh->mh_format);
  60. }
  61. static void gfs2_meta_header_print(const struct gfs2_meta_header *mh)
  62. {
  63. pv(mh, mh_magic, "0x%.8X");
  64. pv(mh, mh_type, "%u");
  65. pv(mh, mh_format, "%u");
  66. }
  67. void gfs2_sb_in(struct gfs2_sb *sb, const void *buf)
  68. {
  69. const struct gfs2_sb *str = buf;
  70. gfs2_meta_header_in(&sb->sb_header, buf);
  71. sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
  72. sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
  73. sb->sb_bsize = be32_to_cpu(str->sb_bsize);
  74. sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
  75. gfs2_inum_in(&sb->sb_master_dir, (char *)&str->sb_master_dir);
  76. gfs2_inum_in(&sb->sb_root_dir, (char *)&str->sb_root_dir);
  77. memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
  78. memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
  79. }
  80. void gfs2_rindex_in(struct gfs2_rindex *ri, const void *buf)
  81. {
  82. const struct gfs2_rindex *str = buf;
  83. ri->ri_addr = be64_to_cpu(str->ri_addr);
  84. ri->ri_length = be32_to_cpu(str->ri_length);
  85. ri->ri_data0 = be64_to_cpu(str->ri_data0);
  86. ri->ri_data = be32_to_cpu(str->ri_data);
  87. ri->ri_bitbytes = be32_to_cpu(str->ri_bitbytes);
  88. }
  89. void gfs2_rindex_print(const struct gfs2_rindex *ri)
  90. {
  91. printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)ri->ri_addr);
  92. pv(ri, ri_length, "%u");
  93. printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)ri->ri_data0);
  94. pv(ri, ri_data, "%u");
  95. pv(ri, ri_bitbytes, "%u");
  96. }
  97. void gfs2_rgrp_in(struct gfs2_rgrp *rg, const void *buf)
  98. {
  99. const struct gfs2_rgrp *str = buf;
  100. gfs2_meta_header_in(&rg->rg_header, buf);
  101. rg->rg_flags = be32_to_cpu(str->rg_flags);
  102. rg->rg_free = be32_to_cpu(str->rg_free);
  103. rg->rg_dinodes = be32_to_cpu(str->rg_dinodes);
  104. rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
  105. }
  106. void gfs2_rgrp_out(const struct gfs2_rgrp *rg, void *buf)
  107. {
  108. struct gfs2_rgrp *str = buf;
  109. gfs2_meta_header_out(&rg->rg_header, buf);
  110. str->rg_flags = cpu_to_be32(rg->rg_flags);
  111. str->rg_free = cpu_to_be32(rg->rg_free);
  112. str->rg_dinodes = cpu_to_be32(rg->rg_dinodes);
  113. str->__pad = cpu_to_be32(0);
  114. str->rg_igeneration = cpu_to_be64(rg->rg_igeneration);
  115. memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
  116. }
  117. void gfs2_quota_in(struct gfs2_quota *qu, const void *buf)
  118. {
  119. const struct gfs2_quota *str = buf;
  120. qu->qu_limit = be64_to_cpu(str->qu_limit);
  121. qu->qu_warn = be64_to_cpu(str->qu_warn);
  122. qu->qu_value = be64_to_cpu(str->qu_value);
  123. }
  124. void gfs2_dinode_in(struct gfs2_dinode *di, const void *buf)
  125. {
  126. const struct gfs2_dinode *str = buf;
  127. gfs2_meta_header_in(&di->di_header, buf);
  128. gfs2_inum_in(&di->di_num, &str->di_num);
  129. di->di_mode = be32_to_cpu(str->di_mode);
  130. di->di_uid = be32_to_cpu(str->di_uid);
  131. di->di_gid = be32_to_cpu(str->di_gid);
  132. di->di_nlink = be32_to_cpu(str->di_nlink);
  133. di->di_size = be64_to_cpu(str->di_size);
  134. di->di_blocks = be64_to_cpu(str->di_blocks);
  135. di->di_atime = be64_to_cpu(str->di_atime);
  136. di->di_mtime = be64_to_cpu(str->di_mtime);
  137. di->di_ctime = be64_to_cpu(str->di_ctime);
  138. di->di_major = be32_to_cpu(str->di_major);
  139. di->di_minor = be32_to_cpu(str->di_minor);
  140. di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
  141. di->di_goal_data = be64_to_cpu(str->di_goal_data);
  142. di->di_generation = be64_to_cpu(str->di_generation);
  143. di->di_flags = be32_to_cpu(str->di_flags);
  144. di->di_payload_format = be32_to_cpu(str->di_payload_format);
  145. di->di_height = be16_to_cpu(str->di_height);
  146. di->di_depth = be16_to_cpu(str->di_depth);
  147. di->di_entries = be32_to_cpu(str->di_entries);
  148. di->di_eattr = be64_to_cpu(str->di_eattr);
  149. }
  150. void gfs2_dinode_out(const struct gfs2_dinode *di, void *buf)
  151. {
  152. struct gfs2_dinode *str = buf;
  153. gfs2_meta_header_out(&di->di_header, buf);
  154. gfs2_inum_out(&di->di_num, (char *)&str->di_num);
  155. str->di_mode = cpu_to_be32(di->di_mode);
  156. str->di_uid = cpu_to_be32(di->di_uid);
  157. str->di_gid = cpu_to_be32(di->di_gid);
  158. str->di_nlink = cpu_to_be32(di->di_nlink);
  159. str->di_size = cpu_to_be64(di->di_size);
  160. str->di_blocks = cpu_to_be64(di->di_blocks);
  161. str->di_atime = cpu_to_be64(di->di_atime);
  162. str->di_mtime = cpu_to_be64(di->di_mtime);
  163. str->di_ctime = cpu_to_be64(di->di_ctime);
  164. str->di_major = cpu_to_be32(di->di_major);
  165. str->di_minor = cpu_to_be32(di->di_minor);
  166. str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
  167. str->di_goal_data = cpu_to_be64(di->di_goal_data);
  168. str->di_generation = cpu_to_be64(di->di_generation);
  169. str->di_flags = cpu_to_be32(di->di_flags);
  170. str->di_payload_format = cpu_to_be32(di->di_payload_format);
  171. str->di_height = cpu_to_be16(di->di_height);
  172. str->di_depth = cpu_to_be16(di->di_depth);
  173. str->di_entries = cpu_to_be32(di->di_entries);
  174. str->di_eattr = cpu_to_be64(di->di_eattr);
  175. }
  176. void gfs2_dinode_print(const struct gfs2_dinode *di)
  177. {
  178. gfs2_meta_header_print(&di->di_header);
  179. gfs2_inum_print(&di->di_num);
  180. pv(di, di_mode, "0%o");
  181. pv(di, di_uid, "%u");
  182. pv(di, di_gid, "%u");
  183. pv(di, di_nlink, "%u");
  184. printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
  185. printk(KERN_INFO " di_blocks = %llu\n", (unsigned long long)di->di_blocks);
  186. printk(KERN_INFO " di_atime = %lld\n", (long long)di->di_atime);
  187. printk(KERN_INFO " di_mtime = %lld\n", (long long)di->di_mtime);
  188. printk(KERN_INFO " di_ctime = %lld\n", (long long)di->di_ctime);
  189. pv(di, di_major, "%u");
  190. pv(di, di_minor, "%u");
  191. printk(KERN_INFO " di_goal_meta = %llu\n", (unsigned long long)di->di_goal_meta);
  192. printk(KERN_INFO " di_goal_data = %llu\n", (unsigned long long)di->di_goal_data);
  193. pv(di, di_flags, "0x%.8X");
  194. pv(di, di_payload_format, "%u");
  195. pv(di, di_height, "%u");
  196. pv(di, di_depth, "%u");
  197. pv(di, di_entries, "%u");
  198. printk(KERN_INFO " di_eattr = %llu\n", (unsigned long long)di->di_eattr);
  199. }
  200. void gfs2_log_header_in(struct gfs2_log_header *lh, const void *buf)
  201. {
  202. const struct gfs2_log_header *str = buf;
  203. gfs2_meta_header_in(&lh->lh_header, buf);
  204. lh->lh_sequence = be64_to_cpu(str->lh_sequence);
  205. lh->lh_flags = be32_to_cpu(str->lh_flags);
  206. lh->lh_tail = be32_to_cpu(str->lh_tail);
  207. lh->lh_blkno = be32_to_cpu(str->lh_blkno);
  208. lh->lh_hash = be32_to_cpu(str->lh_hash);
  209. }
  210. void gfs2_inum_range_in(struct gfs2_inum_range *ir, const void *buf)
  211. {
  212. const struct gfs2_inum_range *str = buf;
  213. ir->ir_start = be64_to_cpu(str->ir_start);
  214. ir->ir_length = be64_to_cpu(str->ir_length);
  215. }
  216. void gfs2_inum_range_out(const struct gfs2_inum_range *ir, void *buf)
  217. {
  218. struct gfs2_inum_range *str = buf;
  219. str->ir_start = cpu_to_be64(ir->ir_start);
  220. str->ir_length = cpu_to_be64(ir->ir_length);
  221. }
  222. void gfs2_statfs_change_in(struct gfs2_statfs_change *sc, const void *buf)
  223. {
  224. const struct gfs2_statfs_change *str = buf;
  225. sc->sc_total = be64_to_cpu(str->sc_total);
  226. sc->sc_free = be64_to_cpu(str->sc_free);
  227. sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
  228. }
  229. void gfs2_statfs_change_out(const struct gfs2_statfs_change *sc, void *buf)
  230. {
  231. struct gfs2_statfs_change *str = buf;
  232. str->sc_total = cpu_to_be64(sc->sc_total);
  233. str->sc_free = cpu_to_be64(sc->sc_free);
  234. str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
  235. }
  236. void gfs2_quota_change_in(struct gfs2_quota_change *qc, const void *buf)
  237. {
  238. const struct gfs2_quota_change *str = buf;
  239. qc->qc_change = be64_to_cpu(str->qc_change);
  240. qc->qc_flags = be32_to_cpu(str->qc_flags);
  241. qc->qc_id = be32_to_cpu(str->qc_id);
  242. }