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 5921 d 22 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 5923 d 11 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 5927 d 12 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 5929 d 12 h jermar /trunk/uspace/srv/vfs/ Initialize the VFS node properly.  
/trunk/uspace/srv/vfs/vfs_node.c
2739 5929 d 12 h jermar /trunk/uspace/srv/fs/tmpfs/ Remove duplicate initialization.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2737 5931 d 12 h jermar /trunk/uspace/app/tester/vfs/ Modify the vfs1 test to excercise unlink() and rmdir().  
/trunk/uspace/app/tester/vfs/vfs1.c
2736 5931 d 14 h jermar /trunk/uspace/srv/fs/tmpfs/ Unlink a TMPFS node more thoroughly.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2735 5931 d 17 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 5931 d 19 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 5931 d 19 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 5931 d 20 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 5931 d 20 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 5932 d 22 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 5937 d 12 h jermar /trunk/uspace/srv/fs/tmpfs/ Descend vs. descent.  
/trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c
2718 5945 d 16 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 5946 d 18 h cejka /trunk/uspace/app/ash/tools/ Ash: removed .map file commited by mistake.  
/trunk/uspace/app/ash/tools/mkinit.map
2716 5946 d 18 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 5946 d 19 h cejka /trunk/uspace/app/ash/ Ash - add recursion to Makefile to create build tools in subdirectory.  
/trunk/uspace/app/ash/Makefile
2714 5946 d 20 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 5952 d 14 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

Show All