uml: clean up TASK_SIZE usage
[linux-2.6] / arch / um / kernel / initrd.c
1 /*
2  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/init.h"
7 #include "linux/bootmem.h"
8 #include "linux/initrd.h"
9 #include "asm/types.h"
10 #include "initrd.h"
11 #include "init.h"
12 #include "os.h"
13
14 /* Changed by uml_initrd_setup, which is a setup */
15 static char *initrd __initdata = NULL;
16
17 static int __init read_initrd(void)
18 {
19         void *area;
20         long long size;
21         int err;
22
23         if(initrd == NULL)
24                 return 0;
25
26         err = os_file_size(initrd, &size);
27         if(err)
28                 return 0;
29
30         area = alloc_bootmem(size);
31         if(area == NULL)
32                 return 0;
33
34         if(load_initrd(initrd, area, size) == -1)
35                 return 0;
36
37         initrd_start = (unsigned long) area;
38         initrd_end = initrd_start + size;
39         return 0;
40 }
41
42 __uml_postsetup(read_initrd);
43
44 static int __init uml_initrd_setup(char *line, int *add)
45 {
46         initrd = line;
47         return 0;
48 }
49
50 __uml_setup("initrd=", uml_initrd_setup,
51 "initrd=<initrd image>\n"
52 "    This is used to boot UML from an initrd image.  The argument is the\n"
53 "    name of the file containing the image.\n\n"
54 );
55
56 int load_initrd(char *filename, void *buf, int size)
57 {
58         int fd, n;
59
60         fd = os_open_file(filename, of_read(OPENFLAGS()), 0);
61         if(fd < 0){
62                 printk("Opening '%s' failed - err = %d\n", filename, -fd);
63                 return -1;
64         }
65         n = os_read_file(fd, buf, size);
66         if(n != size){
67                 printk("Read of %d bytes from '%s' failed, err = %d\n", size,
68                        filename, -n);
69                 return -1;
70         }
71
72         os_close_file(fd);
73         return 0;
74 }