search for: sb_set_blocksize

Displaying 3 results from an estimated 3 matches for "sb_set_blocksize".

2004 Mar 29
1
information on block size in ext2
hi all I want to know wt does s_log_blocksize represent in ext2's superblock structure in memory.. Is is 1024 for 1kb block size in ext2 file system.. Also wt does s_blocksize and s_blocksize_bits members of VFS superblock represent.. BTW are there any ext2 file system specific mailing lists.. bye a Linux lover
2007 Aug 23
2
give me some works
hello, Chris In the next several months, I will have a lot of spare time. I will be happy if you assign some work to me. I have learn linux kernel for years but only fix a few small bugs in IP stack. In the past few months, I read some EXT4/VFS codes. I began reading source of btrfs ten days ago and have read it twice now. Regards YZ
2007 Aug 09
1
[RFC] All my fsync changes
..._RADIX_TREE(&fs_info->block_group_radix, GFP_KERNEL); INIT_RADIX_TREE(&fs_info->block_group_data_radix, GFP_KERNEL); + INIT_RADIX_TREE(&fs_info->transaction_map_radix, GFP_KERNEL); INIT_LIST_HEAD(&fs_info->trans_list); INIT_LIST_HEAD(&fs_info->dead_roots); sb_set_blocksize(sb, 4096); diff -r f6da57af2473 file.c --- a/file.c Wed Aug 08 20:17:12 2007 -0400 +++ b/file.c Thu Aug 09 17:24:26 2007 -0400 @@ -694,22 +694,41 @@ static int btrfs_sync_file(struct file * { struct inode *inode = dentry->d_inode; struct btrfs_root *root = BTRFS_I(inode)->root; - int ret...