Lines Matching refs:vtbl_rec
81 struct ubi_vtbl_record *vtbl_rec) in ubi_change_vtbl_record() argument
90 if (!vtbl_rec) in ubi_change_vtbl_record()
91 vtbl_rec = &empty_vtbl_record; in ubi_change_vtbl_record()
93 crc = crc32(UBI_CRC32_INIT, vtbl_rec, UBI_VTBL_RECORD_SIZE_CRC); in ubi_change_vtbl_record()
94 vtbl_rec->crc = cpu_to_be32(crc); in ubi_change_vtbl_record()
97 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record)); in ubi_change_vtbl_record()
132 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id]; in ubi_vtbl_rename_volumes() local
135 memcpy(vtbl_rec, &empty_vtbl_record, in ubi_vtbl_rename_volumes()
140 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes()
141 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes()
142 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes()
144 crc = crc32(UBI_CRC32_INIT, vtbl_rec, in ubi_vtbl_rename_volumes()
146 vtbl_rec->crc = cpu_to_be32(crc); in ubi_vtbl_rename_volumes()