Blame view

fs/ufs/cylinder.c 5.71 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  /*
   *  linux/fs/ufs/cylinder.c
   *
   * Copyright (C) 1998
   * Daniel Pirkl <daniel.pirkl@email.cz>
   * Charles University, Faculty of Mathematics and Physics
   *
   *  ext2 - inode (block) bitmap caching inspired
   */
  
  #include <linux/fs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
13
14
15
16
17
  #include <linux/time.h>
  #include <linux/stat.h>
  #include <linux/string.h>
  #include <linux/bitops.h>
  
  #include <asm/byteorder.h>
e54205988   Mike Frysinger   drop linux/ufs_fs...
18
  #include "ufs_fs.h"
bcd6d4ecf   Christoph Hellwig   ufs: move non-lay...
19
  #include "ufs.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
  #include "swab.h"
  #include "util.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
26
27
28
29
30
31
32
33
  /*
   * Read cylinder group into cache. The memory space for ufs_cg_private_info
   * structure is already allocated during ufs_read_super.
   */
  static void ufs_read_cylinder (struct super_block * sb,
  	unsigned cgno, unsigned bitmap_nr)
  {
  	struct ufs_sb_info * sbi = UFS_SB(sb);
  	struct ufs_sb_private_info * uspi;
  	struct ufs_cg_private_info * ucpi;
  	struct ufs_cylinder_group * ucg;
  	unsigned i, j;
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
34
35
  	UFSD("ENTER, cgno %u, bitmap_nr %u
  ", cgno, bitmap_nr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
  	uspi = sbi->s_uspi;
  	ucpi = sbi->s_ucpi[bitmap_nr];
  	ucg = (struct ufs_cylinder_group *)sbi->s_ucg[cgno]->b_data;
9695ef16e   Evgeniy Dushistov   [PATCH] ufs: wron...
39
40
  	UCPI_UBH(ucpi)->fragment = ufs_cgcmin(cgno);
  	UCPI_UBH(ucpi)->count = uspi->s_cgsize >> sb->s_blocksize_bits;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
42
43
  	/*
  	 * We have already the first fragment of cylinder group block in buffer
  	 */
9695ef16e   Evgeniy Dushistov   [PATCH] ufs: wron...
44
45
46
  	UCPI_UBH(ucpi)->bh[0] = sbi->s_ucg[cgno];
  	for (i = 1; i < UCPI_UBH(ucpi)->count; i++)
  		if (!(UCPI_UBH(ucpi)->bh[i] = sb_bread(sb, UCPI_UBH(ucpi)->fragment + i)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  			goto failed;
  	sbi->s_cgno[bitmap_nr] = cgno;
  			
  	ucpi->c_cgx	= fs32_to_cpu(sb, ucg->cg_cgx);
  	ucpi->c_ncyl	= fs16_to_cpu(sb, ucg->cg_ncyl);
  	ucpi->c_niblk	= fs16_to_cpu(sb, ucg->cg_niblk);
  	ucpi->c_ndblk	= fs32_to_cpu(sb, ucg->cg_ndblk);
  	ucpi->c_rotor	= fs32_to_cpu(sb, ucg->cg_rotor);
  	ucpi->c_frotor	= fs32_to_cpu(sb, ucg->cg_frotor);
  	ucpi->c_irotor	= fs32_to_cpu(sb, ucg->cg_irotor);
  	ucpi->c_btotoff	= fs32_to_cpu(sb, ucg->cg_btotoff);
  	ucpi->c_boff	= fs32_to_cpu(sb, ucg->cg_boff);
  	ucpi->c_iusedoff = fs32_to_cpu(sb, ucg->cg_iusedoff);
  	ucpi->c_freeoff	= fs32_to_cpu(sb, ucg->cg_freeoff);
  	ucpi->c_nextfreeoff = fs32_to_cpu(sb, ucg->cg_nextfreeoff);
  	ucpi->c_clustersumoff = fs32_to_cpu(sb, ucg->cg_u.cg_44.cg_clustersumoff);
  	ucpi->c_clusteroff = fs32_to_cpu(sb, ucg->cg_u.cg_44.cg_clusteroff);
  	ucpi->c_nclusterblks = fs32_to_cpu(sb, ucg->cg_u.cg_44.cg_nclusterblks);
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
65
66
  	UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  	return;	
  	
  failed:
  	for (j = 1; j < i; j++)
  		brelse (sbi->s_ucg[j]);
  	sbi->s_cgno[bitmap_nr] = UFS_CGNO_EMPTY;
  	ufs_error (sb, "ufs_read_cylinder", "can't read cylinder group block %u", cgno);
  }
  
  /*
   * Remove cylinder group from cache, doesn't release memory
   * allocated for cylinder group (this is done at ufs_put_super only).
   */
  void ufs_put_cylinder (struct super_block * sb, unsigned bitmap_nr)
  {
  	struct ufs_sb_info * sbi = UFS_SB(sb);
  	struct ufs_sb_private_info * uspi; 
  	struct ufs_cg_private_info * ucpi;
  	struct ufs_cylinder_group * ucg;
  	unsigned i;
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
87
88
  	UFSD("ENTER, bitmap_nr %u
  ", bitmap_nr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
91
  
  	uspi = sbi->s_uspi;
  	if (sbi->s_cgno[bitmap_nr] == UFS_CGNO_EMPTY) {
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
92
93
  		UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
  		return;
  	}
  	ucpi = sbi->s_ucpi[bitmap_nr];
9695ef16e   Evgeniy Dushistov   [PATCH] ufs: wron...
97
  	ucg = ubh_get_ucg(UCPI_UBH(ucpi));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
99
100
101
102
103
104
105
106
107
108
109
  
  	if (uspi->s_ncg > UFS_MAX_GROUP_LOADED && bitmap_nr >= sbi->s_cg_loaded) {
  		ufs_panic (sb, "ufs_put_cylinder", "internal error");
  		return;
  	}
  	/*
  	 * rotor is not so important data, so we put it to disk 
  	 * at the end of working with cylinder
  	 */
  	ucg->cg_rotor = cpu_to_fs32(sb, ucpi->c_rotor);
  	ucg->cg_frotor = cpu_to_fs32(sb, ucpi->c_frotor);
  	ucg->cg_irotor = cpu_to_fs32(sb, ucpi->c_irotor);
9695ef16e   Evgeniy Dushistov   [PATCH] ufs: wron...
110
111
112
  	ubh_mark_buffer_dirty (UCPI_UBH(ucpi));
  	for (i = 1; i < UCPI_UBH(ucpi)->count; i++) {
  		brelse (UCPI_UBH(ucpi)->bh[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
113
114
115
  	}
  
  	sbi->s_cgno[bitmap_nr] = UFS_CGNO_EMPTY;
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
116
117
  	UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
  }
  
  /*
   * Find cylinder group in cache and return it as pointer.
   * If cylinder group is not in cache, we will load it from disk.
   *
   * The cache is managed by LRU algorithm. 
   */
  struct ufs_cg_private_info * ufs_load_cylinder (
  	struct super_block * sb, unsigned cgno)
  {
  	struct ufs_sb_info * sbi = UFS_SB(sb);
  	struct ufs_sb_private_info * uspi;
  	struct ufs_cg_private_info * ucpi;
  	unsigned cg, i, j;
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
133
134
  	UFSD("ENTER, cgno %u
  ", cgno);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
137
138
139
140
141
142
143
144
  
  	uspi = sbi->s_uspi;
  	if (cgno >= uspi->s_ncg) {
  		ufs_panic (sb, "ufs_load_cylinder", "internal error, high number of cg");
  		return NULL;
  	}
  	/*
  	 * Cylinder group number cg it in cache and it was last used
  	 */
  	if (sbi->s_cgno[0] == cgno) {
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
145
146
  		UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
147
148
149
150
151
152
153
154
155
  		return sbi->s_ucpi[0];
  	}
  	/*
  	 * Number of cylinder groups is not higher than UFS_MAX_GROUP_LOADED
  	 */
  	if (uspi->s_ncg <= UFS_MAX_GROUP_LOADED) {
  		if (sbi->s_cgno[cgno] != UFS_CGNO_EMPTY) {
  			if (sbi->s_cgno[cgno] != cgno) {
  				ufs_panic (sb, "ufs_load_cylinder", "internal error, wrong number of cg in cache");
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
156
157
  				UFSD("EXIT (FAILED)
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
159
160
  				return NULL;
  			}
  			else {
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
161
162
  				UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
163
164
165
166
  				return sbi->s_ucpi[cgno];
  			}
  		} else {
  			ufs_read_cylinder (sb, cgno, cgno);
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
167
168
  			UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
  			return sbi->s_ucpi[cgno];
  		}
  	}
  	/*
  	 * Cylinder group number cg is in cache but it was not last used, 
  	 * we will move to the first position
  	 */
  	for (i = 0; i < sbi->s_cg_loaded && sbi->s_cgno[i] != cgno; i++);
  	if (i < sbi->s_cg_loaded && sbi->s_cgno[i] == cgno) {
  		cg = sbi->s_cgno[i];
  		ucpi = sbi->s_ucpi[i];
  		for (j = i; j > 0; j--) {
  			sbi->s_cgno[j] = sbi->s_cgno[j-1];
  			sbi->s_ucpi[j] = sbi->s_ucpi[j-1];
  		}
  		sbi->s_cgno[0] = cg;
  		sbi->s_ucpi[0] = ucpi;
  	/*
  	 * Cylinder group number cg is not in cache, we will read it from disk
  	 * and put it to the first position
  	 */
  	} else {
  		if (sbi->s_cg_loaded < UFS_MAX_GROUP_LOADED)
  			sbi->s_cg_loaded++;
  		else
  			ufs_put_cylinder (sb, UFS_MAX_GROUP_LOADED-1);
  		ucpi = sbi->s_ucpi[sbi->s_cg_loaded - 1];
  		for (j = sbi->s_cg_loaded - 1; j > 0; j--) {
  			sbi->s_cgno[j] = sbi->s_cgno[j-1];
  			sbi->s_ucpi[j] = sbi->s_ucpi[j-1];
  		}
  		sbi->s_ucpi[0] = ucpi;
  		ufs_read_cylinder (sb, cgno, 0);
  	}
abf5d15fd   Evgeniy Dushistov   [PATCH] ufs: easy...
203
204
  	UFSD("EXIT
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
205
206
  	return sbi->s_ucpi[0];
  }