summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/schema2/interrupt_moderation_mode.go
blob: a614d63bd7255984a57c48f9bda4f1b282703429 (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
/*
 * HCS API
 *
 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
 *
 * API version: 2.4
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 */

package hcsschema

type InterruptModerationName string

// The valid interrupt moderation modes for I/O virtualization (IOV) offloading.
const (
	DefaultName  InterruptModerationName = "Default"
	AdaptiveName InterruptModerationName = "Adaptive"
	OffName      InterruptModerationName = "Off"
	LowName      InterruptModerationName = "Low"
	MediumName   InterruptModerationName = "Medium"
	HighName     InterruptModerationName = "High"
)

type InterruptModerationValue uint32

const (
	DefaultValue InterruptModerationValue = iota
	AdaptiveValue
	OffValue
	LowValue    InterruptModerationValue = 100
	MediumValue InterruptModerationValue = 200
	HighValue   InterruptModerationValue = 300
)

var InterruptModerationValueToName = map[InterruptModerationValue]InterruptModerationName{
	DefaultValue:  DefaultName,
	AdaptiveValue: AdaptiveName,
	OffValue:      OffName,
	LowValue:      LowName,
	MediumValue:   MediumName,
	HighValue:     HighName,
}