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
2745 5941 d 7 h decky /trunk/ code cleanup (mostly signed/unsigned)
allow extra compiler warnings
 
/trunk/kernel/Makefile
/trunk/kernel/arch/amd64/src/mm/page.c
/trunk/kernel/arch/arm32/src/arm32.c
/trunk/kernel/arch/arm32/src/cpu/cpu.c
/trunk/kernel/arch/arm32/src/debug/print.c
/trunk/kernel/arch/ia32xen/src/mm/tlb.c
/trunk/kernel/arch/ia32xen/src/smp/mps.c
/trunk/kernel/arch/ia32xen/src/smp/smp.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/ia64/src/mm/tlb.c
/trunk/kernel/arch/mips32/src/cpu/cpu.c
/trunk/kernel/arch/mips32/src/debugger.c
/trunk/kernel/arch/mips32/src/drivers/arc.c
/trunk/kernel/arch/mips32/src/mm/tlb.c
/trunk/kernel/arch/sparc64/src/mm/frame.c
/trunk/kernel/arch/sparc64/src/mm/page.c
/trunk/kernel/arch/sparc64/src/mm/tlb.c
/trunk/kernel/arch/sparc64/src/smp/ipi.c
/trunk/kernel/genarch/src/ofw/ebus.c
/trunk/kernel/genarch/src/ofw/fhc.c
/trunk/kernel/genarch/src/ofw/ofw_tree.c
/trunk/kernel/genarch/src/ofw/pci.c
/trunk/kernel/genarch/src/ofw/sbus.c
/trunk/kernel/generic/include/lib/elf.h
/trunk/kernel/generic/include/mm/as.h
/trunk/kernel/generic/include/mm/slab.h
/trunk/kernel/generic/src/debug/symtab.c
/trunk/kernel/generic/src/interrupt/interrupt.c
/trunk/kernel/generic/src/ipc/irq.c
/trunk/kernel/generic/src/ipc/sysipc.c
/trunk/kernel/generic/src/lib/elf.c
/trunk/kernel/generic/src/lib/func.c
/trunk/kernel/generic/src/lib/memstr.c
/trunk/kernel/generic/src/lib/sort.c
/trunk/kernel/generic/src/main/main.c
/trunk/kernel/generic/src/mm/as.c
/trunk/kernel/generic/src/mm/backend_anon.c
/trunk/kernel/generic/src/mm/backend_elf.c
/trunk/kernel/generic/src/mm/frame.c
/trunk/kernel/generic/src/mm/slab.c
/trunk/kernel/generic/src/mm/tlb.c
/trunk/kernel/generic/src/printf/printf_core.c
/trunk/kernel/generic/src/proc/task.c
/trunk/kernel/generic/src/synch/futex.c
/trunk/kernel/generic/src/time/clock.c
/trunk/kernel/test/avltree/avltree1.c
/trunk/kernel/test/fpu/fpu1.c
/trunk/kernel/test/fpu/mips2.c
/trunk/kernel/test/fpu/sse1.c
/trunk/kernel/test/mm/falloc2.c
/trunk/kernel/test/synch/rwlock5.c
/trunk/kernel/test/test.c
/trunk/kernel/test/thread/thread1.c
/trunk/uspace/lib/libc/arch/ppc64/src/syscall.c
2742 5942 d 21 h jermar /trunk/uspace/srv/ Separate creation of a TMPFS node and its linking in the file system name space.
Rename VFS_FREE to VFS_DESTROY and destroy_node() to unlink_node().
 
