Lines Matching refs:fmpl
555 struct ubi_fm_scan_pool *fmpl, *fmpl_wl; in ubi_attach_fastmap() local
585 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos); in ubi_attach_fastmap()
586 fm_pos += sizeof(*fmpl); in ubi_attach_fastmap()
589 if (be32_to_cpu(fmpl->magic) != UBI_FM_POOL_MAGIC) { in ubi_attach_fastmap()
591 be32_to_cpu(fmpl->magic), UBI_FM_POOL_MAGIC); in ubi_attach_fastmap()
605 pool_size = be16_to_cpu(fmpl->size); in ubi_attach_fastmap()
607 fm->max_pool_size = be16_to_cpu(fmpl->max_size); in ubi_attach_fastmap()
755 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free); in ubi_attach_fastmap()
1128 struct ubi_fm_scan_pool *fmpl, *fmpl_wl; in ubi_write_fastmap() local
1190 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos); in ubi_write_fastmap()
1191 fm_pos += sizeof(*fmpl); in ubi_write_fastmap()
1192 fmpl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC); in ubi_write_fastmap()
1193 fmpl->size = cpu_to_be16(ubi->fm_pool.size); in ubi_write_fastmap()
1194 fmpl->max_size = cpu_to_be16(ubi->fm_pool.max_size); in ubi_write_fastmap()
1197 fmpl->pebs[i] = cpu_to_be32(ubi->fm_pool.pebs[i]); in ubi_write_fastmap()