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
3601 5681 d 17 h svoboda /trunk/kernel/generic/ Replace 'stop' in udebug_thread_t with 'go' for consistency with nomenclature.  
/trunk/kernel/generic/include/udebug/udebug.h
/trunk/kernel/generic/src/udebug/udebug.c
/trunk/kernel/generic/src/udebug/udebug_ops.c
3600 5681 d 17 h svoboda /trunk/kernel/generic/ Udebug comments - 'is go', not 'has go'. Missing periods.  
/trunk/kernel/generic/include/udebug/udebug.h
/trunk/kernel/generic/src/udebug/udebug.c
/trunk/kernel/generic/src/udebug/udebug_ops.c
3599 5681 d 21 h jermar /trunk/uspace/srv/console/ Do not typecast (sysarg_t *) to (int *). Especially on big endian 64-bit
machines, this does not have the intended effect.
 
/trunk/uspace/srv/console/console.c
3595 5684 d 11 h jermar /trunk/uspace/ Avoid unnecessary block reads in block_get().  
/trunk/uspace/lib/libblock/libblock.c
/trunk/uspace/lib/libblock/libblock.h
/trunk/uspace/srv/fs/fat/fat_fat.c
/trunk/uspace/srv/fs/fat/fat_fat.h
/trunk/uspace/srv/fs/fat/fat_ops.c
3594 5684 d 11 h svoboda /trunk/kernel/arch/ppc32/src/mm/ Handle page faults from userspace properly on ppc32, do not panic.  
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3587 5689 d 18 h jermar /trunk/kernel/arch/ppc64/src/mm/ Remove one more occurrence of "Page fault.\n".  
/trunk/kernel/arch/ppc64/src/mm/page.c
3586 5689 d 19 h jermar /trunk/kernel/arch/ Do not print "Page fault.\n" if a mapping is not found during TLB refill.  
/trunk/kernel/arch/mips32/src/mm/tlb.c
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3585 5689 d 20 h svoboda /trunk/ Fix bug #67. It was obviously all my fault - I allocated r3 for pcb_ptr, which was alredy used by uarg.  
/trunk/kernel/arch/ppc32/src/asm.S
/trunk/uspace/lib/libc/arch/ppc32/src/entry.s
/trunk/uspace/srv/loader/arch/ppc32/ppc32.s
3584 5689 d 21 h svoboda /trunk/kernel/arch/ppc32/src/mm/ Bugfix: A ppc32 task would hang if it touched unmapped memory - was calling printf() with address-space mutex held.  
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3583 5689 d 23 h vana /trunk/ IA64: Support for real frequency  
/trunk/boot/arch/ia64/loader/gefi/HelenOS/hello.c
/trunk/kernel/arch/ia64/include/bootinfo.h
/trunk/kernel/arch/ia64/include/drivers/it.h
/trunk/kernel/arch/ia64/src/drivers/it.c
3581 5691 d 9 h jermar /trunk/kernel/ Some cstyle.  
/trunk/kernel/genarch/src/kbd/ns16550.c
/trunk/kernel/generic/src/proc/thread.c
3580 5691 d 9 h jermar /trunk/kernel/arch/sparc64/include/ Accesses to memory mapped registers should use volatile pointers so that
the compiler doesn't even think of trying to be clever. Add memory barriers
and fixed cstyle.
 
/trunk/kernel/arch/sparc64/include/asm.h
/trunk/kernel/arch/sparc64/include/types.h
3579 5691 d 23 h vana /trunk/boot/arch/ia64/loader/gefi/HelenOS/ IA64 Bootloader Makefile fix  
/trunk/boot/arch/ia64/loader/gefi/HelenOS/Makefile
3578 5691 d 23 h vana /trunk/ Alfa of SMP support on IA64  
/trunk/kernel/arch/ia64/src/smp
/trunk/kernel/arch/ia64/src/smp/smp.c
/trunk/boot/arch/ia64/loader/Makefile
/trunk/boot/arch/ia64/loader/asm.S
/trunk/boot/arch/ia64/loader/boot.S
/trunk/boot/arch/ia64/loader/gefi/HelenOS/Makefile
/trunk/boot/arch/ia64/loader/gefi/HelenOS/hello.c
/trunk/boot/arch/ia64/loader/gefi/apps/Makefile
/trunk/boot/arch/ia64/loader/main.c
/trunk/boot/arch/ia64/loader/main.h
/trunk/kernel/arch/ia64/Makefile.inc
/trunk/kernel/arch/ia64/include/atomic.h
/trunk/kernel/arch/ia64/include/bootinfo.h
/trunk/kernel/arch/ia64/include/cpu.h
/trunk/kernel/arch/ia64/include/mm/page.h
/trunk/kernel/arch/ia64/src/drivers/it.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/ia64/src/mm/frame.c
/trunk/kernel/arch/ia64/src/mm/page.c
/trunk/kernel/arch/ia64/src/start.S
/trunk/kernel/generic/include/synch/spinlock.h
/trunk/kernel/generic/src/mm/tlb.c
/trunk/kernel/generic/src/proc/thread.c
3577 5691 d 23 h vana /trunk/kernel/ Support for serial port console on IA64 as a compensation for keyboard - based on SPARC ns16550 driver  
/trunk/kernel/arch/ia64/include/asm.h
/trunk/kernel/arch/sparc64/include/asm.h
/trunk/kernel/arch/sparc64/include/drivers/ns16550.h
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/genarch/include/kbd/ns16550.h
/trunk/kernel/genarch/src/kbd/key.c
/trunk/kernel/genarch/src/kbd/ns16550.c
/trunk/kernel/kernel.config
3576 5692 d 0 h vana /trunk/kernel/generic/src/main/ On Itanium there is nead to preserve at least gp when switching APs to separate stack. Safer way is to save all context and to do it on all platforms.  
/trunk/kernel/generic/src/main/main.c
3575 5693 d 10 h jermar /trunk/uspace/ libfs create operation should take the device handle as argument.  
/trunk/uspace/lib/libfs/libfs.c
/trunk/uspace/lib/libfs/libfs.h
/trunk/uspace/srv/fs/fat/fat_ops.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
3574 5693 d 10 h jermar /trunk/uspace/srv/fs/fat/ Move common code to dedicated functions so that it can be easily reused.  
/trunk/uspace/srv/fs/fat/fat_idx.c
/trunk/uspace/srv/fs/fat/fat_ops.c
3573 5693 d 12 h jermar /trunk/uspace/srv/fs/fat/ VFS_WRITE has two return arguments on success.  
/trunk/uspace/srv/fs/fat/fat_fat.c
/trunk/uspace/srv/fs/fat/fat_ops.c
3572 5693 d 14 h jermar /trunk/uspace/srv/fs/fat/ Finish implementation of fat_truncate() and fix several warnings.  
/trunk/uspace/srv/fs/fat/fat_fat.c
/trunk/uspace/srv/fs/fat/fat_fat.h
/trunk/uspace/srv/fs/fat/fat_ops.c

Show All