]>
git.saurik.com Git - apple/xnu.git/blob - bsd/dev/i386/unix_startup.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1992,7 NeXT Computer, Inc.
25 * Unix data structure initialization.
29 #include <mach/mach_types.h>
31 #include <vm/vm_kern.h>
32 #include <mach/vm_prot.h>
34 #include <sys/param.h>
36 #include <sys/clist.h>
38 #include <sys/systm.h>
40 #include <dev/ppc/cons.h>
42 extern vm_map_t mb_map
;
45 * Declare these as initialized data so we can patch them.
56 int srv
= 0; /* Flag indicates a server boot when set */
60 vm_map_t bufferhdr_map
;
65 vm_offset_t firstaddr
;
70 nbuf
= atop(mem_size
/ 100); /* 1% */
83 size
= (nbuf
+ niobuf
) * sizeof (struct buf
);
84 size
= round_page(size
);
86 ret
= kmem_suballoc(kernel_map
,
93 if (ret
!= KERN_SUCCESS
)
94 panic("Failed to create bufferhdr_map");
96 ret
= kernel_memory_allocate(bufferhdr_map
,
100 KMA_HERE
| KMA_KOBJECT
);
102 if (ret
!= KERN_SUCCESS
)
103 panic("Failed to allocate bufferhdr_map");
105 buf
= (struct buf
* )firstaddr
;
108 if (mem_size
> (64 * 1024 * 1024)) {
110 extern u_long tcp_sendspace
;
111 extern u_long tcp_recvspace
;
113 if ((nmbclusters
= ncl
) == 0) {
114 if ((nmbclusters
= ((mem_size
/ 16) / MCLBYTES
)) > 4096)
117 if ((scale
= nmbclusters
/ NMBCLUSTERS
) > 1) {
118 tcp_sendspace
*= scale
;
119 tcp_recvspace
*= scale
;
121 if (tcp_sendspace
> (32 * 1024))
122 tcp_sendspace
= 32 * 1024;
123 if (tcp_recvspace
> (32 * 1024))
124 tcp_recvspace
= 32 * 1024;
135 vm_offset_t firstaddr
;
137 cons
.t_dev
= makedev(12, 0);
141 ret
= kmem_suballoc(kernel_map
,
142 (vm_offset_t
*)&mbutl
,
143 (vm_size_t
) (nmbclusters
* MCLBYTES
),
148 if (ret
!= KERN_SUCCESS
)
149 panic("Failed to allocate mb_map\n");
152 * Set up buffers, so they can be used to read disk labels.