Lines Matching refs:t
85 unsigned long t; in inode_readahead_blks_store() local
88 ret = kstrtoul(skip_spaces(buf), 0, &t); in inode_readahead_blks_store()
92 if (t && (!is_power_of_2(t) || t > 0x40000000)) in inode_readahead_blks_store()
95 sbi->s_inode_readahead_blks = t; in inode_readahead_blks_store()
457 unsigned int t; in ext4_attr_store() local
467 ret = kstrtouint(skip_spaces(buf), 0, &t); in ext4_attr_store()
471 *((__le32 *) ptr) = cpu_to_le32(t); in ext4_attr_store()
473 *((unsigned int *) ptr) = t; in ext4_attr_store()
478 ret = kstrtouint(skip_spaces(buf), 0, &t); in ext4_attr_store()
481 if (t > sbi->s_clusters_per_group) in ext4_attr_store()
483 *((unsigned int *) ptr) = t; in ext4_attr_store()