Changeset f73b291 in mainline
- Timestamp:
- 2012-08-16T18:40:56Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dbf2ca4
- Parents:
- 13c4fe0
- Files:
-
- 41 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/fs/fat/fat.bp
r13c4fe0 rf73b291 7 7 ?ipc_m_data_write /* mount options */ ; 8 8 tentative { 9 [/uspace/lib/ libblock/fnc.block_init%rd]9 [/uspace/lib/block/fnc.block_init%rd] 10 10 } 11 11 } + -
uspace/app/bdsh/cmds/modules/bdd/bdd.c
r13c4fe0 rf73b291 38 38 #include "cmds.h" 39 39 40 #include < libblock.h>40 #include <block.h> 41 41 #include <loc.h> 42 42 #include <errno.h> -
uspace/app/blkdump/blkdump.c
r13c4fe0 rf73b291 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include < libblock.h>42 #include <block.h> 43 43 #include <mem.h> 44 44 #include <loc.h> -
uspace/app/ext2info/ext2info.c
r13c4fe0 rf73b291 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include < libblock.h>42 #include <block.h> 43 43 #include <mem.h> 44 44 #include <loc.h> -
uspace/app/mkexfat/mkexfat.c
r13c4fe0 rf73b291 38 38 39 39 #include <stdio.h> 40 #include < libblock.h>40 #include <block.h> 41 41 #include <assert.h> 42 42 #include <errno.h> -
uspace/app/mkfat/mkfat.c
r13c4fe0 rf73b291 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include < libblock.h>42 #include <block.h> 43 43 #include <mem.h> 44 44 #include <loc.h> -
uspace/app/mkmfs/mkmfs.c
r13c4fe0 rf73b291 39 39 #include <stdio.h> 40 40 #include <stdlib.h> 41 #include < libblock.h>41 #include <block.h> 42 42 #include <unistd.h> 43 43 #include <errno.h> -
uspace/drv/bus/usb/usbmast/main.c
r13c4fe0 rf73b291 100 100 static usbmast_fun_t *bd_srv_usbmast(bd_srv_t *bd) 101 101 { 102 return (usbmast_fun_t *) bd->srvs->sarg;102 return (usbmast_fun_t *) bd->srvs->sarg; 103 103 } 104 104 -
uspace/lib/block/Makefile
r13c4fe0 rf73b291 32 32 33 33 SOURCES = \ 34 libblock.c34 block.c 35 35 36 36 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/block/block.c
r13c4fe0 rf73b291 37 37 */ 38 38 39 #include "libblock.h"40 39 #include "../../srv/vfs/vfs.h" 41 40 #include <ipc/loc.h> … … 56 55 #include <sys/typefmt.h> 57 56 #include <stacktrace.h> 57 #include "block.h" 58 58 59 59 /** Lock protecting the device connection list */ … … 839 839 memcpy(data, buffer + offset, bytes); 840 840 free(buffer); 841 841 842 842 return EOK; 843 843 } -
uspace/lib/ext2/libext2_block_group.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_BLOCK_GROUP_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 typedef struct ext2_block_group { -
uspace/lib/ext2/libext2_directory.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_DIRECTORY_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_filesystem.h" 41 41 #include "libext2_inode.h" -
uspace/lib/ext2/libext2_filesystem.c
r13c4fe0 rf73b291 39 39 #include "libext2_inode.h" 40 40 #include <errno.h> 41 #include < libblock.h>41 #include <block.h> 42 42 #include <malloc.h> 43 43 #include <assert.h> -
uspace/lib/ext2/libext2_filesystem.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_FILESYSTEM_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_superblock.h" 41 41 #include "libext2_block_group.h" -
uspace/lib/ext2/libext2_inode.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_INODE_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext2_superblock.h" 41 41 -
uspace/lib/ext2/libext2_superblock.c
r13c4fe0 rf73b291 37 37 #include <errno.h> 38 38 #include <malloc.h> 39 #include < libblock.h>39 #include <block.h> 40 40 #include <byteorder.h> 41 41 -
uspace/lib/ext2/libext2_superblock.h
r13c4fe0 rf73b291 37 37 #define LIBEXT2_LIBEXT2_SUPERBLOCK_H_ 38 38 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 typedef struct ext2_superblock { -
uspace/lib/ext4/libext4_bitmap.c
r13c4fe0 rf73b291 36 36 37 37 #include <errno.h> 38 #include < libblock.h>38 #include <block.h> 39 39 #include <sys/types.h> 40 40 #include "libext4.h" -
uspace/lib/ext4/libext4_block_group.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_BLOCK_GROUP_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_filesystem.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_FILESYSTEM_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include "libext4_types.h" 38 38 -
uspace/lib/ext4/libext4_inode.c
r13c4fe0 rf73b291 37 37 #include <byteorder.h> 38 38 #include <errno.h> 39 #include < libblock.h>39 #include <block.h> 40 40 #include "libext4.h" 41 41 -
uspace/lib/ext4/libext4_inode.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_INODE_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_superblock.c
r13c4fe0 rf73b291 38 38 #include <byteorder.h> 39 39 #include <errno.h> 40 #include < libblock.h>40 #include <block.h> 41 41 #include <malloc.h> 42 42 #include "libext4.h" -
uspace/lib/ext4/libext4_superblock.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_SUPERBLOCK_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 #include <sys/types.h> 38 38 #include "libext4_types.h" -
uspace/lib/ext4/libext4_types.h
r13c4fe0 rf73b291 34 34 #define LIBEXT4_LIBEXT4_TYPES_H_ 35 35 36 #include < libblock.h>36 #include <block.h> 37 37 38 38 /* -
uspace/srv/bd/gxe_bd/gxe_bd.c
r13c4fe0 rf73b291 127 127 static gxe_bd_t *bd_srv_gxe(bd_srv_t *bd) 128 128 { 129 return (gxe_bd_t *) bd->srvs->sarg;129 return (gxe_bd_t *) bd->srvs->sarg; 130 130 } 131 131 -
uspace/srv/bd/part/guid_part/guid_part.c
r13c4fe0 rf73b291 55 55 #include <sys/typefmt.h> 56 56 #include <inttypes.h> 57 #include < libblock.h>57 #include <block.h> 58 58 #include <loc.h> 59 59 #include <errno.h> -
uspace/srv/bd/part/mbr_part/mbr_part.c
r13c4fe0 rf73b291 65 65 #include <sys/typefmt.h> 66 66 #include <inttypes.h> 67 #include < libblock.h>67 #include <block.h> 68 68 #include <errno.h> 69 69 #include <bool.h> -
uspace/srv/bd/sata_bd/sata_bd.c
r13c4fe0 rf73b291 75 75 static sata_bd_dev_t *bd_srv_sata(bd_srv_t *bd) 76 76 { 77 return (sata_bd_dev_t *) bd->srvs->sarg;77 return (sata_bd_dev_t *) bd->srvs->sarg; 78 78 } 79 79 -
uspace/srv/fs/cdfs/cdfs_ops.c
r13c4fe0 rf73b291 44 44 #include <libfs.h> 45 45 #include <errno.h> 46 #include < libblock.h>46 #include <block.h> 47 47 #include <str.h> 48 48 #include <byteorder.h> -
uspace/srv/fs/exfat/exfat_bitmap.c
r13c4fe0 rf73b291 39 39 #include "../../vfs/vfs.h" 40 40 #include <libfs.h> 41 #include < libblock.h>41 #include <block.h> 42 42 #include <errno.h> 43 43 #include <byteorder.h> -
uspace/srv/fs/exfat/exfat_directory.c
r13c4fe0 rf73b291 39 39 #include "exfat_directory.h" 40 40 #include "exfat_fat.h" 41 #include < libblock.h>41 #include <block.h> 42 42 #include <errno.h> 43 43 #include <byteorder.h> -
uspace/srv/fs/exfat/exfat_fat.c
r13c4fe0 rf73b291 42 42 #include "../../vfs/vfs.h" 43 43 #include <libfs.h> 44 #include < libblock.h>44 #include <block.h> 45 45 #include <errno.h> 46 46 #include <byteorder.h> -
uspace/srv/fs/exfat/exfat_fat.h
r13c4fe0 rf73b291 37 37 #include "../../vfs/vfs.h" 38 38 #include <stdint.h> 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 #define EXFAT_ROOT_IDX 0 -
uspace/srv/fs/exfat/exfat_ops.c
r13c4fe0 rf73b291 45 45 #include "../../vfs/vfs.h" 46 46 #include <libfs.h> 47 #include < libblock.h>47 #include <block.h> 48 48 #include <ipc/services.h> 49 49 #include <ipc/loc.h> -
uspace/srv/fs/ext2fs/ext2fs_ops.c
r13c4fe0 rf73b291 39 39 #include "../../vfs/vfs.h" 40 40 #include <libfs.h> 41 #include < libblock.h>41 #include <block.h> 42 42 #include <libext2.h> 43 43 #include <ipc/services.h> -
uspace/srv/fs/fat/fat_directory.c
r13c4fe0 rf73b291 38 38 #include "fat_directory.h" 39 39 #include "fat_fat.h" 40 #include < libblock.h>40 #include <block.h> 41 41 #include <errno.h> 42 42 #include <byteorder.h> -
uspace/srv/fs/fat/fat_fat.c
r13c4fe0 rf73b291 42 42 #include "../../vfs/vfs.h" 43 43 #include <libfs.h> 44 #include < libblock.h>44 #include <block.h> 45 45 #include <errno.h> 46 46 #include <byteorder.h> -
uspace/srv/fs/fat/fat_fat.h
r13c4fe0 rf73b291 37 37 #include "../../vfs/vfs.h" 38 38 #include <stdint.h> 39 #include < libblock.h>39 #include <block.h> 40 40 41 41 #define FAT1 0 -
uspace/srv/fs/fat/fat_ops.c
r13c4fe0 rf73b291 43 43 #include "../../vfs/vfs.h" 44 44 #include <libfs.h> 45 #include < libblock.h>45 #include <block.h> 46 46 #include <ipc/services.h> 47 47 #include <ipc/loc.h> -
uspace/srv/fs/mfs/mfs.h
r13c4fe0 rf73b291 36 36 #include <minix.h> 37 37 #include <macros.h> 38 #include < libblock.h>38 #include <block.h> 39 39 #include <libfs.h> 40 40 #include <adt/list.h> -
uspace/srv/fs/tmpfs/tmpfs_dump.c
r13c4fe0 rf73b291 44 44 #include <sys/types.h> 45 45 #include <as.h> 46 #include < libblock.h>46 #include <block.h> 47 47 #include <byteorder.h> 48 48
Note:
See TracChangeset
for help on using the changeset viewer.