binctr/vendor/github.com/Microsoft/hcsshim/internal/uvm/constants.go
Jess Frazelle 94d1cfbfbf
update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-25 12:27:46 -04:00

15 lines
368 B
Go

package uvm
import "fmt"
const (
// MaxVPMEM is the maximum number of VPMem devices that may be added to an LCOW
// utility VM
MaxVPMEM = 128
// DefaultVPMEM is the default number of VPMem devices that may be added to an LCOW
// utility VM if the create request doesn't specify how many.
DefaultVPMEM = 64
)
var errNotSupported = fmt.Errorf("not supported")