Subversion Repositories HelenOS

Rev

Go to most recent revision | Hide changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff Changes
2239 6312 d 20 h jancik /branches/arm/boot/arch/arm32/loader/  
/branches/arm/boot/arch/arm32/loader/mm.h
2238 6313 d 2 h kebrt /branches/arm/kernel/arch/arm32/ refactoring & comments & code standards  
/branches/arm/kernel/arch/arm32/include/mm/as.h
/branches/arm/kernel/arch/arm32/include/mm/asid.h
/branches/arm/kernel/arch/arm32/include/mm/frame.h
/branches/arm/kernel/arch/arm32/include/mm/memory_init.h
/branches/arm/kernel/arch/arm32/include/mm/page.h
/branches/arm/kernel/arch/arm32/include/mm/tlb.h
/branches/arm/kernel/arch/arm32/src/mm/as.c
/branches/arm/kernel/arch/arm32/src/mm/frame.c
/branches/arm/kernel/arch/arm32/src/mm/memory_init.c
/branches/arm/kernel/arch/arm32/src/mm/page.c
/branches/arm/kernel/arch/arm32/src/mm/tlb.c
2237 6313 d 3 h jermar /trunk/boot/arch/sparc64/silo/ Upgrade SILO to 1.4.13.  
/trunk/boot/arch/sparc64/silo/silo.tar.gz
2236 6313 d 4 h kebrt /branches/arm/boot/arch/arm32/loader/ refactoring & comments & code standards  
/branches/arm/boot/arch/arm32/loader/boot.S
/branches/arm/boot/arch/arm32/loader/main.c
/branches/arm/boot/arch/arm32/loader/mm.c
/branches/arm/boot/arch/arm32/loader/mm.h
2235 6313 d 6 h stepan /branches/arm/kernel/arch/arm32/ exception handling
simple interrupt processing
 
/branches/arm/kernel/arch/arm32/include/exception.h
/branches/arm/kernel/arch/arm32/include/interrupt.h
/branches/arm/kernel/arch/arm32/src/arm32.c
/branches/arm/kernel/arch/arm32/src/exception.c
/branches/arm/kernel/arch/arm32/src/start.S
2234 6314 d 6 h jancik /branches/arm/boot/arch/arm32/loader/ Alf: stabni kultura  
/branches/arm/boot/arch/arm32/loader/mm.c
/branches/arm/boot/arch/arm32/loader/mm.h
2233 6315 d 3 h decky /trunk/kernel/arch/ use the hlt instruction more properly  
/trunk/kernel/arch/amd64/include/asm.h
/trunk/kernel/arch/amd64/src/pm.c
/trunk/kernel/arch/ia32/include/asm.h
/trunk/kernel/arch/ia32/src/pm.c
2232 6315 d 4 h decky /trunk/kernel/arch/mips32/src/ add support for halt/reboot in MSIM  
/trunk/kernel/arch/mips32/src/mips32.c
2231 6315 d 8 h jermar /trunk/kernel/arch/sparc64/ Fix a nasty bug in the TLB miss handlers on sparc64.
After we no longer lock the kernel stack in the DTLB,
there is a real danger of nested DTLB misses. The nested
miss can very easily clobber the DTLB Tag Access register.
Therefore, the original miss may not read this register, but
it has to receive its value as an argument. The argument
value is saved in the trap table when it is guaranteed that
the nested TLB miss will not occur.
 
/trunk/kernel/arch/sparc64/include/mm/tlb.h
/trunk/kernel/arch/sparc64/include/trap/mmu.h
/trunk/kernel/arch/sparc64/src/mm/tlb.c
2230 6315 d 8 h jermar /trunk/uspace/ Remove printf() serialization from thread1 test in tester.
The agreement among developers seems to be that:
- there _must_ be a futex to serialize access to printf()
- there _must_ be pseudo thread serialization in printf()
- the best place for this is vprintf(), the one that goes to console
 
