Lines Matching refs:core
186 * Persistent and core logs share a lot of their implementation.
280 static void header_to_disk(struct log_header_core *core, struct log_header_disk *disk)
282 disk->magic = cpu_to_le32(core->magic);
283 disk->version = cpu_to_le32(core->version);
284 disk->nr_regions = cpu_to_le64(core->nr_regions);
287 static void header_from_disk(struct log_header_core *core, struct log_header_disk *disk)
289 core->magic = le32_to_cpu(disk->magic);
290 core->version = le32_to_cpu(disk->version);
291 core->nr_regions = le64_to_cpu(disk->nr_regions);
358 * core log constructor/destructor
403 DMWARN("couldn't allocate core log");
825 .name = "core",
867 DMWARN("couldn't register core log");