ondisk.c 9.0 KB
Newer Older
D
David Teigland 已提交
1 2
/*
 * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3
 * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
D
David Teigland 已提交
4 5 6
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
7
 * of the GNU General Public License version 2.
D
David Teigland 已提交
8 9 10 11 12 13 14 15 16 17 18
 */

#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/buffer_head.h>

#include "gfs2.h"
#include <linux/gfs2_ondisk.h>

19 20
#define pv(struct, member, fmt) printk(KERN_INFO "  "#member" = "fmt"\n", \
				       struct->member);
D
David Teigland 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34

/*
 * gfs2_xxx_in - read in an xxx struct
 * first arg: the cpu-order structure
 * buf: the disk-order buffer
 *
 * gfs2_xxx_out - write out an xxx struct
 * first arg: the cpu-order structure
 * buf: the disk-order buffer
 *
 * gfs2_xxx_print - print out an xxx struct
 * first arg: the cpu-order structure
 */

35
void gfs2_inum_in(struct gfs2_inum *no, const void *buf)
D
David Teigland 已提交
36
{
37
	const struct gfs2_inum *str = buf;
D
David Teigland 已提交
38 39 40 41 42

	no->no_formal_ino = be64_to_cpu(str->no_formal_ino);
	no->no_addr = be64_to_cpu(str->no_addr);
}

43
void gfs2_inum_out(const struct gfs2_inum *no, void *buf)
D
David Teigland 已提交
44
{
45
	struct gfs2_inum *str = buf;
D
David Teigland 已提交
46 47 48 49 50

	str->no_formal_ino = cpu_to_be64(no->no_formal_ino);
	str->no_addr = cpu_to_be64(no->no_addr);
}

51
static void gfs2_inum_print(const struct gfs2_inum *no)
D
David Teigland 已提交
52
{
53 54
	printk(KERN_INFO "  no_formal_ino = %llu\n", (unsigned long long)no->no_formal_ino);
	printk(KERN_INFO "  no_addr = %llu\n", (unsigned long long)no->no_addr);
D
David Teigland 已提交
55 56
}

57
static void gfs2_meta_header_in(struct gfs2_meta_header *mh, const void *buf)
D
David Teigland 已提交
58
{
59
	const struct gfs2_meta_header *str = buf;
D
David Teigland 已提交
60 61

	mh->mh_magic = be32_to_cpu(str->mh_magic);
62 63
	mh->mh_type = be32_to_cpu(str->mh_type);
	mh->mh_format = be32_to_cpu(str->mh_format);
D
David Teigland 已提交
64 65
}

66
static void gfs2_meta_header_out(const struct gfs2_meta_header *mh, void *buf)
D
David Teigland 已提交
67
{
68
	struct gfs2_meta_header *str = buf;
D
David Teigland 已提交
69 70

	str->mh_magic = cpu_to_be32(mh->mh_magic);
71 72
	str->mh_type = cpu_to_be32(mh->mh_type);
	str->mh_format = cpu_to_be32(mh->mh_format);
D
David Teigland 已提交
73 74
}

75
static void gfs2_meta_header_print(const struct gfs2_meta_header *mh)
D
David Teigland 已提交
76 77 78 79 80 81
{
	pv(mh, mh_magic, "0x%.8X");
	pv(mh, mh_type, "%u");
	pv(mh, mh_format, "%u");
}

82
void gfs2_sb_in(struct gfs2_sb *sb, const void *buf)
D
David Teigland 已提交
83
{
84
	const struct gfs2_sb *str = buf;
D
David Teigland 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

	gfs2_meta_header_in(&sb->sb_header, buf);

	sb->sb_fs_format = be32_to_cpu(str->sb_fs_format);
	sb->sb_multihost_format = be32_to_cpu(str->sb_multihost_format);
	sb->sb_bsize = be32_to_cpu(str->sb_bsize);
	sb->sb_bsize_shift = be32_to_cpu(str->sb_bsize_shift);

	gfs2_inum_in(&sb->sb_master_dir, (char *)&str->sb_master_dir);
	gfs2_inum_in(&sb->sb_root_dir, (char *)&str->sb_root_dir);

	memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN);
	memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN);
}

100
void gfs2_rindex_in(struct gfs2_rindex *ri, const void *buf)
D
David Teigland 已提交
101
{
102
	const struct gfs2_rindex *str = buf;
D
David Teigland 已提交
103 104 105 106 107 108 109 110 111

	ri->ri_addr = be64_to_cpu(str->ri_addr);
	ri->ri_length = be32_to_cpu(str->ri_length);
	ri->ri_data0 = be64_to_cpu(str->ri_data0);
	ri->ri_data = be32_to_cpu(str->ri_data);
	ri->ri_bitbytes = be32_to_cpu(str->ri_bitbytes);

}

112
void gfs2_rindex_print(const struct gfs2_rindex *ri)
D
David Teigland 已提交
113
{
114
	printk(KERN_INFO "  ri_addr = %llu\n", (unsigned long long)ri->ri_addr);
D
David Teigland 已提交
115 116
	pv(ri, ri_length, "%u");

117
	printk(KERN_INFO "  ri_data0 = %llu\n", (unsigned long long)ri->ri_data0);
D
David Teigland 已提交
118 119 120 121 122
	pv(ri, ri_data, "%u");

	pv(ri, ri_bitbytes, "%u");
}

