Lines Matching refs:core
188 * Persistent and core logs share a lot of their implementation.
285 static void header_to_disk(struct log_header_core *core, struct log_header_disk *disk)
287 disk->magic = cpu_to_le32(core->magic);
288 disk->version = cpu_to_le32(core->version);
289 disk->nr_regions = cpu_to_le64(core->nr_regions);
292 static void header_from_disk(struct log_header_core *core, struct log_header_disk *disk)
294 core->magic = le32_to_cpu(disk->magic);
295 core->version = le32_to_cpu(disk->version);
296 core->nr_regions = le64_to_cpu(disk->nr_regions);
362 * core log constructor/destructor
407 DMWARN("couldn't allocate core log");
848 .name = "core",
890 DMWARN("couldn't register core log");