- Timestamp:
- 2009-11-16T21:24:28Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 18baf9c0
- Parents:
- 5f678b1c (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel
- Files:
-
- 2 added
- 16 edited
-
Makefile (modified) (1 diff)
-
Makefile.build (added)
-
Makefile.common (added)
-
arch/amd64/include/mm/page.h (modified) (1 diff)
-
arch/amd64/src/cpu/cpu.c (modified) (2 diffs)
-
arch/ia32/include/cpu.h (modified) (2 diffs)
-
arch/ia32/include/cpuid.h (modified) (1 diff)
-
arch/ia32/include/mm/page.h (modified) (1 diff)
-
arch/ia32/src/boot/boot.S (modified) (2 diffs)
-
arch/ia32/src/cpu/cpu.c (modified) (5 diffs)
-
arch/ia32/src/proc/scheduler.c (modified) (1 diff)
-
arch/ia32/src/userspace.c (modified) (1 diff)
-
arch/mips32/include/mm/page.h (modified) (1 diff)
-
arch/ppc32/include/mm/page.h (modified) (1 diff)
-
generic/include/context.h (modified) (2 diffs)
-
generic/src/console/cmd.c (modified) (9 diffs)
-
generic/src/console/console.c (modified) (1 diff)
-
generic/src/ipc/kbox.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r5f678b1c r5a4fef9 27 27 # 28 28 29 include Makefile.common 29 30 30 ## Include configuration 31 # 31 .PHONY: all clean 32 32 33 include ../version 34 -include ../Makefile.config 35 -include ../config.defs 36 37 INCLUDES = generic/include 38 OPTIMIZATION = 3 39 40 ifndef CROSS_PREFIX 41 CROSS_PREFIX = /usr/local 42 endif 43 44 ## Common compiler flags 45 # 46 47 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__ 48 49 GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 50 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 51 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 52 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \ 53 -pipe 54 55 ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 56 -ffreestanding -fno-builtin -nostdlib -nostdinc -Wall -Wmissing-prototypes \ 57 -Werror -wd170 58 59 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ 60 -xnolib -xc99=all -features=extensions \ 61 -erroff=E_ZERO_SIZED_STRUCT_UNION 62 63 CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 64 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 65 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 66 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -pipe \ 67 -arch $(CLANG_ARCH) 68 69 LFLAGS = -M 70 AFLAGS = 71 72 -include arch/$(KARCH)/Makefile.inc 73 -include genarch/Makefile.inc 74 75 ## The at-sign 76 # 77 # The $(ATSIGN) variable holds the ASCII character representing the at-sign 78 # ('@') used in various $(AS) constructs (e.g. @progbits). On architectures that 79 # don't use '@' for starting a comment, $(ATSIGN) is merely '@'. However, on 80 # those that do use it for starting a comment (e.g. arm32), $(ATSIGN) must be 81 # defined as the percentile-sign ('%') in the architecture-dependent 82 # Makefile.inc. 83 # 84 ATSIGN ?= @ 85 86 ## Cross-platform assembly to start a symtab.data section 87 # 88 SYMTAB_SECTION=".section symtab.data, \"a\", $(ATSIGN)progbits;" 89 90 ## Simple detection for the type of the host system 91 # 92 HOST = $(shell uname) 93 94 ## On Solaris, some utilities have slightly different names 95 # 96 ifeq ($(HOST),SunOS) 97 BINUTILS_PREFIX = "g" 98 else 99 BINUTILS_PREFIX = "" 100 endif 101 102 ## Toolchain configuration 103 # 104 105 ifeq ($(COMPILER),gcc_native) 106 CC = gcc 107 GCC = $(CC) 108 AS = $(BINUTILS_PREFIX)as 109 LD = $(BINUTILS_PREFIX)ld 110 OBJCOPY = $(BINUTILS_PREFIX)objcopy 111 OBJDUMP = $(BINUTILS_PREFIX)objdump 112 LIBDIR = /usr/lib 113 CFLAGS = $(GCC_CFLAGS) 114 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 115 endif 116 117 ifeq ($(COMPILER),gcc_cross) 118 CC = $(TOOLCHAIN_DIR)/bin/$(TARGET)-gcc 119 GCC = $(CC) 120 AS = $(TOOLCHAIN_DIR)/bin/$(TARGET)-as 121 LD = $(TOOLCHAIN_DIR)/bin/$(TARGET)-ld 122 OBJCOPY = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objcopy 123 OBJDUMP = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objdump 124 LIBDIR = $(TOOLCHAIN_DIR)/lib 125 CFLAGS = $(GCC_CFLAGS) 126 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 127 endif 128 129 ifeq ($(COMPILER),icc) 130 CC = icc 131 GCC = gcc 132 AS = as 133 LD = ld 134 OBJCOPY = objcopy 135 OBJDUMP = objdump 136 LIBDIR = /usr/lib 137 CFLAGS = $(ICC_CFLAGS) 138 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 139 endif 140 141 ifeq ($(COMPILER),suncc) 142 CC = suncc 143 GCC = gcc 144 AS = $(BINUTILS_PREFIX)as 145 LD = $(BINUTILS_PREFIX)ld 146 OBJCOPY = $(BINUTILS_PREFIX)objcopy 147 OBJDUMP = $(BINUTILS_PREFIX)objdump 148 LIBDIR = /usr/lib 149 CFLAGS = $(SUNCC_CFLAGS) 150 DEFS += $(CONFIG_DEFS) 151 DEPEND_DEFS = $(DEFS) 152 endif 153 154 ifeq ($(COMPILER),clang) 155 CC = clang 156 GCC = gcc 157 AS = $(BINUTILS_PREFIX)as 158 LD = $(BINUTILS_PREFIX)ld 159 OBJCOPY = $(BINUTILS_PREFIX)objcopy 160 OBJDUMP = $(BINUTILS_PREFIX)objdump 161 LIBDIR = /usr/lib 162 CFLAGS = $(CLANG_CFLAGS) 163 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 164 endif 165 166 ## Generic kernel sources 167 # 168 169 GENERIC_SOURCES = \ 170 generic/src/adt/avl.c \ 171 generic/src/adt/bitmap.c \ 172 generic/src/adt/btree.c \ 173 generic/src/adt/hash_table.c \ 174 generic/src/adt/list.c \ 175 generic/src/console/chardev.c \ 176 generic/src/console/console.c \ 177 generic/src/cpu/cpu.c \ 178 generic/src/ddi/ddi.c \ 179 generic/src/ddi/irq.c \ 180 generic/src/ddi/device.c \ 181 generic/src/debug/symtab.c \ 182 generic/src/interrupt/interrupt.c \ 183 generic/src/main/main.c \ 184 generic/src/main/kinit.c \ 185 generic/src/main/uinit.c \ 186 generic/src/main/version.c \ 187 generic/src/main/shutdown.c \ 188 generic/src/proc/program.c \ 189 generic/src/proc/scheduler.c \ 190 generic/src/proc/thread.c \ 191 generic/src/proc/task.c \ 192 generic/src/proc/the.c \ 193 generic/src/proc/tasklet.c \ 194 generic/src/syscall/syscall.c \ 195 generic/src/syscall/copy.c \ 196 generic/src/mm/buddy.c \ 197 generic/src/mm/frame.c \ 198 generic/src/mm/page.c \ 199 generic/src/mm/tlb.c \ 200 generic/src/mm/as.c \ 201 generic/src/mm/backend_anon.c \ 202 generic/src/mm/backend_elf.c \ 203 generic/src/mm/backend_phys.c \ 204 generic/src/mm/slab.c \ 205 generic/src/lib/func.c \ 206 generic/src/lib/memstr.c \ 207 generic/src/lib/sort.c \ 208 generic/src/lib/string.c \ 209 generic/src/lib/elf.c \ 210 generic/src/lib/rd.c \ 211 generic/src/printf/printf_core.c \ 212 generic/src/printf/printf.c \ 213 generic/src/printf/snprintf.c \ 214 generic/src/printf/vprintf.c \ 215 generic/src/printf/vsnprintf.c \ 216 generic/src/time/clock.c \ 217 generic/src/time/timeout.c \ 218 generic/src/time/delay.c \ 219 generic/src/preempt/preemption.c \ 220 generic/src/synch/spinlock.c \ 221 generic/src/synch/condvar.c \ 222 generic/src/synch/rwlock.c \ 223 generic/src/synch/mutex.c \ 224 generic/src/synch/semaphore.c \ 225 generic/src/synch/smc.c \ 226 generic/src/synch/waitq.c \ 227 generic/src/synch/futex.c \ 228 generic/src/smp/ipi.c \ 229 generic/src/smp/smp.c \ 230 generic/src/ipc/ipc.c \ 231 generic/src/ipc/sysipc.c \ 232 generic/src/ipc/ipcrsc.c \ 233 generic/src/ipc/irq.c \ 234 generic/src/ipc/event.c \ 235 generic/src/security/cap.c \ 236 generic/src/sysinfo/sysinfo.c 237 238 ## Kernel console support 239 # 240 241 ifeq ($(CONFIG_KCONSOLE),y) 242 GENERIC_SOURCES += \ 243 generic/src/console/kconsole.c \ 244 generic/src/console/cmd.c 245 endif 246 247 ## Udebug interface sources 248 # 249 250 ifeq ($(CONFIG_UDEBUG),y) 251 GENERIC_SOURCES += \ 252 generic/src/ipc/kbox.c \ 253 generic/src/udebug/udebug.c \ 254 generic/src/udebug/udebug_ops.c \ 255 generic/src/udebug/udebug_ipc.c 256 endif 257 258 ## Test sources 259 # 260 261 ifeq ($(CONFIG_TEST),y) 262 CFLAGS += -Itest/ 263 GENERIC_SOURCES += \ 264 test/test.c \ 265 test/atomic/atomic1.c \ 266 test/btree/btree1.c \ 267 test/avltree/avltree1.c \ 268 test/fault/fault1.c \ 269 test/mm/falloc1.c \ 270 test/mm/falloc2.c \ 271 test/mm/mapping1.c \ 272 test/mm/slab1.c \ 273 test/mm/slab2.c \ 274 test/synch/rwlock1.c \ 275 test/synch/rwlock2.c \ 276 test/synch/rwlock3.c \ 277 test/synch/rwlock4.c \ 278 test/synch/rwlock5.c \ 279 test/synch/semaphore1.c \ 280 test/synch/semaphore2.c \ 281 test/print/print1.c \ 282 test/print/print2.c \ 283 test/print/print3.c \ 284 test/print/print4.c \ 285 test/thread/thread1.c \ 286 test/sysinfo/sysinfo1.c 287 288 ifeq ($(KARCH),mips32) 289 GENERIC_SOURCES += test/debug/mips1.c 290 else 291 GENERIC_SOURCES += test/debug/mips1_skip.c 292 endif 293 294 ifeq ($(KARCH),ia64) 295 GENERIC_SOURCES += test/mm/purge1.c 296 else 297 GENERIC_SOURCES += test/mm/purge1_skip.c 298 endif 299 300 ifeq ($(CONFIG_FPU),y) 301 ifeq ($(KARCH),ia32) 302 TEST_FPU1 = y 303 TEST_SSE1 = y 304 GENERIC_SOURCES += test/fpu/fpu1_x86.c 305 endif 306 307 ifeq ($(KARCH),amd64) 308 TEST_FPU1 = y 309 TEST_SSE1 = y 310 GENERIC_SOURCES += test/fpu/fpu1_x86.c 311 endif 312 313 ifeq ($(KARCH),ia64) 314 TEST_FPU1 = y 315 GENERIC_SOURCES += test/fpu/fpu1_ia64.c 316 endif 317 318 ifeq ($(KARCH),mips32) 319 TEST_MIPS2 = y 320 endif 321 endif 322 323 ifneq ($(TEST_FPU1),y) 324 GENERIC_SOURCES += test/fpu/fpu1_skip.c 325 endif 326 327 ifeq ($(TEST_SSE1),y) 328 GENERIC_SOURCES += test/fpu/sse1.c 329 else 330 GENERIC_SOURCES += test/fpu/sse1_skip.c 331 endif 332 333 ifeq ($(TEST_MIPS2),y) 334 GENERIC_SOURCES += test/fpu/mips2.c 335 else 336 GENERIC_SOURCES += test/fpu/mips2_skip.c 337 endif 338 339 endif 340 341 GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) 342 ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) 343 GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES))) 344 345 ifeq ($(CONFIG_SYMTAB),y) 346 SYMTAB_OBJECTS := generic/src/debug/real_map.o 347 else 348 SYMTAB_OBJECTS := 349 endif 350 351 .PHONY: all build clean archlinks depend disasm 352 353 all: ../Makefile.config ../config.h ../config.defs 354 -rm Makefile.depend 355 $(MAKE) -C . build 356 357 build: kernel.bin disasm 358 359 -include Makefile.depend 33 all: ../version ../Makefile.config ../config.h ../config.defs 34 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 35 $(MAKE) -f Makefile.build 360 36 361 37 clean: 362 -rm -f kernel.bin kernel.raw kernel.map kernel.map.pre kernel.objdump kernel.disasm generic/src/debug/real_map.bin Makefile.depend* generic/include/arch generic/include/genarch arch/$(KARCH)/_link.ld38 rm -f $(DEPEND) $(DEPEND_PREV) $(RAW) $(BIN) $(MAP) $(MAP_PREV) $(DISASM) $(DUMP) $(REAL_MAP).* $(ARCH_INCLUDE) $(GENARCH_INCLUDE) arch/*/_link.ld 363 39 find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \; 364 for arch in arch/* ; do \365 [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null ; \366 done ; exit 0367 368 archlinks:369 ln -sfn ../../arch/$(KARCH)/include/ generic/include/arch370 ln -sfn ../../genarch/include/ generic/include/genarch371 372 depend: archlinks373 -makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null374 375 arch/$(KARCH)/_link.ld: arch/$(KARCH)/_link.ld.in376 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $< | grep -v "^\#" > $@377 378 generic/src/debug/real_map.bin: depend arch/$(KARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)379 echo $(SYMTAB_SECTION) | $(AS) $(AFLAGS) -o generic/src/debug/empty_map.o380 $(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre381 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump382 tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin383 # Do it once again, this time to get correct even the symbols384 # on architectures, that have bss after symtab385 echo $(SYMTAB_SECTION)" .incbin \"$@\"" | $(AS) $(AFLAGS) -o generic/src/debug/sizeok_map.o386 $(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre387 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump388 tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin389 390 generic/src/debug/real_map.o: generic/src/debug/real_map.bin391 echo $(SYMTAB_SECTION)" .incbin \"$<\"" | $(AS) $(AFLAGS) -o $@392 393 kernel.raw: depend arch/$(KARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(SYMTAB_OBJECTS)394 $(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SYMTAB_OBJECTS) -o $@ -Map kernel.map395 396 kernel.bin: kernel.raw397 $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin398 399 disasm: kernel.raw400 $(OBJDUMP) -d kernel.raw > kernel.disasm401 402 %.o: %.S403 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@404 405 %.o: %.s406 $(AS) $(AFLAGS) $< -o $@407 408 #409 # The FPU tests are the only objects for which we allow the compiler to generate410 # FPU instructions.411 #412 test/fpu/%.o: test/fpu/%.c413 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@414 415 #416 # Ordinary objects.417 #418 %.o: %.c419 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@ -
kernel/arch/amd64/include/mm/page.h
r5f678b1c r5a4fef9 177 177 #define PFERR_CODE_ID (1 << 4) 178 178 179 static inline int get_pt_flags(pte_t *pt, size_t i)179 static inline unsigned int get_pt_flags(pte_t *pt, size_t i) 180 180 { 181 181 pte_t *p = &pt[i]; -
kernel/arch/amd64/src/cpu/cpu.c
r5f678b1c r5a4fef9 130 130 CPU->arch.vendor = VendorUnknown; 131 131 if (has_cpuid()) { 132 cpuid( 0, &info);132 cpuid(INTEL_CPUID_LEVEL, &info); 133 133 134 134 /* … … 150 150 } 151 151 152 cpuid( 1, &info);152 cpuid(INTEL_CPUID_STANDARD, &info); 153 153 CPU->arch.family = (info.cpuid_eax >> 8) & 0xf; 154 154 CPU->arch.model = (info.cpuid_eax >> 4) & 0xf; -
kernel/arch/ia32/include/cpu.h
r5f678b1c r5a4fef9 50 50 #include <arch/pm.h> 51 51 #include <arch/asm.h> 52 #include <arch/cpuid.h> 52 53 53 54 typedef struct { … … 56 57 unsigned int model; 57 58 unsigned int stepping; 59 cpuid_feature_info fi; 60 58 61 tss_t *tss; 59 62 -
kernel/arch/ia32/include/cpuid.h
r5f678b1c r5a4fef9 63 63 64 64 struct __cpuid_feature_info { 65 unsigned : 23; 65 unsigned : 11; 66 unsigned sep : 1; 67 unsigned : 11; 66 68 unsigned mmx : 1; 67 69 unsigned fxsr : 1; -
kernel/arch/ia32/include/mm/page.h
r5f678b1c r5a4fef9 146 146 #define PFERR_CODE_RSVD (1 << 3) 147 147 148 static inline int get_pt_flags(pte_t *pt, size_t i)148 static inline unsigned int get_pt_flags(pte_t *pt, size_t i) 149 149 { 150 150 pte_t *p = &pt[i]; -
kernel/arch/ia32/src/boot/boot.S
r5f678b1c r5a4fef9 85 85 pse_supported: 86 86 87 bt $(INTEL_SEP), %edx88 jc sep_supported89 90 movl $sep_msg, %esi91 jmp error_halt92 93 sep_supported:94 95 87 #include "vesa_prot.inc" 96 88 … … 225 217 .asciz "Page Size Extension not supported. System halted." 226 218 227 sep_msg:228 .asciz "SYSENTER/SYSEXIT not supported. System halted." -
kernel/arch/ia32/src/cpu/cpu.c
r5f678b1c r5a4fef9 92 92 void cpu_arch_init(void) 93 93 { 94 cpuid_feature_info fi;95 94 cpuid_extended_feature_info efi; 96 95 cpu_info_t info; … … 102 101 CPU->fpu_owner = NULL; 103 102 104 cpuid( 1, &info);103 cpuid(INTEL_CPUID_STANDARD, &info); 105 104 106 fi.word = info.cpuid_edx;105 CPU->arch.fi.word = info.cpuid_edx; 107 106 efi.word = info.cpuid_ecx; 108 107 109 if ( fi.bits.fxsr)108 if (CPU->arch.fi.bits.fxsr) 110 109 fpu_fxsr(); 111 110 else 112 111 fpu_fsr(); 113 112 114 if ( fi.bits.sse) {113 if (CPU->arch.fi.bits.sse) { 115 114 asm volatile ( 116 115 "mov %%cr4, %[help]\n" … … 122 121 } 123 122 124 /* Setup fast SYSENTER/SYSEXIT syscalls */ 125 syscall_setup_cpu(); 123 if (CPU->arch.fi.bits.sep) { 124 /* Setup fast SYSENTER/SYSEXIT syscalls */ 125 syscall_setup_cpu(); 126 } 126 127 } 127 128 … … 132 133 CPU->arch.vendor = VendorUnknown; 133 134 if (has_cpuid()) { 134 cpuid( 0, &info);135 cpuid(INTEL_CPUID_LEVEL, &info); 135 136 136 137 /* … … 150 151 CPU->arch.vendor = VendorIntel; 151 152 152 cpuid( 1, &info);153 cpuid(INTEL_CPUID_STANDARD, &info); 153 154 CPU->arch.family = (info.cpuid_eax >> 8) & 0x0f; 154 155 CPU->arch.model = (info.cpuid_eax >> 4) & 0x0f; -
kernel/arch/ia32/src/proc/scheduler.c
r5f678b1c r5a4fef9 61 61 SP_DELTA]; 62 62 63 /* Set kernel stack for CP3 -> CPL0 switch via SYSENTER */ 64 write_msr(IA32_MSR_SYSENTER_ESP, kstk); 63 if (CPU->arch.fi.bits.sep) { 64 /* Set kernel stack for CP3 -> CPL0 switch via SYSENTER */ 65 write_msr(IA32_MSR_SYSENTER_ESP, kstk); 66 } 65 67 66 68 /* Set kernel stack for CPL3 -> CPL0 switch via interrupt */ -
kernel/arch/ia32/src/userspace.c
r5f678b1c r5a4fef9 70 70 "movl %[uarg], %%eax\n" 71 71 72 /* %e bxis defined to hold pcb_ptr - set it to 0 */73 "xorl %%e bx, %%ebx\n"72 /* %edi is defined to hold pcb_ptr - set it to 0 */ 73 "xorl %%edi, %%edi\n" 74 74 75 75 "iret\n" -
kernel/arch/mips32/include/mm/page.h
r5f678b1c r5a4fef9 141 141 #include <arch/exception.h> 142 142 143 static inline int get_pt_flags(pte_t *pt, size_t i)143 static inline unsigned int get_pt_flags(pte_t *pt, size_t i) 144 144 { 145 145 pte_t *p = &pt[i]; -
kernel/arch/ppc32/include/mm/page.h
r5f678b1c r5a4fef9 131 131 #include <arch/interrupt.h> 132 132 133 static inline int get_pt_flags(pte_t *pt, size_t i)133 static inline unsigned int get_pt_flags(pte_t *pt, size_t i) 134 134 { 135 135 pte_t *p = &pt[i]; -
kernel/generic/include/context.h
r5f678b1c r5a4fef9 51 51 /** Save register context. 52 52 * 53 * Save current register context (including stack pointers) 54 * to context structure. 55 * 56 * Note that call to context_restore() will return at the same 53 * Save the current register context (including stack pointer) to a context 54 * structure. A subsequent call to context_restore() will return to the same 57 55 * address as the corresponding call to context_save(). 58 56 * 59 * This MUST be a macro, gcc -O0 does not inline functions even 60 * if they are marked inline and context_save_arch must be called 61 * from level <= that when context_restore is called. 57 * Note that context_save_arch() must reuse the stack frame of the function 58 * which called context_save(). We guarantee this by: 62 59 * 63 * @param c Context structure. 60 * a) implementing context_save_arch() in assembly so that it does not create 61 * its own stack frame, and by 62 * b) defining context_save() as a macro because the inline keyword is just a 63 * hint for the compiler, not a real constraint; the application of a macro 64 * will definitely not create a stack frame either. 64 65 * 65 * @return context_save() returns 1, context_restore() returns 0. 66 * To imagine what could happen if there were some extra stack frames created 67 * either by context_save() or context_save_arch(), we need to realize that the 68 * sp saved in the contex_t structure points to the current stack frame as it 69 * existed when context_save_arch() was executing. After the return from 70 * context_save_arch() and context_save(), any extra stack frames created by 71 * these functions will be destroyed and their contents sooner or later 72 * overwritten by functions called next. Any attempt to restore to a context 73 * saved like that would therefore lead to a disaster. 74 * 75 * @param c Context structure. 76 * 77 * @return context_save() returns 1, context_restore() returns 0. 66 78 */ 67 79 #define context_save(c) context_save_arch(c) … … 69 81 /** Restore register context. 70 82 * 71 * Restore previously saved register context (including stack pointers)72 * fromcontext structure.83 * Restore a previously saved register context (including stack pointer) from 84 * a context structure. 73 85 * 74 * Note that this function does not normally return. 75 * Instead, it returns at the same address as the 76 * corresponding call to context_save(), the only 77 * difference being return value. 86 * Note that this function does not normally return. Instead, it returns to the 87 * same address as the corresponding call to context_save(), the only difference 88 * being return value. 78 89 * 79 * @param c Context structure.90 * @param c Context structure. 80 91 */ 81 92 static inline void context_restore(context_t *c) -
kernel/generic/src/console/cmd.c
r5f678b1c r5a4fef9 409 409 }; 410 410 411 /* Data and methods for 'kill' command */ 412 static int cmd_kill(cmd_arg_t *argv); 413 static cmd_arg_t kill_argv = { 414 .type = ARG_TYPE_INT, 415 }; 416 static cmd_info_t kill_info = { 417 .name = "kill", 418 .description = "kill <taskid> Kill a task.", 419 .func = cmd_kill, 420 .argc = 1, 421 .argv = &kill_argv 422 }; 423 411 424 /* Data and methods for 'zone' command */ 412 425 static int cmd_zone(cmd_arg_t *argv); … … 459 472 &help_info, 460 473 &ipc_info, 474 &kill_info, 461 475 &set4_info, 462 476 &slabs_info, … … 848 862 * @return Always 1 849 863 */ 850 int cmd_slabs(cmd_arg_t * argv) { 864 int cmd_slabs(cmd_arg_t * argv) 865 { 851 866 slab_print_list(); 852 867 return 1; … … 860 875 * @return Always 1 861 876 */ 862 int cmd_threads(cmd_arg_t * argv) { 877 int cmd_threads(cmd_arg_t * argv) 878 { 863 879 thread_print_list(); 864 880 return 1; … … 871 887 * @return Always 1 872 888 */ 873 int cmd_tasks(cmd_arg_t * argv) { 889 int cmd_tasks(cmd_arg_t * argv) 890 { 874 891 task_print_list(); 875 892 return 1; … … 882 899 * @return Always 1 883 900 */ 884 int cmd_sched(cmd_arg_t * argv) { 901 int cmd_sched(cmd_arg_t * argv) 902 { 885 903 sched_print_list(); 886 904 return 1; … … 893 911 * return Always 1 894 912 */ 895 int cmd_zones(cmd_arg_t * argv) { 913 int cmd_zones(cmd_arg_t * argv) 914 { 896 915 zone_print_list(); 897 916 return 1; … … 904 923 * return Always 1 905 924 */ 906 int cmd_zone(cmd_arg_t * argv) { 925 int cmd_zone(cmd_arg_t * argv) 926 { 907 927 zone_print_one(argv[0].intval); 908 928 return 1; … … 915 935 * return Always 1 916 936 */ 917 int cmd_ipc(cmd_arg_t * argv) { 937 int cmd_ipc(cmd_arg_t * argv) 938 { 918 939 ipc_print_task(argv[0].intval); 919 940 return 1; 920 941 } 921 942 943 /** Command for killing a task 944 * 945 * @param argv Integer argument from cmdline expected 946 * 947 * return 0 on failure, 1 on success. 948 */ 949 int cmd_kill(cmd_arg_t * argv) 950 { 951 if (task_kill(argv[0].intval) != EOK) 952 return 0; 953 954 return 1; 955 } 922 956 923 957 /** Command for listing processors. -
kernel/generic/src/console/console.c
r5f678b1c r5a4fef9 319 319 320 320 if (size > PAGE_SIZE) 321 return ELIMIT;321 return (unative_t) ELIMIT; 322 322 323 323 if (size > 0) { 324 324 data = (char *) malloc(size + 1, 0); 325 325 if (!data) 326 return ENOMEM;326 return (unative_t) ENOMEM; 327 327 328 328 rc = copy_from_uspace(data, buf, size); 329 329 if (rc) { 330 330 free(data); 331 return rc;331 return (unative_t) rc; 332 332 } 333 333 data[size] = 0; -
kernel/generic/src/ipc/kbox.c
r5f678b1c r5a4fef9 137 137 /* Only detach kbox thread unless already terminating. */ 138 138 mutex_lock(&TASK->kb.cleanup_lock); 139 if ( &TASK->kb.finished == false) {139 if (TASK->kb.finished == false) { 140 140 /* Detach kbox thread so it gets freed from memory. */ 141 141 thread_detach(TASK->kb.thread);
Note:
See TracChangeset
for help on using the changeset viewer.