123
void gfs2_rgrp_in(struct gfs2_rgrp *rg, const void *buf)
D
David Teigland 已提交
124
{
125
	const struct gfs2_rgrp *str = buf;
D
David Teigland 已提交
126 127 128 129 130

	gfs2_meta_header_in(&rg->rg_header, buf);
	rg->rg_flags = be32_to_cpu(str->rg_flags);
	rg->rg_free = be32_to_cpu(str->rg_free);
	rg->rg_dinodes = be32_to_cpu(str->rg_dinodes);
S
Steven Whitehouse 已提交
131
	rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
D
David Teigland 已提交
132 133
}

134
void gfs2_rgrp_out(const struct gfs2_rgrp *rg, void *buf)
D
David Teigland 已提交
135
{
136
	struct gfs2_rgrp *str = buf;
D
David Teigland 已提交
137 138 139 140 141

	gfs2_meta_header_out(&rg->rg_header, buf);
	str->rg_flags = cpu_to_be32(rg->rg_flags);
	str->rg_free = cpu_to_be32(rg->rg_free);
	str->rg_dinodes = cpu_to_be32(rg->rg_dinodes);
S
Steven Whitehouse 已提交
142 143
	str->__pad = cpu_to_be32(0);
	str->rg_igeneration = cpu_to_be64(rg->rg_igeneration);
D
David Teigland 已提交
144 145 146
	memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
}

147
void gfs2_quota_in(struct gfs2_quota *qu, const void *buf)
D
David Teigland 已提交
148
{
149
	const struct gfs2_quota *str = buf;
D
David Teigland 已提交
150 151 152 153 154 155

	qu->qu_limit = be64_to_cpu(str->qu_limit);
	qu->qu_warn = be64_to_cpu(str->qu_warn);
	qu->qu_value = be64_to_cpu(str->qu_value);
}

156
void gfs2_dinode_in(struct gfs2_dinode *di, const void *buf)
D
David Teigland 已提交
157
{
158
	const struct gfs2_dinode *str = buf;
D
David Teigland 已提交
159 160

	gfs2_meta_header_in(&di->di_header, buf);
161
	gfs2_inum_in(&di->di_num, &str->di_num);
D
David Teigland 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

	di->di_mode = be32_to_cpu(str->di_mode);
	di->di_uid = be32_to_cpu(str->di_uid);
	di->di_gid = be32_to_cpu(str->di_gid);
	di->di_nlink = be32_to_cpu(str->di_nlink);
	di->di_size = be64_to_cpu(str->di_size);
	di->di_blocks = be64_to_cpu(str->di_blocks);
	di->di_atime = be64_to_cpu(str->di_atime);
	di->di_mtime = be64_to_cpu(str->di_mtime);
	di->di_ctime = be64_to_cpu(str->di_ctime);
	di->di_major = be32_to_cpu(str->di_major);
	di->di_minor = be32_to_cpu(str->di_minor);

	di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
	di->di_goal_data = be64_to_cpu(str->di_goal_data);
S
Steven Whitehouse 已提交
177
	di->di_generation = be64_to_cpu(str->di_generation);
D
David Teigland 已提交
178 179 180 181 182 183 184 185 186 187 188 189

	di->di_flags = be32_to_cpu(str->di_flags);
	di->di_payload_format = be32_to_cpu(str->di_payload_format);
	di->di_height = be16_to_cpu(str->di_height);

	di->di_depth = be16_to_cpu(str->di_depth);
	di->di_entries = be32_to_cpu(str->di_entries);

	di->di_eattr = be64_to_cpu(str->di_eattr);

}

190
void gfs2_dinode_out(const struct gfs2_dinode *di, void *buf)
D
David Teigland 已提交
191
{
192
	struct gfs2_dinode *str = buf;
D
David Teigland 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210

	gfs2_meta_header_out(&di->di_header, buf);
	gfs2_inum_out(&di->di_num, (char *)&str->di_num);

	str->di_mode = cpu_to_be32(di->di_mode);
	str->di_uid = cpu_to_be32(di->di_uid);
	str->di_gid = cpu_to_be32(di->di_gid);
	str->di_nlink = cpu_to_be32(di->di_nlink);
	str->di_size = cpu_to_be64(di->di_size);
	str->di_blocks = cpu_to_be64(di->di_blocks);
	str->di_atime = cpu_to_be64(di->di_atime);
	str->di_mtime = cpu_to_be64(di->di_mtime);
	str->di_ctime = cpu_to_be64(di->di_ctime);
	str->di_major = cpu_to_be32(di->di_major);
	str->di_minor = cpu_to_be32(di->di_minor);

	str->di_goal_meta = cpu_to_be64(di->di_goal_meta);
	str->di_goal_data = cpu_to_be64(di->di_goal_data);
S
Steven Whitehouse 已提交
211
	str->di_generation = cpu_to_be64(di->di_generation);
D
David Teigland 已提交
212 213 214 215 216 217 218 219 220 221 222 223

	str->di_flags = cpu_to_be32(di->di_flags);
	str->di_payload_format = cpu_to_be32(di->di_payload_format);
	str->di_height = cpu_to_be16(di->di_height);

	str->di_depth = cpu_to_be16(di->di_depth);
	str->di_entries = cpu_to_be32(di->di_entries);

	str->di_eattr = cpu_to_be64(di->di_eattr);

}

