This source file includes following definitions.
- do_rd_request
- rd_init
- do_load
- rd_load
1
2
3
4
5
6
7
8
9
10
11 #include <linux/sched.h>
12 #include <linux/minix_fs.h>
13 #include <linux/ext2_fs.h>
14 #include <linux/fs.h>
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/mm.h>
18
19 #include <asm/system.h>
20 #include <asm/segment.h>
21
22 #define MAJOR_NR MEM_MAJOR
23 #include "blk.h"
24
25 #define RAMDISK_MINOR 1
26
27 extern void wait_for_keypress(void);
28
29 char *rd_start;
30 int rd_length = 0;
31 static int rd_blocksizes[2] = {0, 0};
32
33 static void do_rd_request(void)
34 {
35 int len;
36 char *addr;
37
38 repeat:
39 INIT_REQUEST;
40 addr = rd_start + (CURRENT->sector << 9);
41 len = CURRENT->current_nr_sectors << 9;
42
43 if ((MINOR(CURRENT->dev) != RAMDISK_MINOR) ||
44 (addr+len > rd_start+rd_length)) {
45 end_request(0);
46 goto repeat;
47 }
48 if (CURRENT-> cmd == WRITE) {
49 (void ) memcpy(addr,
50 CURRENT->buffer,
51 len);
52 } else if (CURRENT->cmd == READ) {
53 (void) memcpy(CURRENT->buffer,
54 addr,
55 len);
56 } else
57 panic("RAMDISK: unknown RAM disk command !\n");
58 end_request(1);
59 goto repeat;
60 }
61
62 static struct file_operations rd_fops = {
63 NULL,
64 block_read,
65 block_write,
66 NULL,
67 NULL,
68 NULL,
69 NULL,
70 NULL,
71 NULL,
72 block_fsync
73 };
74
75
76
77
78 long rd_init(long mem_start, int length)
79 {
80 int i;
81 char *cp;
82
83 if (register_blkdev(MEM_MAJOR,"rd",&rd_fops)) {
84 printk("RAMDISK: Unable to get major %d.\n", MEM_MAJOR);
85 return 0;
86 }
87 blk_dev[MEM_MAJOR].request_fn = DEVICE_REQUEST;
88 rd_start = (char *) mem_start;
89 rd_length = length;
90 cp = rd_start;
91 for (i=0; i < length; i++)
92 *cp++ = '\0';
93
94 for(i=0;i<2;i++) rd_blocksizes[i] = 1024;
95 blksize_size[MAJOR_NR] = rd_blocksizes;
96
97 return(length);
98 }
99
100 static void do_load(void)
101 {
102 struct buffer_head *bh;
103 struct super_block {
104 union
105 {
106 char minix [sizeof (struct minix_super_block)];
107 char ext2 [sizeof (struct ext2_super_block)];
108 } record;
109 } sb;
110 struct minix_super_block *minixsb =
111 (struct minix_super_block *)&sb;
112 struct ext2_super_block *ext2sb =
113 (struct ext2_super_block *)&sb;
114 int block, tries;
115 int i = 1;
116 int nblocks;
117 char *cp;
118
119
120
121
122
123
124
125
126
127 for (tries = 0; tries < 1000; tries += 512) {
128 block = tries;
129 bh = breada(ROOT_DEV,block+1,BLOCK_SIZE, 0, PAGE_SIZE);
130 if (!bh) {
131 printk("RAMDISK: I/O error while looking for super block!\n");
132 return;
133 }
134
135
136 *((struct super_block *) &sb) =
137 *((struct super_block *) bh->b_data);
138 brelse(bh);
139
140
141
142 nblocks = -1;
143 if (minixsb->s_magic == MINIX_SUPER_MAGIC ||
144 minixsb->s_magic == MINIX_SUPER_MAGIC2) {
145 printk("RAMDISK: Minix filesystem found at block %d\n",
146 block);
147 nblocks = minixsb->s_nzones << minixsb->s_log_zone_size;
148 }
149
150
151 if (nblocks == -1 && ext2sb->s_magic == EXT2_SUPER_MAGIC)
152 {
153 printk("RAMDISK: Ext2 filesystem found at block %d\n",
154 block);
155 nblocks = ext2sb->s_blocks_count;
156 }
157
158 if (nblocks == -1)
159 {
160 printk("RAMDISK: trying old-style RAM image.\n");
161 continue;
162 }
163
164 if (nblocks > (rd_length >> BLOCK_SIZE_BITS)) {
165 printk("RAMDISK: image too big! (%d/%d blocks)\n",
166 nblocks, rd_length >> BLOCK_SIZE_BITS);
167 return;
168 }
169 printk("RAMDISK: Loading %d blocks into RAM disk", nblocks);
170
171
172 cp = rd_start;
173 while (nblocks) {
174 if (nblocks > 2)
175 bh = breada(ROOT_DEV, block, BLOCK_SIZE, 0, PAGE_SIZE);
176 else
177 bh = bread(ROOT_DEV, block, BLOCK_SIZE);
178 if (!bh) {
179 printk("RAMDISK: I/O error on block %d, aborting!\n",
180 block);
181 return;
182 }
183 (void) memcpy(cp, bh->b_data, BLOCK_SIZE);
184 brelse(bh);
185 if (!(nblocks-- & 15)) printk(".");
186 cp += BLOCK_SIZE;
187 block++;
188 i++;
189 }
190 printk("\ndone\n");
191
192
193 ROOT_DEV = ((MEM_MAJOR << 8) | RAMDISK_MINOR);
194 return;
195 }
196 }
197
198
199
200
201
202
203 void rd_load(void)
204 {
205 struct inode inode;
206 struct file filp;
207
208
209 if (!rd_length)
210 return;
211 printk("RAMDISK: %d bytes, starting at 0x%p\n",
212 rd_length, rd_start);
213
214
215 if (MAJOR(ROOT_DEV) != FLOPPY_MAJOR)
216 return;
217
218
219 printk(KERN_NOTICE "VFS: Insert ramdisk floppy and press ENTER\n");
220 wait_for_keypress();
221
222 memset(&filp, 0, sizeof(filp));
223 memset(&inode, 0, sizeof(inode));
224 inode.i_rdev = ROOT_DEV;
225 filp.f_mode = 1;
226 filp.f_inode = &inode;
227 if(blkdev_open(&inode, &filp) == 0 ){
228 do_load();
229 if(filp.f_op && filp.f_op->release)
230 filp.f_op->release(&inode,&filp);
231 }
232 }