ondisk.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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. #include <linux/lm_interface.h>
  17. #include "incore.h"
  18. #define pv(struct, member, fmt) printk(KERN_INFO " "#member" = "fmt"\n", \
  19. struct->member);
  20. /*
  21. * gfs2_xxx_in - read in an xxx struct
  22. * first arg: the cpu-order structure
  23. * buf: the disk-order buffer
  24. *
  25. * gfs2_xxx_out - write out an xxx struct
  26. * first arg: the cpu-order structure
  27. * buf: the disk-order buffer
  28. *
  29. * gfs2_xxx_print - print out an xxx struct
  30. * first arg: the cpu-order structure
  31. */
  32. void gfs2_inum_in(struct gfs2_inum_host *no, const void *buf)
  33. {
  34. const struct gfs2_inum *str = buf;
  35. no->no_formal_ino = be64_to_cpu(str->no_formal_ino);
  36. no->no_addr = be64_to_cpu(str->no_addr);
  37. }
  38. void gfs2_inum_out(const struct gfs2_inum_host *no, void *buf)
  39. {
  40. struct gfs2_inum *str = buf;
  41. str->no_formal_ino = cpu_to_be64(no->no_formal_ino);
  42. str->no_addr = cpu_to_be64(no->no_addr);
  43. }
  44. static void gfs2_inum_print(const struct gfs2_inum_host *no)
  45. {
  46. printk(KERN_INFO " no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino);
  47. printk(KERN_INFO " no_addr = %llu\n", (unsigned long long)no->no_addr);
  48. }
  49. static void gfs2_meta_header_in(struct gfs2_meta_header_host *mh, const void *buf)
  50. {
  51. const struct gfs2_meta_header *str = buf;
  52. mh->mh_magic = be32_to_cpu(str->mh_magic);
  53. mh->mh_type = be32_to_cpu(str->mh_type);
  54. mh->mh_format = be32_to_cpu(str->mh_format);
  55. }
  56. static void gfs2_meta_header_out(const struct gfs2_meta_header_host *mh, void *buf)
  57. {
  58. struct gfs2_meta_header *str = buf;
  59. str->mh_magic = cpu_to_be32(mh->mh_magic);
  60. str->mh_type = cpu_to_be32(mh->mh_type);
  61. str->mh_format = cpu_to_be32(mh->mh_format);
  62. }
  63. void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf)
  64. {
  65. const struct gfs2_sb *str = buf;
  66. gfs2_meta_header_in(&sb->sb_header, buf);
  67. sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
  68. sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
  69. sb->sb_bsize = be32_to_cpu(str->sb_bsize);
  70. sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
  71. gfs2_inum_in(&sb->sb_master_dir, (char *)&str->sb_master_dir);
  72. gfs2_inum_in(&sb->sb_root_dir, (char *)&str->sb_root_dir);
  73. memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
  74. memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
  75. }
  76. void gfs2_rindex_in(struct gfs2_rindex_host *ri, const void *buf)
  77. {
  78. const struct gfs2_rindex *str = buf;
  79. ri->ri_addr = be64_to_cpu(str->ri_addr);
  80. ri->ri_length = be32_to_cpu(str->ri_length);
  81. ri->ri_data0 = be64_to_cpu(str->ri_data0);
  82. ri->ri_data = be32_to_cpu(str->ri_data);
  83. ri->ri_bitbytes = be32_to_cpu(str->ri_bitbytes);
  84. }
  85. void gfs2_rindex_print(const struct gfs2_rindex_host *ri)
  86. {
  87. printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)ri->ri_addr);
  88. pv(ri, ri_length, "%u");
  89. printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)ri->ri_data0);
  90. pv(ri, ri_data, "%u");
  91. pv(ri, ri_bitbytes, "%u");
  92. }
  93. void gfs2_rgrp_in(struct gfs2_rgrp_host *rg, const void *buf)
  94. {
  95. const struct gfs2_rgrp *str = buf;
  96. gfs2_meta_header_in(&rg->rg_header, buf);
  97. rg->rg_flags = be32_to_cpu(str->rg_flags);
  98. rg->rg_free = be32_to_cpu(str->rg_free);
  99. rg->rg_dinodes = be32_to_cpu(str->rg_dinodes);
  100. rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
  101. }
  102. void gfs2_rgrp_out(const struct gfs2_rgrp_host *rg, void *buf)
  103. {
  104. struct gfs2_rgrp *str = buf;
  105. gfs2_meta_header_out(&rg->rg_header, buf);
  106. str->rg_flags = cpu_to_be32(rg->rg_flags);
  107. str->rg_free = cpu_to_be32(rg->rg_free);
  108. str->rg_dinodes = cpu_to_be32(rg->rg_dinodes);
  109. str->__pad = cpu_to_be32(0);
  110. str->rg_igeneration = cpu_to_be64(rg->rg_igeneration);
  111. memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
  112. }
  113. void gfs2_quota_in(struct gfs2_quota_host *qu, const void *buf)
  114. {
  115. const struct gfs2_quota *str = buf;
  116. qu->qu_limit = be64_to_cpu(str->qu_limit);
  117. qu->qu_warn = be64_to_cpu(str->qu_warn);
  118. qu->qu_value = be64_to_cpu(str->qu_value);
  119. }
  120. void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
  121. {
  122. const struct gfs2_dinode_host *di = &ip->i_di;
  123. struct gfs2_dinode *str = buf;
  124. str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
  125. str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
  126. str->di_header.__pad0 = 0;
  127. str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
  128. str->di_header.__pad1 = 0;
  129. gfs2_inum_out(&ip->i_num, &str->di_num);
  130. str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
  131. str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
  132. str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
  133. str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
  134. str->di_size = cpu_to_be64(di->di_size);
  135. str->di_blocks = cpu_to_be64(di->di_blocks);
  136. str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
  137. str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
  138. str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
  139. str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
  140. str->di_goal_data = cpu_to_be64(di->di_goal_data);
  141. str->di_generation = cpu_to_be64(di->di_generation);
  142. str->di_flags = cpu_to_be32(di->di_flags);
  143. str->di_payload_format = cpu_to_be32(di->di_payload_format);
  144. str->di_height = cpu_to_be16(di->di_height);
  145. str->di_depth = cpu_to_be16(di->di_depth);
  146. str->di_entries = cpu_to_be32(di->di_entries);
  147. str->di_eattr = cpu_to_be64(di->di_eattr);
  148. }
  149. void gfs2_dinode_print(const struct gfs2_inode *ip)
  150. {
  151. const struct gfs2_dinode_host *di = &ip->i_di;
  152. gfs2_inum_print(&ip->i_num);
  153. printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
  154. printk(KERN_INFO " di_blocks = %llu\n", (unsigned long long)di->di_blocks);
  155. printk(KERN_INFO " di_goal_meta = %llu\n", (unsigned long long)di->di_goal_meta);
  156. printk(KERN_INFO " di_goal_data = %llu\n", (unsigned long long)di->di_goal_data);
  157. pv(di, di_flags, "0x%.8X");
  158. pv(di, di_payload_format, "%u");
  159. pv(di, di_height, "%u");
  160. pv(di, di_depth, "%u");
  161. pv(di, di_entries, "%u");
  162. printk(KERN_INFO " di_eattr = %llu\n", (unsigned long long)di->di_eattr);
  163. }
  164. void gfs2_log_header_in(struct gfs2_log_header_host *lh, const void *buf)
  165. {
  166. const struct gfs2_log_header *str = buf;
  167. gfs2_meta_header_in(&lh->lh_header, buf);
  168. lh->lh_sequence = be64_to_cpu(str->lh_sequence);
  169. lh->lh_flags = be32_to_cpu(str->lh_flags);
  170. lh->lh_tail = be32_to_cpu(str->lh_tail);
  171. lh->lh_blkno = be32_to_cpu(str->lh_blkno);
  172. lh->lh_hash = be32_to_cpu(str->lh_hash);
  173. }
  174. void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf)
  175. {
  176. const struct gfs2_inum_range *str = buf;
  177. ir->ir_start = be64_to_cpu(str->ir_start);
  178. ir->ir_length = be64_to_cpu(str->ir_length);
  179. }
  180. void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf)
  181. {
  182. struct gfs2_inum_range *str = buf;
  183. str->ir_start = cpu_to_be64(ir->ir_start);
  184. str->ir_length = cpu_to_be64(ir->ir_length);
  185. }
  186. void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
  187. {
  188. const struct gfs2_statfs_change *str = buf;
  189. sc->sc_total = be64_to_cpu(str->sc_total);
  190. sc->sc_free = be64_to_cpu(str->sc_free);
  191. sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
  192. }
  193. void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
  194. {
  195. struct gfs2_statfs_change *str = buf;
  196. str->sc_total = cpu_to_be64(sc->sc_total);
  197. str->sc_free = cpu_to_be64(sc->sc_free);
  198. str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
  199. }
  200. void gfs2_quota_change_in(struct gfs2_quota_change_host *qc, const void *buf)
  201. {
  202. const struct gfs2_quota_change *str = buf;
  203. qc->qc_change = be64_to_cpu(str->qc_change);
  204. qc->qc_flags = be32_to_cpu(str->qc_flags);
  205. qc->qc_id = be32_to_cpu(str->qc_id);
  206. }