summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/device/device_state_autogen.go
blob: 8a28a4be4794fa7d282b9e81a056d8d5815b2674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// automatically generated by stateify.

package device

import (
	"gvisor.dev/gvisor/pkg/state"
)

func (x *Registry) StateTypeName() string {
	return "pkg/sentry/device.Registry"
}

func (x *Registry) StateFields() []string {
	return []string{
		"lastAnonDeviceMinor",
		"devices",
	}
}

func (x *Registry) beforeSave() {}

func (x *Registry) StateSave(m state.Sink) {
	x.beforeSave()
	m.Save(0, &x.lastAnonDeviceMinor)
	m.Save(1, &x.devices)
}

func (x *Registry) afterLoad() {}

func (x *Registry) StateLoad(m state.Source) {
	m.Load(0, &x.lastAnonDeviceMinor)
	m.Load(1, &x.devices)
}

func (x *ID) StateTypeName() string {
	return "pkg/sentry/device.ID"
}

func (x *ID) StateFields() []string {
	return []string{
		"Major",
		"Minor",
	}
}

func (x *ID) beforeSave() {}

func (x *ID) StateSave(m state.Sink) {
	x.beforeSave()
	m.Save(0, &x.Major)
	m.Save(1, &x.Minor)
}

func (x *ID) afterLoad() {}

func (x *ID) StateLoad(m state.Source) {
	m.Load(0, &x.Major)
	m.Load(1, &x.Minor)
}

func (x *Device) StateTypeName() string {
	return "pkg/sentry/device.Device"
}

func (x *Device) StateFields() []string {
	return []string{
		"ID",
		"last",
	}
}

func (x *Device) beforeSave() {}

func (x *Device) StateSave(m state.Sink) {
	x.beforeSave()
	m.Save(0, &x.ID)
	m.Save(1, &x.last)
}

func (x *Device) afterLoad() {}

func (x *Device) StateLoad(m state.Source) {
	m.Load(0, &x.ID)
	m.Load(1, &x.last)
}

func init() {
	state.Register((*Registry)(nil))
	state.Register((*ID)(nil))
	state.Register((*Device)(nil))
}