summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/mm/mm_state_autogen.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/mm/mm_state_autogen.go')
-rwxr-xr-xpkg/sentry/mm/mm_state_autogen.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkg/sentry/mm/mm_state_autogen.go b/pkg/sentry/mm/mm_state_autogen.go
index ef95c2836..2d0e5f5f7 100755
--- a/pkg/sentry/mm/mm_state_autogen.go
+++ b/pkg/sentry/mm/mm_state_autogen.go
@@ -33,8 +33,8 @@ func (x *ioResult) load(m state.Map) {
func (x *AIOContext) beforeSave() {}
func (x *AIOContext) save(m state.Map) {
x.beforeSave()
- if !state.IsZeroValue(x.dead) {
- m.Failf("dead is %v, expected zero", x.dead)
+ if !state.IsZeroValue(&x.dead) {
+ m.Failf("dead is %#v, expected zero", &x.dead)
}
m.Save("results", &x.results)
m.Save("maxOutstanding", &x.maxOutstanding)
@@ -141,11 +141,11 @@ func (x *ioEntry) load(m state.Map) {
func (x *MemoryManager) save(m state.Map) {
x.beforeSave()
- if !state.IsZeroValue(x.active) {
- m.Failf("active is %v, expected zero", x.active)
+ if !state.IsZeroValue(&x.active) {
+ m.Failf("active is %#v, expected zero", &x.active)
}
- if !state.IsZeroValue(x.captureInvalidations) {
- m.Failf("captureInvalidations is %v, expected zero", x.captureInvalidations)
+ if !state.IsZeroValue(&x.captureInvalidations) {
+ m.Failf("captureInvalidations is %#v, expected zero", &x.captureInvalidations)
}
m.Save("p", &x.p)
m.Save("mfp", &x.mfp)