search for: ext2_sb_info

Displaying 4 results from an estimated 4 matches for "ext2_sb_info".

2017 Aug 27
1
[PATCH] ext4: Fix 64bit feature
..._type) return inode_type[d_file_type]; } -/* - * get the group's descriptor of group_num - */ -static const struct ext2_group_desc * -ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) +static const void *__ext2_get_group_desc(struct fs_info *fs, uint32_t group_num) { struct ext2_sb_info *sbi = EXT2_SB(fs); uint32_t desc_block, desc_index; - const struct ext2_group_desc *desc_data_block; + uint8_t *p; if (group_num >= sbi->s_groups_count) { printf ("ext2_get_group_desc" "block_group >= groups_count - " "block_group = %d, g...
2013 Nov 21
0
[PATCH] FSUUID for ext2 filesystem
...= ext2_readdir, .next_extent = ext2_next_extent, - .fs_uuid = NULL, + .fs_uuid = ext2_fs_uuid, }; diff --git a/core/fs/ext2/ext2_fs.h b/core/fs/ext2/ext2_fs.h index 8adc9bb..803a995 100644 --- a/core/fs/ext2/ext2_fs.h +++ b/core/fs/ext2/ext2_fs.h @@ -277,6 +277,7 @@ struct ext2_sb_info { uint32_t s_groups_count; /* Number of groups in the fs */ uint32_t s_first_data_block; /* First Data Block */ int s_inode_size; + uint8_t s_uuid[16]; /* 128-bit uuid for volume */ }; static inline struct ext2_sb_info *EXT2_SB(struct fs_info *fs) -- 1.8.1.2
2008 Nov 24
2
ext2 inode size patch - RE: PR kern/124621
A while back, I submitted a patch for PR kern/124621, which allows the mounting of an ext2(3) filesystem created with an inode size other than 128. The e2fsprogs' default is now 256, so file systems created on newer Linux distributions or with the port will not be mountable. I was hopeful this would get committed in time for 7.1-RELEASE (and 6.4-RELEASE), however the PR remains open. If
2006 Jan 25
1
EXT3: failed to claim external journal device.
We are having problems remounting an ext3 filesystem using an external journal device. The filesystem in question was working fine until the server was rebooted. This is what we see on dmesg when trying to mount: EXT3: failed to claim external journal device. The external journal lives on a LVM2 logical volume and it seems to be accessible ( we can dumpe2fs and see filesystem information).