Lines Matching refs:vtbl_rec
101 struct ubi_vtbl_record *vtbl_rec) in ubi_change_vtbl_record() argument
108 if (!vtbl_rec) in ubi_change_vtbl_record()
109 vtbl_rec = &empty_vtbl_record; in ubi_change_vtbl_record()
111 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC); in ubi_change_vtbl_record()
112 vtbl_rec->crc = cpu_to_be32(crc); in ubi_change_vtbl_record()
115 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record)); in ubi_change_vtbl_record()
139 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id]; in ubi_vtbl_rename_volumes() local
142 memcpy(vtbl_rec, &empty_vtbl_record, in ubi_vtbl_rename_volumes()
147 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes()
148 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes()
149 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes()
151 crc = crc32(UBI_CRC32_INIT, vtbl_rec, in ubi_vtbl_rename_volumes()
153 vtbl_rec->crc = cpu_to_be32(crc); in ubi_vtbl_rename_volumes()