blob: 6b50a5731a511db378808af9f0b52d85b9913290 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000015
16#include "gfs2.h"
17#include <linux/gfs2_ondisk.h>
Steven Whitehouse539e5d62006-10-31 15:07:05 -050018#include <linux/lm_interface.h>
19#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
Steven Whitehouse568f4c92006-02-27 12:00:42 -050021#define pv(struct, member, fmt) printk(KERN_INFO " "#member" = "fmt"\n", \
22 struct->member);
David Teiglandb3b94fa2006-01-16 16:50:04 +000023
24/*
25 * gfs2_xxx_in - read in an xxx struct
26 * first arg: the cpu-order structure
27 * buf: the disk-order buffer
28 *
29 * gfs2_xxx_out - write out an xxx struct
30 * first arg: the cpu-order structure
31 * buf: the disk-order buffer
32 *
33 * gfs2_xxx_print - print out an xxx struct
34 * first arg: the cpu-order structure
35 */
36
Al Viro629a21e2006-10-13 22:51:24 -040037void gfs2_inum_in(struct gfs2_inum_host *no, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000038{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040039 const struct gfs2_inum *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
41 no->no_formal_ino = be64_to_cpu(str->no_formal_ino);
42 no->no_addr = be64_to_cpu(str->no_addr);
43}
44
Al Viro629a21e2006-10-13 22:51:24 -040045void gfs2_inum_out(const struct gfs2_inum_host *no, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000046{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040047 struct gfs2_inum *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000048
49 str->no_formal_ino = cpu_to_be64(no->no_formal_ino);
50 str->no_addr = cpu_to_be64(no->no_addr);
51}
52
Al Viro629a21e2006-10-13 22:51:24 -040053static void gfs2_inum_print(const struct gfs2_inum_host *no)
David Teiglandb3b94fa2006-01-16 16:50:04 +000054{
Steven Whitehouse382066d2006-05-24 10:22:09 -040055 printk(KERN_INFO " no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino);
56 printk(KERN_INFO " no_addr = %llu\n", (unsigned long long)no->no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000057}
58
Steven Whitehouseaf339c02006-11-01 10:34:15 -050059static void gfs2_meta_header_in(struct gfs2_meta_header_host *mh, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000060{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040061 const struct gfs2_meta_header *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000062
63 mh->mh_magic = be32_to_cpu(str->mh_magic);
Steven Whitehousee3167de2006-03-30 15:46:23 -050064 mh->mh_type = be32_to_cpu(str->mh_type);
65 mh->mh_format = be32_to_cpu(str->mh_format);
David Teiglandb3b94fa2006-01-16 16:50:04 +000066}
67
Al Viroe928a762006-10-13 21:57:23 -040068static void gfs2_meta_header_out(const struct gfs2_meta_header_host *mh, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000069{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040070 struct gfs2_meta_header *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000071
72 str->mh_magic = cpu_to_be32(mh->mh_magic);
Steven Whitehousee3167de2006-03-30 15:46:23 -050073 str->mh_type = cpu_to_be32(mh->mh_type);
74 str->mh_format = cpu_to_be32(mh->mh_format);
David Teiglandb3b94fa2006-01-16 16:50:04 +000075}
76
Al Virof50dfaf2006-10-13 20:45:02 -040077void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000078{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040079 const struct gfs2_sb *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000080
81 gfs2_meta_header_in(&sb->sb_header, buf);
82
83 sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
84 sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
85 sb->sb_bsize = be32_to_cpu(str->sb_bsize);
86 sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);
87
88 gfs2_inum_in(&sb->sb_master_dir, (char *)&str->sb_master_dir);
89 gfs2_inum_in(&sb->sb_root_dir, (char *)&str->sb_root_dir);
90
91 memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
92 memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
93}
94
Al Viro1e81c4c2006-10-13 22:51:24 -040095void gfs2_rindex_in(struct gfs2_rindex_host *ri, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +000096{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -040097 const struct gfs2_rindex *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +000098
99 ri->ri_addr = be64_to_cpu(str->ri_addr);
100 ri->ri_length = be32_to_cpu(str->ri_length);
101 ri->ri_data0 = be64_to_cpu(str->ri_data0);
102 ri->ri_data = be32_to_cpu(str->ri_data);
103 ri->ri_bitbytes = be32_to_cpu(str->ri_bitbytes);
104
105}
106
Al Viro1e81c4c2006-10-13 22:51:24 -0400107void gfs2_rindex_print(const struct gfs2_rindex_host *ri)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108{
Steven Whitehouse382066d2006-05-24 10:22:09 -0400109 printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)ri->ri_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110 pv(ri, ri_length, "%u");
111
Steven Whitehouse382066d2006-05-24 10:22:09 -0400112 printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)ri->ri_data0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113 pv(ri, ri_data, "%u");
114
115 pv(ri, ri_bitbytes, "%u");
116}
117
Al Viro68826662006-10-13 21:07:22 -0400118void gfs2_rgrp_in(struct gfs2_rgrp_host *rg, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400120 const struct gfs2_rgrp *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121
122 gfs2_meta_header_in(&rg->rg_header, buf);
123 rg->rg_flags = be32_to_cpu(str->rg_flags);
124 rg->rg_free = be32_to_cpu(str->rg_free);
125 rg->rg_dinodes = be32_to_cpu(str->rg_dinodes);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400126 rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127}
128
Al Viro68826662006-10-13 21:07:22 -0400129void gfs2_rgrp_out(const struct gfs2_rgrp_host *rg, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000130{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400131 struct gfs2_rgrp *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132
133 gfs2_meta_header_out(&rg->rg_header, buf);
134 str->rg_flags = cpu_to_be32(rg->rg_flags);
135 str->rg_free = cpu_to_be32(rg->rg_free);
136 str->rg_dinodes = cpu_to_be32(rg->rg_dinodes);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400137 str->__pad = cpu_to_be32(0);
138 str->rg_igeneration = cpu_to_be64(rg->rg_igeneration);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
140}
141
Al Virob5bc9e82006-10-13 23:31:55 -0400142void gfs2_quota_in(struct gfs2_quota_host *qu, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400144 const struct gfs2_quota *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145
146 qu->qu_limit = be64_to_cpu(str->qu_limit);
147 qu->qu_warn = be64_to_cpu(str->qu_warn);
148 qu->qu_value = be64_to_cpu(str->qu_value);
149}
150
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500151void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152{
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500153 const struct gfs2_dinode_host *di = &ip->i_di;
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400154 struct gfs2_dinode *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500156 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
157 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
158 str->di_header.__pad0 = 0;
159 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
160 str->di_header.__pad1 = 0;
161
162 gfs2_inum_out(&ip->i_num, &str->di_num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000163
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500164 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165 str->di_uid = cpu_to_be32(di->di_uid);
166 str->di_gid = cpu_to_be32(di->di_gid);
167 str->di_nlink = cpu_to_be32(di->di_nlink);
168 str->di_size = cpu_to_be64(di->di_size);
169 str->di_blocks = cpu_to_be64(di->di_blocks);
170 str->di_atime = cpu_to_be64(di->di_atime);
171 str->di_mtime = cpu_to_be64(di->di_mtime);
172 str->di_ctime = cpu_to_be64(di->di_ctime);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000173
174 str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
175 str->di_goal_data = cpu_to_be64(di->di_goal_data);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400176 str->di_generation = cpu_to_be64(di->di_generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000177
178 str->di_flags = cpu_to_be32(di->di_flags);
179 str->di_payload_format = cpu_to_be32(di->di_payload_format);
180 str->di_height = cpu_to_be16(di->di_height);
181
182 str->di_depth = cpu_to_be16(di->di_depth);
183 str->di_entries = cpu_to_be32(di->di_entries);
184
185 str->di_eattr = cpu_to_be64(di->di_eattr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186}
187
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500188void gfs2_dinode_print(const struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189{
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500190 const struct gfs2_dinode_host *di = &ip->i_di;
191
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500192 gfs2_inum_print(&ip->i_num);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194 pv(di, di_uid, "%u");
195 pv(di, di_gid, "%u");
196 pv(di, di_nlink, "%u");
Steven Whitehouse382066d2006-05-24 10:22:09 -0400197 printk(KERN_INFO " di_size = %llu\n", (unsigned long long)di->di_size);
198 printk(KERN_INFO " di_blocks = %llu\n", (unsigned long long)di->di_blocks);
199 printk(KERN_INFO " di_atime = %lld\n", (long long)di->di_atime);
200 printk(KERN_INFO " di_mtime = %lld\n", (long long)di->di_mtime);
201 printk(KERN_INFO " di_ctime = %lld\n", (long long)di->di_ctime);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000202
Steven Whitehouse382066d2006-05-24 10:22:09 -0400203 printk(KERN_INFO " di_goal_meta = %llu\n", (unsigned long long)di->di_goal_meta);
204 printk(KERN_INFO " di_goal_data = %llu\n", (unsigned long long)di->di_goal_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205
206 pv(di, di_flags, "0x%.8X");
207 pv(di, di_payload_format, "%u");
208 pv(di, di_height, "%u");
209
210 pv(di, di_depth, "%u");
211 pv(di, di_entries, "%u");
212
Steven Whitehouse382066d2006-05-24 10:22:09 -0400213 printk(KERN_INFO " di_eattr = %llu\n", (unsigned long long)di->di_eattr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214}
215
Al Viro55167622006-10-13 21:47:13 -0400216void gfs2_log_header_in(struct gfs2_log_header_host *lh, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400218 const struct gfs2_log_header *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219
220 gfs2_meta_header_in(&lh->lh_header, buf);
221 lh->lh_sequence = be64_to_cpu(str->lh_sequence);
222 lh->lh_flags = be32_to_cpu(str->lh_flags);
223 lh->lh_tail = be32_to_cpu(str->lh_tail);
224 lh->lh_blkno = be32_to_cpu(str->lh_blkno);
225 lh->lh_hash = be32_to_cpu(str->lh_hash);
226}
227
Al Viroe6972642006-10-13 21:29:46 -0400228void gfs2_inum_range_in(struct gfs2_inum_range_host *ir, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400230 const struct gfs2_inum_range *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000231
232 ir->ir_start = be64_to_cpu(str->ir_start);
233 ir->ir_length = be64_to_cpu(str->ir_length);
234}
235
Al Viroe6972642006-10-13 21:29:46 -0400236void gfs2_inum_range_out(const struct gfs2_inum_range_host *ir, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400238 struct gfs2_inum_range *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239
240 str->ir_start = cpu_to_be64(ir->ir_start);
241 str->ir_length = cpu_to_be64(ir->ir_length);
242}
243
Al Virobd209cc2006-10-13 23:43:19 -0400244void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400246 const struct gfs2_statfs_change *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247
248 sc->sc_total = be64_to_cpu(str->sc_total);
249 sc->sc_free = be64_to_cpu(str->sc_free);
250 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
251}
252
Al Virobd209cc2006-10-13 23:43:19 -0400253void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000254{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400255 struct gfs2_statfs_change *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000256
257 str->sc_total = cpu_to_be64(sc->sc_total);
258 str->sc_free = cpu_to_be64(sc->sc_free);
259 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
260}
261
Al Virob62f9632006-10-13 23:46:46 -0400262void gfs2_quota_change_in(struct gfs2_quota_change_host *qc, const void *buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000263{
Steven Whitehouse38c60ef2006-09-04 14:48:37 -0400264 const struct gfs2_quota_change *str = buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265
266 qc->qc_change = be64_to_cpu(str->qc_change);
267 qc->qc_flags = be32_to_cpu(str->qc_flags);
268 qc->qc_id = be32_to_cpu(str->qc_id);
269}
270