...
1 package uvm
2
3 import (
4 "errors"
5
6 "github.com/Microsoft/hcsshim/internal/memory"
7 "github.com/Microsoft/hcsshim/internal/protocol/guestrequest"
8 )
9
10 const (
11
12
13 MaxVPMEMCount = 128
14
15
16
17 DefaultVPMEMCount = 64
18
19
20
21 DefaultVPMemSizeBytes = 4 * memory.GiB
22 )
23
24 var (
25 errNotSupported = errors.New("not supported")
26 errBadUVMOpts = errors.New("UVM options incorrect")
27
28
29 MaxSCSIControllers = uint32(len(guestrequest.ScsiControllerGuids))
30 )
31
View as plain text