Lines Matching defs:region
37 * struct minidump_region - Minidump region
38 * @name : Name of the region to be dumped
41 * @address : Physical address of region to be dumped
42 * @size : Size of the region
55 * @enabled : if set to 1, this region would be copied during coredump
109 struct minidump_region region;
127 memcpy_fromio(®ion, ptr + i, sizeof(region));
128 if (le32_to_cpu(region.valid) == MINIDUMP_REGION_VALID) {
129 name = kstrndup(region.name, MAX_REGION_NAME_LENGTH - 1, GFP_KERNEL);
134 da = le64_to_cpu(region.address);
135 size = le64_to_cpu(region.size);