ondisk.c 7.7 KB

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