224
void gfs2_dinode_print(const struct gfs2_dinode *di)
D
David Teigland 已提交
225 226 227 228 229 230 231 232
{
	gfs2_meta_header_print(&di->di_header);
	gfs2_inum_print(&di->di_num);

	pv(di, di_mode, "0%o");
	pv(di, di_uid, "%u");
	pv(di, di_gid, "%u");
	pv(di, di_nlink, "%u");
233 234 235 236 237
	printk(KERN_INFO "  di_size = %llu\n", (unsigned long long)di->di_size);
	printk(KERN_INFO "  di_blocks = %llu\n", (unsigned long long)di->di_blocks);
	printk(KERN_INFO "  di_atime = %lld\n", (long long)di->di_atime);
	printk(KERN_INFO "  di_mtime = %lld\n", (long long)di->di_mtime);
	printk(KERN_INFO "  di_ctime = %lld\n", (long long)di->di_ctime);
D
David Teigland 已提交
238 239 240
	pv(di, di_major, "%u");
	pv(di, di_minor, "%u");

241 242
	printk(KERN_INFO "  di_goal_meta = %llu\n", (unsigned long long)di->di_goal_meta);
	printk(KERN_INFO "  di_goal_data = %llu\n", (unsigned long long)di->di_goal_data);
D
David Teigland 已提交
243 244 245 246 247 248 249 250

	pv(di, di_flags, "0x%.8X");
	pv(di, di_payload_format, "%u");
	pv(di, di_height, "%u");

	pv(di, di_depth, "%u");
	pv(di, di_entries, "%u");

251
	printk(KERN_INFO "  di_eattr = %llu\n", (unsigned long long)di->di_eattr);
D
David Teigland 已提交
252 253
}

254
void gfs2_log_header_in(struct gfs2_log_header *lh, const void *buf)
D
David Teigland 已提交
255
{
256
	const struct gfs2_log_header *str = buf;
D
David Teigland 已提交
257 258 259 260 261 262 263 264 265

	gfs2_meta_header_in(&lh->lh_header, buf);
	lh->lh_sequence = be64_to_cpu(str->lh_sequence);
	lh->lh_flags = be32_to_cpu(str->lh_flags);
	lh->lh_tail = be32_to_cpu(str->lh_tail);
	lh->lh_blkno = be32_to_cpu(str->lh_blkno);
	lh->lh_hash = be32_to_cpu(str->lh_hash);
}

266
void gfs2_inum_range_in(struct gfs2_inum_range *ir, const void *buf)
D
David Teigland 已提交
267
{
268
	const struct gfs2_inum_range *str = buf;
D
David Teigland 已提交
269 270 271 272 273

	ir->ir_start = be64_to_cpu(str->ir_start);
	ir->ir_length = be64_to_cpu(str->ir_length);
}

274
void gfs2_inum_range_out(const struct gfs2_inum_range *ir, void *buf)
D
David Teigland 已提交
275
{
276
	struct gfs2_inum_range *str = buf;
D
David Teigland 已提交
277 278 279 280 281

	str->ir_start = cpu_to_be64(ir->ir_start);
	str->ir_length = cpu_to_be64(ir->ir_length);
}

282
void gfs2_statfs_change_in(struct gfs2_statfs_change *sc, const void *buf)
D
David Teigland 已提交
283
{
284
	const struct gfs2_statfs_change *str = buf;
D
David Teigland 已提交
285 286 287 288 289 290

	sc->sc_total = be64_to_cpu(str->sc_total);
	sc->sc_free = be64_to_cpu(str->sc_free);
	sc->sc_dinodes = be64_to_cpu(str->sc_dinodes);
}

291
void gfs2_statfs_change_out(const struct gfs2_statfs_change *sc, void *buf)
D
David Teigland 已提交
292
{
293
	struct gfs2_statfs_change *str = buf;
D
David Teigland 已提交
294 295 296 297 298 299

	str->sc_total = cpu_to_be64(sc->sc_total);
	str->sc_free = cpu_to_be64(sc->sc_free);
	str->sc_dinodes = cpu_to_be64(sc->sc_dinodes);
}

300
void gfs2_quota_change_in(struct gfs2_quota_change *qc, const void *buf)
D
David Teigland 已提交
301
{
302
	const struct gfs2_quota_change *str = buf;
D
David Teigland 已提交
303 304 305 306 307 308

	qc->qc_change = be64_to_cpu(str->qc_change);
	qc->qc_flags = be32_to_cpu(str->qc_flags);
	qc->qc_id = be32_to_cpu(str->qc_id);
}