Searched refs:tmp_bh (Results 1 – 2 of 2) sorted by relevance
/drivers/staging/exfat/ |
D | exfat_super.c | 350 struct buffer_head *tmp_bh = NULL; in ffsMountVol() local 374 if (sector_read(sb, 0, &tmp_bh, 1) != FFS_SUCCESS) { in ffsMountVol() 381 p_pbr = (struct pbr_sector_t *)tmp_bh->b_data; in ffsMountVol() 385 brelse(tmp_bh); in ffsMountVol() 411 brelse(tmp_bh); in ffsMountVol() 693 struct buffer_head *tmp_bh = NULL; in ffsReadFile() local 774 if (sector_read(sb, LogSector, &tmp_bh, 1) != in ffsReadFile() 778 (char *)tmp_bh->b_data, (s32)oneblkread); in ffsReadFile() 780 if (sector_read(sb, LogSector, &tmp_bh, 1) != in ffsReadFile() 784 (char *)tmp_bh->b_data + offset, in ffsReadFile() [all …]
|
D | exfat_core.c | 143 struct buffer_head *tmp_bh = NULL; in clear_cluster() local 156 ret = sector_read(sb, s, &tmp_bh, 0); in clear_cluster() 160 memset((char *)tmp_bh->b_data, 0x0, p_bd->sector_size); in clear_cluster() 161 ret = sector_write(sb, s, tmp_bh, 0); in clear_cluster() 166 brelse(tmp_bh); in clear_cluster() 705 struct buffer_head *tmp_bh = NULL; in __load_upcase_table() local 722 ret = sector_read(sb, sector, &tmp_bh, 1); in __load_upcase_table() 731 uni = GET16(((u8 *)tmp_bh->b_data) + i); in __load_upcase_table() 734 (checksum >> 1) + *(((u8 *)tmp_bh->b_data) + in __load_upcase_table() 737 (checksum >> 1) + *(((u8 *)tmp_bh->b_data) + in __load_upcase_table() [all …]
|