Lines Matching refs:vtbl_rec
98 struct ubi_vtbl_record *vtbl_rec) in ubi_change_vtbl_record() argument
105 if (!vtbl_rec) in ubi_change_vtbl_record()
106 vtbl_rec = &empty_vtbl_record; in ubi_change_vtbl_record()
108 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC); in ubi_change_vtbl_record()
109 vtbl_rec->crc = cpu_to_be32(crc); in ubi_change_vtbl_record()
112 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record)); in ubi_change_vtbl_record()
136 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id]; in ubi_vtbl_rename_volumes() local
139 memcpy(vtbl_rec, &empty_vtbl_record, in ubi_vtbl_rename_volumes()
144 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes()
145 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes()
146 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes()
148 crc = crc32(UBI_CRC32_INIT, vtbl_rec, in ubi_vtbl_rename_volumes()
150 vtbl_rec->crc = cpu_to_be32(crc); in ubi_vtbl_rename_volumes()