3bc6d7df06
. the total amount of memory in the system didn't include the memory used by the boot-time modules and some dynamic allocation by the kernel at boot time (to map in VM). especially apparent on our ARM board with 'only' 512MB of memory and a huge ramdisk. . also: *add* the VM loaded module to the freelist after it has been allocated for & mapped in instead of cutting it *out* of the freelist! so we get a few more MB free.. Change-Id: If37ac32b21c9d38610830e21421264da4f20bc4f
48 lines
2 KiB
C
48 lines
2 KiB
C
|
|
#ifndef _MINIX_PARAM_H
|
|
#define _MINIX_PARAM_H 1
|
|
|
|
#include <minix/com.h>
|
|
#include <minix/const.h>
|
|
|
|
/* Number of processes contained in the system image. */
|
|
#define NR_BOOT_PROCS (NR_TASKS + LAST_SPECIAL_PROC_NR + 1)
|
|
|
|
/* This is used to obtain system information through SYS_GETINFO. */
|
|
#define MAXMEMMAP 40
|
|
typedef struct kinfo {
|
|
/* Straight multiboot-provided info */
|
|
multiboot_info_t mbi;
|
|
multiboot_module_t module_list[MULTIBOOT_MAX_MODS];
|
|
multiboot_memory_map_t memmap[MAXMEMMAP]; /* free mem list */
|
|
phys_bytes mem_high_phys;
|
|
int mmap_size;
|
|
|
|
/* Multiboot-derived */
|
|
int mods_with_kernel; /* no. of mods incl kernel */
|
|
int kern_mod; /* which one is kernel */
|
|
|
|
/* Minix stuff, started at bootstrap phase */
|
|
int freepde_start; /* lowest pde unused kernel pde */
|
|
char param_buf[MULTIBOOT_PARAM_BUF_SIZE];
|
|
|
|
/* Minix stuff */
|
|
struct kmessages *kmessages;
|
|
int do_serial_debug; /* system serial output */
|
|
int serial_debug_baud; /* serial baud rate */
|
|
int minix_panicing; /* are we panicing? */
|
|
vir_bytes user_sp; /* where does kernel want stack set */
|
|
vir_bytes user_end; /* upper proc limit */
|
|
vir_bytes vir_kern_start; /* kernel addrspace starts */
|
|
vir_bytes bootstrap_start, bootstrap_len;
|
|
struct boot_image boot_procs[NR_BOOT_PROCS];
|
|
int nr_procs; /* number of user processes */
|
|
int nr_tasks; /* number of kernel tasks */
|
|
char release[6]; /* kernel release number */
|
|
char version[6]; /* kernel version number */
|
|
int vm_allocated_bytes; /* allocated by kernel to load vm */
|
|
int kernel_allocated_bytes; /* used by kernel */
|
|
int kernel_allocated_bytes_dynamic; /* used by kernel (runtime) */
|
|
} kinfo_t;
|
|
|
|
#endif
|