/trunk/uspace/srv/fs/tmpfs/tmpfs.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_ops.c
2741 5946 d 22 h jermar /trunk/uspace/lib/libc/generic/ Prevent read() and write() from returning an uninitialized error return value.  
/trunk/uspace/lib/libc/generic/vfs.c
2740 5948 d 21 h jermar /trunk/uspace/srv/vfs/ Initialize the VFS node properly.  
/trunk/uspace/srv/vfs/vfs_node.c
2739 5948 d 21 h jermar /trunk/uspace/srv/fs/tmpfs/ Remove duplicate initialization.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2737 5950 d 22 h jermar /trunk/uspace/app/tester/vfs/ Modify the vfs1 test to excercise unlink() and rmdir().  
/trunk/uspace/app/tester/vfs/vfs1.c
2736 5950 d 23 h jermar /trunk/uspace/srv/fs/tmpfs/ Unlink a TMPFS node more thoroughly.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2735 5951 d 3 h jermar /trunk/uspace/ Support for rmdir(), unlink() and the respective VFS operations.  
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/unistd.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
2734 5951 d 4 h jermar /trunk/uspace/ Support for close().  
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/errno.h
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
2733 5951 d 5 h jermar /trunk/uspace/ Add TMPFS support for destroying leaf links in the file system namespace.  
/trunk/uspace/lib/libc/include/errno.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2732 5951 d 5 h jermar /trunk/uspace/srv/fs/tmpfs/ When freeing up a TMPFS node, it should also be removed from the dentries hash table.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2731 5951 d 6 h jermar /trunk/uspace/srv/ Add the VFS_FREE operation. This operation frees up whatever resources used by
a file system node for which there is no name (i.e. an unlinked node).

Cleanup VFS operations enums and remove unneeded VFS operations.
 
/trunk/uspace/srv/fs/fat/fat.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_file.c
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_register.c
2730 5952 d 8 h jermar /trunk/uspace/srv/ Introduce the notion of VFS node link counts.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_node.c
2728 5956 d 21 h jermar /trunk/uspace/srv/fs/tmpfs/ Descend vs. descent.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2718 5965 d 2 h cejka /trunk/uspace/lib/libc/arch/ia32/ Added setjmp and longjmp functions for ia32 architecture.  
/trunk/uspace/lib/libc/arch/ia32/include/setjmp.h
/trunk/uspace/lib/libc/arch/ia32/src/setjmp.S
/trunk/uspace/lib/libc/arch/ia32/Makefile.inc
2717 5966 d 3 h cejka /trunk/uspace/app/ash/tools/ Ash: removed .map file commited by mistake.  
/trunk/uspace/app/ash/tools/mkinit.map
2716 5966 d 3 h cejka /trunk/uspace/app/ash/tools/ Ash: fixed recursive Makefile.  
/trunk/uspace/app/ash/tools/Makefile
/trunk/uspace/app/ash/tools/mksyntax.c
2715 5966 d 5 h cejka /trunk/uspace/app/ash/ Ash - add recursion to Makefile to create build tools in subdirectory.  
/trunk/uspace/app/ash/Makefile
2714 5966 d 5 h cejka /trunk/uspace/app/ash/ Initial commit of ash shell.
It cannot be compiled yet.
 
