MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / fs / fat / prince-fat / fat-2.6.19 / cache.c
blob82cc4f59e3bae3302abd291b392eccb90f4e1be4
1 /*
2 * linux/fs/fat/cache.c
4 * Written 1992,1993 by Werner Almesberger
6 * Mar 1999. AV. Changed cache, so that it uses the starting cluster instead
7 * of inode number.
8 * May 1999. AV. Fixed the bogosity with FAT32 (read "FAT28"). Fscking lusers.
9 */
11 #include <linux/fs.h>
12 #include <linux/msdos_fs.h>
13 #include <linux/buffer_head.h>
15 /* this must be > 0. */
16 #define FAT_MAX_CACHE 8
18 struct fat_cache {
19 struct list_head cache_list;
20 int nr_contig; /* number of contiguous clusters */
21 int fcluster; /* cluster number in the file. */
22 int dcluster; /* cluster number on disk. */
25 struct fat_cache_id {
26 unsigned int id;
27 int nr_contig;
28 int fcluster;
29 int dcluster;
32 static inline int fat_max_cache(struct inode *inode)
34 return FAT_MAX_CACHE;
37 static kmem_cache_t *fat_cache_cachep;
39 static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
41 struct fat_cache *cache = (struct fat_cache *)foo;
43 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
44 SLAB_CTOR_CONSTRUCTOR)
45 INIT_LIST_HEAD(&cache->cache_list);
48 int __init fat_cache_init(void)
50 fat_cache_cachep = kmem_cache_create("fat_cache",
51 sizeof(struct fat_cache),
52 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
53 init_once, NULL);
54 if (fat_cache_cachep == NULL)
55 return -ENOMEM;
56 return 0;
59 void fat_cache_destroy(void)
61 kmem_cache_destroy(fat_cache_cachep);
64 static inline struct fat_cache *fat_cache_alloc(struct inode *inode)
66 return kmem_cache_alloc(fat_cache_cachep, SLAB_KERNEL);
69 static inline void fat_cache_free(struct fat_cache *cache)
71 BUG_ON(!list_empty(&cache->cache_list));
72 kmem_cache_free(fat_cache_cachep, cache);
75 static inline void fat_cache_update_lru(struct inode *inode,
76 struct fat_cache *cache)
78 if (MSDOS_I(inode)->cache_lru.next != &cache->cache_list)
79 list_move(&cache->cache_list, &MSDOS_I(inode)->cache_lru);
82 static int fat_cache_lookup(struct inode *inode, int fclus,
83 struct fat_cache_id *cid,
84 int *cached_fclus, int *cached_dclus)
86 static struct fat_cache nohit = { .fcluster = 0, };
88 struct fat_cache *hit = &nohit, *p;
89 int offset = -1;
91 spin_lock(&MSDOS_I(inode)->cache_lru_lock);
92 list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) {
93 /* Find the cache of "fclus" or nearest cache. */
94 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
95 hit = p;
96 if ((hit->fcluster + hit->nr_contig) < fclus) {
97 offset = hit->nr_contig;
98 } else {
99 offset = fclus - hit->fcluster;
100 break;
104 if (hit != &nohit) {
105 fat_cache_update_lru(inode, hit);
107 cid->id = MSDOS_I(inode)->cache_valid_id;
108 cid->nr_contig = hit->nr_contig;
109 cid->fcluster = hit->fcluster;
110 cid->dcluster = hit->dcluster;
111 *cached_fclus = cid->fcluster + offset;
112 *cached_dclus = cid->dcluster + offset;
114 spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
116 return offset;
119 static struct fat_cache *fat_cache_merge(struct inode *inode,
120 struct fat_cache_id *new)
122 struct fat_cache *p;
124 list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) {
125 /* Find the same part as "new" in cluster-chain. */
126 if (p->fcluster == new->fcluster) {
127 BUG_ON(p->dcluster != new->dcluster);
128 if (new->nr_contig > p->nr_contig)
129 p->nr_contig = new->nr_contig;
130 return p;
133 return NULL;
136 static void fat_cache_add(struct inode *inode, struct fat_cache_id *new)
138 struct fat_cache *cache, *tmp;
140 if (new->fcluster == -1) /* dummy cache */
141 return;
143 spin_lock(&MSDOS_I(inode)->cache_lru_lock);
144 if (new->id != FAT_CACHE_VALID &&
145 new->id != MSDOS_I(inode)->cache_valid_id)
146 goto out; /* this cache was invalidated */
148 cache = fat_cache_merge(inode, new);
149 if (cache == NULL) {
150 if (MSDOS_I(inode)->nr_caches < fat_max_cache(inode)) {
151 MSDOS_I(inode)->nr_caches++;
152 spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
154 tmp = fat_cache_alloc(inode);
155 spin_lock(&MSDOS_I(inode)->cache_lru_lock);
156 cache = fat_cache_merge(inode, new);
157 if (cache != NULL) {
158 MSDOS_I(inode)->nr_caches--;
159 fat_cache_free(tmp);
160 goto out_update_lru;
162 cache = tmp;
163 } else {
164 struct list_head *p = MSDOS_I(inode)->cache_lru.prev;
165 cache = list_entry(p, struct fat_cache, cache_list);
167 cache->fcluster = new->fcluster;
168 cache->dcluster = new->dcluster;
169 cache->nr_contig = new->nr_contig;
171 out_update_lru:
172 fat_cache_update_lru(inode, cache);
173 out:
174 spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
178 * Cache invalidation occurs rarely, thus the LRU chain is not updated. It
179 * fixes itself after a while.
181 static void __fat_cache_inval_inode(struct inode *inode)
183 struct msdos_inode_info *i = MSDOS_I(inode);
184 struct fat_cache *cache;
186 while (!list_empty(&i->cache_lru)) {
187 cache = list_entry(i->cache_lru.next, struct fat_cache, cache_list);
188 list_del_init(&cache->cache_list);
189 i->nr_caches--;
190 fat_cache_free(cache);
192 /* Update. The copy of caches before this id is discarded. */
193 i->cache_valid_id++;
194 if (i->cache_valid_id == FAT_CACHE_VALID)
195 i->cache_valid_id++;
198 void fat_cache_inval_inode(struct inode *inode)
200 spin_lock(&MSDOS_I(inode)->cache_lru_lock);
201 __fat_cache_inval_inode(inode);
202 spin_unlock(&MSDOS_I(inode)->cache_lru_lock);
205 static inline int cache_contiguous(struct fat_cache_id *cid, int dclus)
207 cid->nr_contig++;
208 return ((cid->dcluster + cid->nr_contig) == dclus);
211 static inline void cache_init(struct fat_cache_id *cid, int fclus, int dclus)
213 cid->id = FAT_CACHE_VALID;
214 cid->fcluster = fclus;
215 cid->dcluster = dclus;
216 cid->nr_contig = 0;
219 int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus)
221 struct super_block *sb = inode->i_sb;
222 const int limit = sb->s_maxbytes >> MSDOS_SB(sb)->cluster_bits;
223 struct fat_entry fatent;
224 struct fat_cache_id cid;
225 int nr;
227 BUG_ON(MSDOS_I(inode)->i_start == 0);
229 *fclus = 0;
230 *dclus = MSDOS_I(inode)->i_start;
231 if (cluster == 0)
232 return 0;
234 if (fat_cache_lookup(inode, cluster, &cid, fclus, dclus) < 0) {
236 * dummy, always not contiguous
237 * This is reinitialized by cache_init(), later.
239 cache_init(&cid, -1, -1);
242 fatent_init(&fatent);
243 while (*fclus < cluster) {
244 /* prevent the infinite loop of cluster chain */
245 if (*fclus > limit) {
246 fat_fs_panic(sb, "%s: detected the cluster chain loop"
247 " (i_pos %lld)", __FUNCTION__,
248 MSDOS_I(inode)->i_pos);
249 nr = -EIO;
250 goto out;
253 nr = fat_ent_read(inode, &fatent, *dclus);
254 if (nr < 0)
255 goto out;
256 else if (nr == FAT_ENT_FREE) {
257 fat_fs_panic(sb, "%s: invalid cluster chain"
258 " (i_pos %lld)", __FUNCTION__,
259 MSDOS_I(inode)->i_pos);
260 nr = -EIO;
261 goto out;
262 } else if (nr == FAT_ENT_EOF) {
263 fat_cache_add(inode, &cid);
264 goto out;
266 (*fclus)++;
267 *dclus = nr;
268 if (!cache_contiguous(&cid, *dclus))
269 cache_init(&cid, *fclus, *dclus);
271 nr = 0;
272 fat_cache_add(inode, &cid);
273 out:
274 fatent_brelse(&fatent);
275 return nr;
278 static int fat_bmap_cluster(struct inode *inode, int cluster)
280 struct super_block *sb = inode->i_sb;
281 int ret, fclus, dclus;
283 if (MSDOS_I(inode)->i_start == 0)
284 return 0;
286 ret = fat_get_cluster(inode, cluster, &fclus, &dclus);
287 if (ret < 0)
288 return ret;
289 else if (ret == FAT_ENT_EOF) {
290 fat_fs_panic(sb, "%s: request beyond EOF (i_pos %lld)",
291 __FUNCTION__, MSDOS_I(inode)->i_pos);
292 return -EIO;
294 return dclus;
297 int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
298 unsigned long *mapped_blocks)
300 struct super_block *sb = inode->i_sb;
301 struct msdos_sb_info *sbi = MSDOS_SB(sb);
302 sector_t last_block;
303 int cluster, offset;
305 *phys = 0;
306 *mapped_blocks = 0;
307 if ((sbi->fat_bits != 32) && (inode->i_ino == MSDOS_ROOT_INO)) {
308 if (sector < (sbi->dir_entries >> sbi->dir_per_block_bits)) {
309 *phys = sector + sbi->dir_start;
310 *mapped_blocks = 1;
312 return 0;
314 last_block = (MSDOS_I(inode)->mmu_private + (sb->s_blocksize - 1))
315 >> sb->s_blocksize_bits;
316 if (sector >= last_block)
317 return 0;
319 cluster = sector >> (sbi->cluster_bits - sb->s_blocksize_bits);
320 offset = sector & (sbi->sec_per_clus - 1);
321 cluster = fat_bmap_cluster(inode, cluster);
322 if (cluster < 0)
323 return cluster;
324 else if (cluster) {
325 *phys = fat_clus_to_blknr(sbi, cluster) + offset;
326 *mapped_blocks = sbi->sec_per_clus - offset;
327 if (*mapped_blocks > last_block - sector)
328 *mapped_blocks = last_block - sector;
330 return 0;