> +} > + > Â static int ima_alloc_kexec_file_buf(size_t segment_size) > Â { > Â /* > @@ -60,6 +80,7 @@ static int ima_alloc_kexec_file_buf(size_t segment_size) > Â out: > Â ima_kexec_file.read_pos = 0; > Â ima_kexec_file.count = sizeof(struct ima_kexec_hdr); /* reserved space > */ > + ima_measure_kexec_event("kexec_load"); > Â > Â return 0; > Â } > @@ -201,6 +222,8 @@ static int ima_update_kexec_buffer(struct notifier_block *self, > Â return ret; > Â } > Â > + ima_measure_kexec_event("kexec_execute"); > + > Â ret = ima_dump_measurement_list(&buf_size, &buf, > Â kexec_segment_size); > Â After fixing up and applying this patch set to 6.14.0-rc1, I'm not seeing the "kexec_execute". Even after changing the default extra memory, I'm still not seeing the measurement. Mimi