2 * linux/fs/hpfs/buffer.c
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
8 #include <linux/sched.h>
9 #include <linux/slab.h>
10 #include <linux/blkdev.h>
13 void hpfs_prefetch_sectors(struct super_block *s, unsigned secno, int n)
15 struct buffer_head *bh;
18 if (n <= 0 || unlikely(secno >= hpfs_sb(s)->sb_fs_size))
21 bh = sb_find_get_block(s, secno);
23 if (buffer_uptodate(bh)) {
30 blk_start_plug(&plug);
32 if (unlikely(secno >= hpfs_sb(s)->sb_fs_size))
34 sb_breadahead(s, secno);
38 blk_finish_plug(&plug);
41 /* Map a sector into a buffer and return pointers to it and to the buffer. */
43 void *hpfs_map_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp,
46 struct buffer_head *bh;
50 hpfs_prefetch_sectors(s, secno, ahead);
54 *bhp = bh = sb_bread(s, secno);
58 printk("HPFS: hpfs_map_sector: read error\n");
63 /* Like hpfs_map_sector but don't read anything */
65 void *hpfs_get_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp)
67 struct buffer_head *bh;
68 /*return hpfs_map_sector(s, secno, bhp, 0);*/
74 if ((*bhp = bh = sb_getblk(s, secno)) != NULL) {
75 if (!buffer_uptodate(bh)) wait_on_buffer(bh);
76 set_buffer_uptodate(bh);
79 printk("HPFS: hpfs_get_sector: getblk failed\n");
84 /* Map 4 sectors into a 4buffer and return pointers to it and to the buffer. */
86 void *hpfs_map_4sectors(struct super_block *s, unsigned secno, struct quad_buffer_head *qbh,
96 printk("HPFS: hpfs_map_4sectors: unaligned read\n");
100 hpfs_prefetch_sectors(s, secno, 4 + ahead);
102 if (!(qbh->bh[0] = sb_bread(s, secno + 0))) goto bail0;
103 if (!(qbh->bh[1] = sb_bread(s, secno + 1))) goto bail1;
104 if (!(qbh->bh[2] = sb_bread(s, secno + 2))) goto bail2;
105 if (!(qbh->bh[3] = sb_bread(s, secno + 3))) goto bail3;
107 if (likely(qbh->bh[1]->b_data == qbh->bh[0]->b_data + 1 * 512) &&
108 likely(qbh->bh[2]->b_data == qbh->bh[0]->b_data + 2 * 512) &&
109 likely(qbh->bh[3]->b_data == qbh->bh[0]->b_data + 3 * 512)) {
110 return qbh->data = qbh->bh[0]->b_data;
113 qbh->data = data = kmalloc(2048, GFP_NOFS);
115 printk("HPFS: hpfs_map_4sectors: out of memory\n");
119 memcpy(data + 0 * 512, qbh->bh[0]->b_data, 512);
120 memcpy(data + 1 * 512, qbh->bh[1]->b_data, 512);
121 memcpy(data + 2 * 512, qbh->bh[2]->b_data, 512);
122 memcpy(data + 3 * 512, qbh->bh[3]->b_data, 512);
138 /* Don't read sectors */
140 void *hpfs_get_4sectors(struct super_block *s, unsigned secno,
141 struct quad_buffer_head *qbh)
148 printk("HPFS: hpfs_get_4sectors: unaligned read\n");
152 if (!hpfs_get_sector(s, secno + 0, &qbh->bh[0])) goto bail0;
153 if (!hpfs_get_sector(s, secno + 1, &qbh->bh[1])) goto bail1;
154 if (!hpfs_get_sector(s, secno + 2, &qbh->bh[2])) goto bail2;
155 if (!hpfs_get_sector(s, secno + 3, &qbh->bh[3])) goto bail3;
157 if (likely(qbh->bh[1]->b_data == qbh->bh[0]->b_data + 1 * 512) &&
158 likely(qbh->bh[2]->b_data == qbh->bh[0]->b_data + 2 * 512) &&
159 likely(qbh->bh[3]->b_data == qbh->bh[0]->b_data + 3 * 512)) {
160 return qbh->data = qbh->bh[0]->b_data;
163 if (!(qbh->data = kmalloc(2048, GFP_NOFS))) {
164 printk("HPFS: hpfs_get_4sectors: out of memory\n");
182 void hpfs_brelse4(struct quad_buffer_head *qbh)
184 if (unlikely(qbh->data != qbh->bh[0]->b_data))
192 void hpfs_mark_4buffers_dirty(struct quad_buffer_head *qbh)
194 if (unlikely(qbh->data != qbh->bh[0]->b_data)) {
195 memcpy(qbh->bh[0]->b_data, qbh->data + 0 * 512, 512);
196 memcpy(qbh->bh[1]->b_data, qbh->data + 1 * 512, 512);
197 memcpy(qbh->bh[2]->b_data, qbh->data + 2 * 512, 512);
198 memcpy(qbh->bh[3]->b_data, qbh->data + 3 * 512, 512);
200 mark_buffer_dirty(qbh->bh[0]);
201 mark_buffer_dirty(qbh->bh[1]);
202 mark_buffer_dirty(qbh->bh[2]);
203 mark_buffer_dirty(qbh->bh[3]);