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
4593 5442 d 15 h decky /trunk/uspace/srv/vfs/ avoid unaligned memory access  
/trunk/uspace/srv/vfs/vfs_ops.c
4591 5442 d 16 h decky /trunk/uspace/ add support for creating null devices on demand  
/trunk/uspace/lib/libc/generic/devmap.c
/trunk/uspace/lib/libc/include/devmap.h
/trunk/uspace/lib/libc/include/ipc/devmap.h
/trunk/uspace/srv/devmap/devmap.c
4587 5443 d 10 h jermar /trunk/uspace/ Implement stat() and VFS_IN_STAT.
Modify bdsh() to use stat() during ls.
In devfs, allow lookups that don't
specify one of L_FILE and L_DIRECTORY.
 
/trunk/uspace/app/bdsh/cmds/modules/ls/ls.c
/trunk/uspace/app/bdsh/cmds/modules/ls/ls.h
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/lib/libc/include/sys/stat.h
/trunk/uspace/srv/fs/devfs/devfs_ops.c
/trunk/uspace/srv/vfs/vfs_ops.c
4586 5443 d 12 h jermar /trunk/uspace/ Add libfs_stat() and let FAT and TMPFS use it.  
/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
4585 5443 d 13 h jermar /trunk/uspace/ Introduce VFS_IN_FSTAT and VFS_OUT_STAT.
Provide libc fstat() and devfs_stat().
This functionality replaces VFS_IN_NODE
and VFS_IN/OUT_DEVICE. FAT and TMPFS
still do not implement this and VFS_IN_STAT
and stat() need implementation as well.
 
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/lib/libc/include/ipc/vfs.h
/trunk/uspace/lib/libc/include/sys/stat.h
/trunk/uspace/srv/fs/devfs/devfs.c
/trunk/uspace/srv/fs/devfs/devfs_ops.c
/trunk/uspace/srv/fs/devfs/devfs_ops.h
/trunk/uspace/srv/fs/fat/fat.c
/trunk/uspace/srv/fs/fat/fat.h
/trunk/uspace/srv/fs/fat/fat_ops.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.c
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_ops.c
4584 5443 d 18 h jermar /trunk/uspace/ Separate the VFS input and output protocols.  
/trunk/uspace/app/trace/trace.c
/trunk/uspace/lib/libc/generic/vfs/vfs.c
/trunk/uspace/lib/libc/include/ipc/console.h
/trunk/uspace/lib/libc/include/ipc/vfs.h
/trunk/uspace/lib/libfs/libfs.c
/trunk/uspace/srv/console/console.c
/trunk/uspace/srv/fs/devfs/devfs.c
/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_lookup.c
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_ops.c
4583 5443 d 19 h svoboda /trunk/uspace/ Fix chaos in block library.  
/trunk/uspace/lib/libblock/libblock.c
/trunk/uspace/lib/libblock/libblock.h
/trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c
4572 5445 d 10 h svoboda /trunk/uspace/ Allow libblock to operate in write-through mode. With 'wtcache' mount option, FAT sets write-through mode on the cache.  
/trunk/uspace/app/bdsh/cmds/modules/bdd/bdd.c
/trunk/uspace/lib/libblock/libblock.c
/trunk/uspace/lib/libblock/libblock.h
/trunk/uspace/srv/fs/fat/fat_ops.c
4571 5445 d 16 h jermar /trunk/uspace/srv/console/ Do not use the pending mechanism in console.  
/trunk/uspace/srv/console/console.c
4570 5445 d 16 h jermar /trunk/uspace/srv/devmap/ Do not use the pending mechanism in devmap.  
/trunk/uspace/srv/devmap/devmap.c
4567 5446 d 2 h jermar /trunk/uspace/srv/vfs/ Use condvar broadcast instead of signal when registering a new file system.  
/trunk/uspace/srv/vfs/vfs_register.c
4566 5446 d 10 h jermar /trunk/uspace/srv/vfs/ Do not use the "pending" fibril mechanism in VFS  
/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
/trunk/uspace/srv/vfs/vfs_register.c
4564 5448 d 13 h svoboda /trunk/uspace/srv/bd/rd/ Use rwlock instead of futex for ramdisk.  
/trunk/uspace/srv/bd/rd/rd.c
4563 5449 d 11 h jermar /trunk/uspace/srv/vfs/ Remove an obsolete comment.  
/trunk/uspace/srv/vfs/vfs.c
4562 5449 d 12 h jermar /trunk/uspace/srv/fs/ Endpoint file systems should terminate the connection fibril when VFS closes the connection.  
/trunk/uspace/srv/fs/devfs/devfs.c
/trunk/uspace/srv/fs/fat/fat.c
/trunk/uspace/srv/fs/tmpfs/tmpfs.c
4561 5449 d 18 h decky /trunk/uspace/srv/fs/devfs/ avoid races during access to the shared hash table  
/trunk/uspace/srv/fs/devfs/devfs_ops.c
4557 5451 d 12 h svoboda /trunk/uspace/srv/bd/ Use fibril synchronization in bd drivers. Use per-disk locks.  
/trunk/uspace/srv/bd/ata_bd/ata_bd.c
/trunk/uspace/srv/bd/ata_bd/ata_bd.h
/trunk/uspace/srv/bd/file_bd/file_bd.c
/trunk/uspace/srv/bd/gxe_bd/gxe_bd.c
4555 5454 d 9 h jermar /trunk/uspace/srv/vfs/ Finish converting VFS to fibril synchronization.  
/trunk/uspace/srv/vfs/vfs.h
/trunk/uspace/srv/vfs/vfs_file.c
/trunk/uspace/srv/vfs/vfs_lookup.c
/trunk/uspace/srv/vfs/vfs_node.c
/trunk/uspace/srv/vfs/vfs_ops.c
4554 5454 d 9 h jermar /trunk/uspace/srv/fs/fat/ Strange left-over.  
/trunk/uspace/srv/fs/fat/fat_idx.c
4552 5454 d 9 h jermar /trunk/uspace/srv/fs/fat/ Use fibril synchronization in FAT.  
/trunk/uspace/srv/fs/fat/fat.h
/trunk/uspace/srv/fs/fat/fat_fat.c
/trunk/uspace/srv/fs/fat/fat_idx.c
/trunk/uspace/srv/fs/fat/fat_ops.c

Show All