Skip to content

Commit

Permalink
armv7m_nvic: Fix m-security subsection name
Browse files Browse the repository at this point in the history
The vmstate save/load code insists that subsections of a VMState must
have names which include their parent VMState's name as a leading
substring.  Unfortunately it neither documents this nor checks it on
device init or state save, but instead fails state load with a
confusing error message ("Missing section footer for armv7m_nvic").

Fix the name of the m-security subsection of the NVIC, so that
state save/load works correctly for the security-enabled NVIC.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20180727113854.20283-2-peter.maydell@linaro.org
  • Loading branch information
pm215 committed Jul 30, 2018
1 parent d1fb710 commit 942566f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/intc/armv7m_nvic.c
Expand Up @@ -2064,7 +2064,7 @@ static int nvic_security_post_load(void *opaque, int version_id)
}

static const VMStateDescription vmstate_nvic_security = {
.name = "nvic/m-security",
.name = "armv7m_nvic/m-security",
.version_id = 1,
.minimum_version_id = 1,
.needed = nvic_security_needed,
Expand Down

0 comments on commit 942566f

Please sign in to comment.