/trunk/uspace/libc/generic/io/printf_core.c
/trunk/uspace/libc/generic/io/vprintf.c
/trunk/uspace/tester/thread/thread1.c
2229 6315 d 10 h jermar /trunk/ Revert some of the changes introduced in revision 2209.
I think it is not correct to remove serialization of pseudo threads in printf_core.c.
With thread-level futex serialization, several pseudo threads running in one thread could easily deadlock
the task.

Add a dedicated futex serialization to thread1.c test only.
 
/trunk/kernel/generic/src/proc/thread.c
/trunk/uspace/libc/arch/sparc64/src/thread_entry.s
/trunk/uspace/libc/generic/io/printf_core.c
/trunk/uspace/libc/generic/io/vprintf.c
/trunk/uspace/tester/fault/fault1.c
/trunk/uspace/tester/fault/fault2.c
/trunk/uspace/tester/thread/thread1.c
2228 6315 d 11 h jermar /trunk/kernel/arch/sparc64/src/ Fix ticket #28.
In switch_to_userspace(), the uarg argument is in %i2, not in %i3.
 
/trunk/kernel/arch/sparc64/src/asm.S
2227 6315 d 18 h decky /trunk/kernel/ start shutdown infrastructure  
/trunk/kernel/generic/src/main/shutdown.c
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/src/pm.c
/trunk/kernel/arch/arm32/src/arm32.c
/trunk/kernel/arch/ia32/src/pm.c
/trunk/kernel/arch/ia32xen/src/ia32xen.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/mips32/src/mips32.c
/trunk/kernel/arch/ppc32/src/drivers/cuda.c
/trunk/kernel/arch/ppc64/src/ppc64.c
/trunk/kernel/arch/sparc64/src/sparc64.c
/trunk/kernel/generic/include/arch.h
/trunk/kernel/generic/include/proc/task.h
/trunk/kernel/generic/src/console/cmd.c
/trunk/kernel/generic/src/proc/task.c
/trunk/kernel/kernel.config
2226 6315 d 18 h decky /trunk/contrib/conf/ MIPS boot image has grown  
/trunk/contrib/conf/msim.conf
2225 6315 d 18 h decky /trunk/kernel/arch/mips32/ the bss and common sections have to be in .data output section to be properly generated in the binary image
(this might break IRIX, but it is already unmaintaned)
 
/trunk/kernel/arch/mips32/_link.ld.in
2224 6316 d 0 h decky /trunk/kernel/generic/src/console/ detach joined thread  
/trunk/kernel/generic/src/console/cmd.c
2223 6316 d 0 h decky /trunk/kernel/generic/src/ add mcall0 command (calling a function on each CPU)  
/trunk/kernel/generic/src/console/cmd.c
/trunk/kernel/generic/src/main/kinit.c
2222 6316 d 3 h decky /trunk/kernel/ map kernel pages explicitly as writable (this solves compatibility issues with Intel Core 2)
make VESA framebuffer initialization more robust
 
/trunk/kernel/arch/amd64/src/boot/boot.S
/trunk/kernel/arch/amd64/src/mm/page.c
/trunk/kernel/arch/ia32/src/boot/boot.S
/trunk/kernel/arch/ia32/src/mm/page.c
/trunk/kernel/arch/ia32/src/smp/smp.c
/trunk/kernel/arch/ia32xen/src/smp/smp.c
/trunk/kernel/arch/ppc32/src/mm/page.c
/trunk/kernel/arch/ppc64/src/mm/page.c
/trunk/kernel/genarch/src/acpi/acpi.c
/trunk/kernel/generic/src/mm/page.c
2221 6316 d 5 h decky /trunk/kernel/arch/ia32/src/boot/ fix typo in comment  
/trunk/kernel/arch/ia32/src/boot/boot.S
2220 6316 d 5 h decky /trunk/kernel/arch/ia32/src/boot/ check for PSE support, add error message on PSE not present
make initial mapping explicitly writeable, turn PAE explicitly off (just in case)
 
/trunk/kernel/arch/ia32/src/boot/boot.S

Show All