summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/vfs/vfs_state_autogen.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry/vfs/vfs_state_autogen.go')
-rwxr-xr-xpkg/sentry/vfs/vfs_state_autogen.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/sentry/vfs/vfs_state_autogen.go b/pkg/sentry/vfs/vfs_state_autogen.go
index d0221f0ff..1f505c4bf 100755
--- a/pkg/sentry/vfs/vfs_state_autogen.go
+++ b/pkg/sentry/vfs/vfs_state_autogen.go
@@ -85,6 +85,7 @@ func (x *Filesystem) save(m state.Map) {
x.beforeSave()
m.Save("refs", &x.refs)
m.Save("vfs", &x.vfs)
+ m.Save("fsType", &x.fsType)
m.Save("impl", &x.impl)
}
@@ -92,6 +93,7 @@ func (x *Filesystem) afterLoad() {}
func (x *Filesystem) load(m state.Map) {
m.Load("refs", &x.refs)
m.Load("vfs", &x.vfs)
+ m.Load("fsType", &x.fsType)
m.Load("impl", &x.impl)
}