search for: ext2_fs_op

Displaying 6 results from an estimated 6 matches for "ext2_fs_op".

Did you mean: ext2_fs_ops
2013 Nov 21
0
[PATCH] FSUUID for ext2 filesystem
...EXT2_SB(fs)->s_uuid[11], + EXT2_SB(fs)->s_uuid[12], + EXT2_SB(fs)->s_uuid[13], + EXT2_SB(fs)->s_uuid[14], + EXT2_SB(fs)->s_uuid[15] + ) < 0) { + free(uuid); + return NULL; + } + + return uuid; +} + const struct fs_ops ext2_fs_ops = { .fs_name = "ext2", .fs_flags = FS_THISIND | FS_USEMEM, @@ -336,5 +374,5 @@ const struct fs_ops ext2_fs_ops = { .readlink = ext2_readlink, .readdir = ext2_readdir, .next_extent = ext2_next_extent, - .fs_uuid = NULL, + .fs_uu...
2013 Mar 02
0
[GIT-PULL] ext4 inline data support
...xt2_iget_by_inr(fs, de->d_inode); } @@ -217,7 +239,7 @@ static int cache_get_file(struct inode *inode, void *buf, size_t bytes) return 0; } - + static int ext2_readlink(struct inode *inode, char *buf) { struct fs_info *fs = inode->fs; @@ -326,7 +348,7 @@ const struct fs_ops ext2_fs_ops = { .fs_flags = FS_THISIND | FS_USEMEM, .fs_init = ext2_fs_init, .searchdir = NULL, - .getfssec = generic_getfssec, + .getfssec = ext2_getfssec, .close_file = generic_close_file, .mangle_name = generic_mangle_name, .load_config =...
2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...tart, - .open_config = generic_open_config + .open_config = generic_open_config, + .fs_uuid = NULL, }; diff --git a/core/fs/ext2/ext2.c b/core/fs/ext2/ext2.c index 957c60b..df0856f 100644 --- a/core/fs/ext2/ext2.c +++ b/core/fs/ext2/ext2.c @@ -336,4 +336,5 @@ const struct fs_ops ext2_fs_ops = { .readlink = ext2_readlink, .readdir = ext2_readdir, .next_extent = ext2_next_extent, + .fs_uuid = NULL, }; diff --git a/core/fs/fat/fat.c b/core/fs/fat/fat.c index d7346ae..a718586 100644 --- a/core/fs/fat/fat.c +++ b/core/fs/fat/fat.c @@ -1,5 +1,6 @@ #in...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its last on-disk structure changes -- and it _suprisingly_ worked as expected. Right, now I can finally get rid of GRUB and use Syslinux to boot my Linux on EFI from a rootfs with xfs. Shit, I have two partitions (the first one being the required ESP) so there is no way to access the other partitions since because Syslinux does not
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...er */ uint32_t atime; /* Access time */ uint32_t mtime; /* Modify time */ uint32_t ctime; /* Create time */ diff --git a/core/ldlinux.asm b/core/ldlinux.asm index a2f859d..a1f96b7 100644 --- a/core/ldlinux.asm +++ b/core/ldlinux.asm @@ -39,6 +39,8 @@ ROOT_FS_OPS: dd ext2_fs_ops extern ntfs_fs_ops dd ntfs_fs_ops + extern xfs_fs_ops + dd xfs_fs_ops extern btrfs_fs_ops dd btrfs_fs_ops dd 0 diff --git a/extlinux/main.c b/extlinux/main.c index 73f3fbe..d1a800c 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -14,7 +14,8 @@ /* * extlinux.c * - * Inst...