/trunk/uspace/app/ash
/trunk/uspace/app/ash/Makefile
/trunk/uspace/app/ash/TOUR
/trunk/uspace/app/ash/alias.c
/trunk/uspace/app/ash/alias.h
/trunk/uspace/app/ash/arith.c
/trunk/uspace/app/ash/arith.h
/trunk/uspace/app/ash/arith.y
/trunk/uspace/app/ash/arith_lex.l
/trunk/uspace/app/ash/bltin
/trunk/uspace/app/ash/bltin/bltin.h
/trunk/uspace/app/ash/bltin/echo.1
/trunk/uspace/app/ash/bltin/echo.c
/trunk/uspace/app/ash/bltin/test.c
/trunk/uspace/app/ash/bltin/times.c
/trunk/uspace/app/ash/builtins.def
/trunk/uspace/app/ash/cd.c
/trunk/uspace/app/ash/cd.h
/trunk/uspace/app/ash/error.c
/trunk/uspace/app/ash/error.h
/trunk/uspace/app/ash/eval.c
/trunk/uspace/app/ash/eval.h
/trunk/uspace/app/ash/exec.c
/trunk/uspace/app/ash/exec.h
/trunk/uspace/app/ash/expand.c
/trunk/uspace/app/ash/expand.h
/trunk/uspace/app/ash/fake.c
/trunk/uspace/app/ash/fake.h
/trunk/uspace/app/ash/funcs
/trunk/uspace/app/ash/funcs/cmv
/trunk/uspace/app/ash/funcs/dirs
/trunk/uspace/app/ash/funcs/kill
/trunk/uspace/app/ash/funcs/login
/trunk/uspace/app/ash/funcs/newgrp
/trunk/uspace/app/ash/funcs/popd
/trunk/uspace/app/ash/funcs/pushd
/trunk/uspace/app/ash/funcs/suspend
/trunk/uspace/app/ash/hetio.c
/trunk/uspace/app/ash/hetio.h
/trunk/uspace/app/ash/histedit.c
/trunk/uspace/app/ash/init.h
/trunk/uspace/app/ash/input.c
/trunk/uspace/app/ash/input.h
/trunk/uspace/app/ash/jobs.c
/trunk/uspace/app/ash/jobs.h
/trunk/uspace/app/ash/lex.yy.c
/trunk/uspace/app/ash/machdep.h
/trunk/uspace/app/ash/mail.c
/trunk/uspace/app/ash/mail.h
/trunk/uspace/app/ash/main.c
/trunk/uspace/app/ash/main.h
/trunk/uspace/app/ash/memalloc.c
/trunk/uspace/app/ash/memalloc.h
/trunk/uspace/app/ash/miscbltin.c
/trunk/uspace/app/ash/miscbltin.h
/trunk/uspace/app/ash/mkbuiltins
/trunk/uspace/app/ash/mktokens
/trunk/uspace/app/ash/myhistedit.h
/trunk/uspace/app/ash/mystring.c
/trunk/uspace/app/ash/mystring.h
/trunk/uspace/app/ash/nodes.c.pat
/trunk/uspace/app/ash/nodetypes
/trunk/uspace/app/ash/options.c
/trunk/uspace/app/ash/options.h
/trunk/uspace/app/ash/output.c
/trunk/uspace/app/ash/output.h
/trunk/uspace/app/ash/parser.c
/trunk/uspace/app/ash/parser.h
/trunk/uspace/app/ash/redir.c
/trunk/uspace/app/ash/redir.h
/trunk/uspace/app/ash/setmode.c
/trunk/uspace/app/ash/sh.1
/trunk/uspace/app/ash/shell.h
/trunk/uspace/app/ash/show.c
/trunk/uspace/app/ash/show.h
/trunk/uspace/app/ash/tags
/trunk/uspace/app/ash/tools
/trunk/uspace/app/ash/tools/Makefile
/trunk/uspace/app/ash/tools/mkinit.c
/trunk/uspace/app/ash/tools/mkinit.map
/trunk/uspace/app/ash/tools/mknodes.c
/trunk/uspace/app/ash/tools/mksignames.c
/trunk/uspace/app/ash/tools/mksyntax.c
/trunk/uspace/app/ash/trap.c
/trunk/uspace/app/ash/trap.h
/trunk/uspace/app/ash/var.c
/trunk/uspace/app/ash/var.h
2711 5972 d 0 h jermar /trunk/uspace/ Remove the debugging hack from tmpfs_init(), which created several files and
directories on the filesystem. TMPFS is now self-sufficient enough to be able
to create its content via the standard VFS interface.
 
/trunk/uspace/app/tester/vfs/vfs1.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2710 5972 d 0 h jermar /trunk/uspace/ VFS_WRITE and tmpfs_write fixes.  
/trunk/uspace/app/tester/vfs/vfs1.c
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs_ops.c
2709 5972 d 2 h jermar /trunk/uspace/srv/vfs/ VFS_OPEN and VFS_WRITE now understand O_APPEND.  
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
2708 5972 d 3 h jermar /trunk/uspace/ VFS_OPEN now understands O_CREAT and O_EXCL.  
/trunk/uspace/lib/libc/include/fcntl.h
/trunk/uspace/srv/vfs/vfs_ops.c
2707 5972 d 4 h jermar /trunk/uspace/ Support for mkdir().  
/trunk/uspace/lib/libc/include/sys/stat.h
/trunk/uspace/app/tester/vfs/vfs1.c
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/sys/types.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_ops.c
2706 5972 d 8 h jermar /trunk/uspace/srv/fs/tmpfs/ Move handling of the miss on excessive components out of the main loop in
tmpfs_lookup.
 
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2705 5972 d 21 h jermar /trunk/uspace/ More elegant, flexible and complete version of tmpfs_lookup.  
/trunk/uspace/lib/libc/include/errno.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2704 5973 d 7 h jermar /trunk/uspace/srv/vfs/ Additional VFS lookup flags.  
/trunk/uspace/srv/vfs/vfs.h
2700 5980 d 6 h jermar /trunk/uspace/ Introduce the notion of lflag (i.e. lookup flags) to support the ability to
limit the scope of VFS node types that can be opened by open() and opendir(). In
the future, lflag will also specify actions for VFS_LOOKUP handlers that will be
carried out in situations such as the VFS node is not found (e.g. implementation
of mkdir() and open() with O_CREAT in oflag).
 
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_ops.c
2699 5980 d 19 h jermar /trunk/uspace/ Finish implementation of readdir(). Functions from this family are implemented
via using file descriptors for directories. For example, readdir() is
implemented as read() from an open directory. Of course, FS implementations
must understand that they are asked to read a directory and behave accordingly.
 
