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
|
// automatically generated by stateify.
package tun
import (
"gvisor.dev/gvisor/pkg/state"
)
func (d *Device) StateTypeName() string {
return "pkg/tcpip/link/tun.Device"
}
func (d *Device) StateFields() []string {
return []string{
"Queue",
"endpoint",
"notifyHandle",
"flags",
}
}
// +checklocksignore
func (d *Device) StateSave(stateSinkObject state.Sink) {
d.beforeSave()
stateSinkObject.Save(0, &d.Queue)
stateSinkObject.Save(1, &d.endpoint)
stateSinkObject.Save(2, &d.notifyHandle)
stateSinkObject.Save(3, &d.flags)
}
func (d *Device) afterLoad() {}
// +checklocksignore
func (d *Device) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &d.Queue)
stateSourceObject.Load(1, &d.endpoint)
stateSourceObject.Load(2, &d.notifyHandle)
stateSourceObject.Load(3, &d.flags)
}
func (r *tunEndpointRefs) StateTypeName() string {
return "pkg/tcpip/link/tun.tunEndpointRefs"
}
func (r *tunEndpointRefs) StateFields() []string {
return []string{
"refCount",
}
}
func (r *tunEndpointRefs) beforeSave() {}
// +checklocksignore
func (r *tunEndpointRefs) StateSave(stateSinkObject state.Sink) {
r.beforeSave()
stateSinkObject.Save(0, &r.refCount)
}
// +checklocksignore
func (r *tunEndpointRefs) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &r.refCount)
stateSourceObject.AfterLoad(r.afterLoad)
}
func init() {
state.Register((*Device)(nil))
state.Register((*tunEndpointRefs)(nil))
}
|