Searched refs:n_blocks_count (Results 1 – 7 of 7) sorted by relevance
/fs/ext3/ |
D | resize.c | 964 ext3_fsblk_t n_blocks_count) in ext3_group_extend() argument 983 o_blocks_count, n_blocks_count); in ext3_group_extend() 985 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count) in ext3_group_extend() 988 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) { in ext3_group_extend() 991 sb->s_id, n_blocks_count); in ext3_group_extend() 998 if (n_blocks_count < o_blocks_count) { in ext3_group_extend() 1021 if (o_blocks_count + add > n_blocks_count) in ext3_group_extend() 1022 add = n_blocks_count - o_blocks_count; in ext3_group_extend() 1024 if (o_blocks_count + add < n_blocks_count) in ext3_group_extend()
|
D | ioctl.c | 239 ext3_fsblk_t n_blocks_count; in ext3_ioctl() local 250 if (get_user(n_blocks_count, (__u32 __user *)arg)) { in ext3_ioctl() 254 err = ext3_group_extend(sb, EXT3_SB(sb)->s_es, n_blocks_count); in ext3_ioctl()
|
D | super.c | 872 ext3_fsblk_t *n_blocks_count, int is_remount) in parse_options() argument 1189 *n_blocks_count = option; in parse_options() 2499 ext3_fsblk_t n_blocks_count = 0; in ext3_remount() local 2522 if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) { in ext3_remount() 2538 n_blocks_count > le32_to_cpu(es->s_blocks_count)) { in ext3_remount() 2602 if ((err = ext3_group_extend(sb, es, n_blocks_count))) in ext3_remount()
|
/fs/ext4/ |
D | resize.c | 976 ext4_fsblk_t n_blocks_count) in ext4_group_extend() argument 995 o_blocks_count, n_blocks_count); in ext4_group_extend() 997 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count) in ext4_group_extend() 1000 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) { in ext4_group_extend() 1003 sb->s_id, n_blocks_count); in ext4_group_extend() 1009 if (n_blocks_count < o_blocks_count) { in ext4_group_extend() 1031 if (o_blocks_count + add > n_blocks_count) in ext4_group_extend() 1032 add = n_blocks_count - o_blocks_count; in ext4_group_extend() 1034 if (o_blocks_count + add < n_blocks_count) in ext4_group_extend()
|
D | ioctl.c | 193 ext4_fsblk_t n_blocks_count; in ext4_ioctl() local 200 if (get_user(n_blocks_count, (__u32 __user *)arg)) in ext4_ioctl() 207 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count); in ext4_ioctl()
|
D | super.c | 1105 ext4_fsblk_t *n_blocks_count, int is_remount) in parse_options() argument 1434 *n_blocks_count = option; in parse_options() 3125 ext4_fsblk_t n_blocks_count = 0; in ext4_remount() local 3155 &n_blocks_count, 1)) { in ext4_remount() 3174 n_blocks_count > ext4_blocks_count(es)) { in ext4_remount() 3262 if ((err = ext4_group_extend(sb, es, n_blocks_count))) in ext4_remount()
|
D | ext4.h | 1119 ext4_fsblk_t n_blocks_count);
|