/trunk/uspace/app/tester/vfs/vfs1.c
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/dirent.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2698 5981 d 1 h jermar /trunk/uspace/srv/vfs/ Small fix for VFS_TRUNCATE. Move lookup and registration code to separate
modules.
 
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_register.c
/trunk/uspace/srv/vfs/Makefile
/trunk/uspace/srv/vfs/vfs_ops.c
2694 5985 d 23 h jermar /trunk/uspace/lib/libc/ Add opendir(), rewinddir(), closedir() and some prototypes and stubs. Add dirent.h.  
/trunk/uspace/lib/libc/include/dirent.h
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/unistd.h
2693 5986 d 6 h jermar /trunk/uspace/ Add ftruncate() and support for VFS_TRUNCATE to VFS and TMPFS.  
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/unistd.h
/trunk/uspace/srv/fs/tmpfs/tmpfs.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
2691 5989 d 23 h jermar /trunk/uspace/srv/vfs/ Improve the API for converting (VFS triplets, size) to VFS nodes by introducing
a new type for results of vfs_lookup_internal().
 
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_ops.c
2690 5990 d 21 h jermar /trunk/uspace/srv/ Make a distinction between VFS operations that are common to VFS and FS
implementations, operations that are VFS only and operations that are FS
implementations only.
 
/trunk/uspace/srv/fs/fat/fat.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.c
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
2689 5990 d 22 h jermar /trunk/uspace/srv/vfs/ Merge all VFS operations into one file.  
/trunk/uspace/srv/vfs/vfs_ops.c
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_mount.c
/trunk/uspace/srv/vfs/vfs_open.c
/trunk/uspace/srv/vfs/vfs_rdwr.c
/trunk/uspace/srv/vfs/vfs_register.c
/trunk/uspace/srv/vfs/vfs_unlink.c
/trunk/uspace/srv/vfs/Makefile
2688 5990 d 22 h jermar /trunk/uspace/ Make uspace rwlock API naming conventions consistent with kernel rwlock API.  
/trunk/uspace/lib/libc/include/rwlock.h
/trunk/uspace/srv/vfs/vfs_mount.c
/trunk/uspace/srv/vfs/vfs_open.c
/trunk/uspace/srv/vfs/vfs_rdwr.c
2687 5990 d 23 h jermar /trunk/uspace/srv/ Management of the cached VFS node size.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_mount.c
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_open.c
/trunk/uspace/srv/vfs/vfs_rdwr.c
2686 5990 d 23 h jermar /trunk/uspace/srv/fs/tmpfs/ Previous commit was toxic. When emulating gaps, zero out the reallocated buffer, not the original one.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2685 5991 d 0 h jermar /trunk/uspace/srv/fs/tmpfs/ TMPFS must handle file gaps.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2684 5993 d 0 h jermar /trunk/ Add libc and VFS implementation of lseek(), VFS_SEEK resp.
Add the size member to the VFS node structure (not yet initialized).
 
/trunk/kernel/generic/include/errno.h
/trunk/uspace/lib/libc/generic/vfs.c
/trunk/uspace/lib/libc/include/unistd.h
/trunk/uspace/srv/vfs/vfs.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_rdwr.c