On 2/23/26 9:32 AM, Peter Maydell wrote:
The migrate_add_blocker() function documents that if it fails it will
free the Error it is passed via its reasonp argument and set reasonp
to NULL. That means that in kvm_arm_enable_mte() we don't need to
call error_free(mte_migration_blocker) in the failure codepath.
Doing so is harmless because error_free(NULL) is permitted and does
nothing, but we can remove the unnecessary code.
Signed-off-by: Peter Maydell <[email protected]>
---
This seems to be the only caller of migrate_add_blocker() that
was doing this.
---
target/arm/kvm.c | 1 -
1 file changed, 1 deletion(-)
Reviewed-by: Pierrick Bouvier <[email protected]>