Lines Matching refs:vtbl_rec
91 struct ubi_vtbl_record *vtbl_rec) in ubi_change_vtbl_record() argument
98 if (!vtbl_rec) in ubi_change_vtbl_record()
99 vtbl_rec = &empty_vtbl_record; in ubi_change_vtbl_record()
101 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC); in ubi_change_vtbl_record()
102 vtbl_rec->crc = cpu_to_be32(crc); in ubi_change_vtbl_record()
105 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record)); in ubi_change_vtbl_record()
129 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id]; in ubi_vtbl_rename_volumes() local
132 memcpy(vtbl_rec, &empty_vtbl_record, in ubi_vtbl_rename_volumes()
137 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes()
138 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes()
139 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes()
141 crc = crc32(UBI_CRC32_INIT, vtbl_rec, in ubi_vtbl_rename_volumes()
143 vtbl_rec->crc = cpu_to_be32(crc); in ubi_vtbl_rename_volumes()