Home
last modified time | relevance | path

Searched refs:CF_LE_L (Results 1 – 4 of 4) sorted by relevance

/linux-2.4.37.9/fs/fat/
Dinode.c660 sbi->fat_length = CF_LE_L(b->fat32_length); in fat_read_super()
661 sbi->root_cluster = CF_LE_L(b->root_cluster); in fat_read_super()
686 CF_LE_L(fsinfo->signature1), in fat_read_super()
687 CF_LE_L(fsinfo->signature2), in fat_read_super()
690 sbi->free_clusters = CF_LE_L(fsinfo->free_clusters); in fat_read_super()
691 sbi->prev_free = CF_LE_L(fsinfo->next_cluster); in fat_read_super()
714 total_sectors = CF_LE_L(b->total_sect); in fat_read_super()
758 CF_LE_L(b->total_sect), logical_sector_size, in fat_read_super()
955 inode->i_size = CF_LE_L(de->size); in fat_fill_inode()
Dmisc.c106 CF_LE_L(fsinfo->signature1), CF_LE_L(fsinfo->signature2), in fat_clusters_flush()
110 fsinfo->free_clusters = CF_LE_L(MSDOS_SB(sb)->free_clusters); in fat_clusters_flush()
111 fsinfo->next_cluster = CF_LE_L(MSDOS_SB(sb)->prev_free); in fat_clusters_flush()
Dcache.c72 next = CF_LE_L(((__u32 *) bh->b_data)[(first & in default_fat_access()
/linux-2.4.37.9/include/linux/
Dmsdos_fs.h81 #define IS_FSINFO(x) (CF_LE_L((x)->signature1) == FAT_FSINFO_SIG1 \
82 && CF_LE_L((x)->signature2) == FAT_FSINFO_SIG2)
112 #define CF_LE_L(v) le32_to_cpu(v) macro