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
4409 5499 d 21 h jermar /trunk/uspace/ Rudimentary support for non-root mounts.  
/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_ops.c
/trunk/uspace/srv/vfs/vfs_ops.c
4407 5499 d 21 h jermar /trunk/ Add IPC_M_CONNECTION_CLONE and IPC_M_CONNECT_ME.  
/trunk/kernel/generic/include/ipc/ipc.h
/trunk/kernel/generic/include/ipc/ipcrsc.h
/trunk/kernel/generic/src/ipc/ipcrsc.c
/trunk/kernel/generic/src/ipc/kbox.c
/trunk/kernel/generic/src/ipc/sysipc.c
/trunk/uspace/lib/libc/generic/async.c
4404 5499 d 22 h jermar /trunk/uspace/lib/libc/generic/ Fix ipc_forward_slow().  
/trunk/uspace/lib/libc/generic/ipc.c
4403 5500 d 0 h svoboda /trunk/uspace/lib/libc/generic/ pio_enable() was not allocating address space properly (unless sz <= PAGE_SIZE).  
/trunk/uspace/lib/libc/generic/ddi.c
4401 5500 d 23 h svoboda /trunk/uspace/ C binding for devmap. Gets rid of duplicate code.  
/trunk/uspace/lib/libc/generic/devmap.c
/trunk/uspace/lib/libc/include/devmap.h
/trunk/uspace/app/tester/devmap/devmap1.c
/trunk/uspace/lib/libblock/libblock.c
/trunk/uspace/lib/libc/Makefile
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/lib/libc/include/ipc/devmap.h
/trunk/uspace/lib/libc/include/vfs/vfs.h
/trunk/uspace/srv/rd/rd.c
/trunk/uspace/srv/vfs/vfs.h
4400 5501 d 2 h svoboda /trunk/uspace/ Rename ramdisk protocol -> block device protocol.  
/trunk/uspace/lib/libc/include/ipc/bd.h
/trunk/uspace/srv/rd/rd.h
/trunk/uspace/lib/libblock/libblock.c
/trunk/uspace/srv/rd/rd.c
4381 5507 d 22 h jermar /trunk/uspace/lib/libc/generic/ msg->wdata.inlist needs to be allocated before the reply_received()
callback can be called.
 
/trunk/uspace/lib/libc/generic/async.c
4370 5509 d 21 h jermar /trunk/uspace/ Streamline TMPFS and fix its design so that it properly supports hardlinks.
libfs operation unlink() is now passed also the name of the component being
unlinked.
 
/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.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
4368 5510 d 10 h jermar /trunk/uspace/ Lookup a node's parent lexically rather than using the broken L_PARENT flag of
VFS_LOOKUP.
 
/trunk/uspace/lib/libfs/libfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
4365 5511 d 8 h jermar /trunk/uspace/lib/libc/include/ Fix doxygen comments.  
/trunk/uspace/lib/libc/include/string.h
4357 5513 d 21 h jermar /trunk/uspace/ Introduce the concept of FS nodes. A FS node is a typed abstraction of
file-system-specific node type. It replaces the void * in libfs interfaces
and is suitable for holding various information such as mount point data.
 
/trunk/uspace/lib/libfs/libfs.c
/trunk/uspace/lib/libfs/libfs.h
/trunk/uspace/srv/fs/fat/fat.h
/trunk/uspace/srv/fs/fat/fat_ops.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
4353 5516 d 10 h svoboda /trunk/uspace/lib/libc/ klog_puts() is useful for debugging.  
/trunk/uspace/lib/libc/generic/io/stream.c
/trunk/uspace/lib/libc/include/io/stream.h
4326 5524 d 23 h svoboda /trunk/uspace/ Use better method names.  
/trunk/uspace/lib/libc/include/ipc/fb.h
/trunk/uspace/srv/console/console.c
/trunk/uspace/srv/fb/ega.c
/trunk/uspace/srv/fb/fb.c
/trunk/uspace/srv/fb/serial_console.c
4325 5524 d 23 h svoboda /trunk/uspace/ Better switch to kcon on serial console -- relinquish/reclaim screen before/after switching to kcon.  
/trunk/uspace/lib/libc/include/ipc/fb.h
/trunk/uspace/srv/console/console.c
/trunk/uspace/srv/fb/ega.c
/trunk/uspace/srv/fb/fb.c
/trunk/uspace/srv/fb/serial_console.c
4324 5525 d 4 h decky /trunk/uspace/lib/libc/ create a new fibril for each notification received, which allows to do nested async calls from the notification handler
(this fixes ticket #19 and solves various problems with klog)
 
/trunk/uspace/lib/libc/generic/async.c
/trunk/uspace/lib/libc/include/async.h
4317 5525 d 11 h decky /trunk/ use buffering for klog output (this can be used to avoid the ugly usleeps while starting tasks)
unify and cleanup console.c and related files
 
/trunk/kernel/generic/src/main/kinit.c
/trunk/uspace/app/init/init.c
/trunk/uspace/app/tetris/input.c
/trunk/uspace/lib/libc/generic/console.c
/trunk/uspace/lib/libc/generic/io/io.c
/trunk/uspace/lib/libc/generic/io/stream.c
/trunk/uspace/lib/libc/generic/io/vprintf.c
/trunk/uspace/lib/libc/generic/kbd.c
/trunk/uspace/lib/libc/generic/libc.c
/trunk/uspace/lib/libc/include/console.h
/trunk/uspace/lib/libc/include/io/stream.h
4312 5528 d 3 h decky /trunk/ fix of-by-one-character bug in str_chr() and str_rchr()  
/trunk/kernel/generic/src/lib/string.c
/trunk/uspace/lib/libc/generic/string.c
4305 5531 d 4 h jermar /trunk/uspace/ Support mount options.
Let tmpfs decide whether to start empty or restored a TMPFS dump based on the mount option.
 
/trunk/uspace/app/init/init.c
/trunk/uspace/app/tester/vfs/vfs1.c
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/lib/libc/include/vfs/vfs.h
/trunk/uspace/srv/fs/fat/fat_ops.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
4302 5531 d 6 h jermar /trunk/uspace/ Make IPC_M_PING part of the VFS_MOUNT protocol again.  
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs_ops.c
4293 5533 d 7 h decky /trunk/uspace/lib/libc/ don't forget to flush the console after the application finishes
(yes, this is not very elegant, but until we have a proper stdin/stdout/stderr, the whole console stuff, buffering, etc. is just a big heap of hacks)
 
/trunk/uspace/lib/libc/generic/console.c
/trunk/uspace/lib/libc/generic/libc.c
/trunk/uspace/lib/libc/include/console.h

Show All