...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/iov_settings.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/schema2

     1  /*
     2   * HCS API
     3   *
     4   * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     5   *
     6   * API version: 2.4
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package hcsschema
    11  
    12  type IovSettings struct {
    13  	// The weight assigned to this port for I/O virtualization (IOV) offloading.
    14  	// Setting this to 0 disables IOV offloading.
    15  	OffloadWeight *uint32 `json:"OffloadWeight,omitempty"`
    16  
    17  	// The number of queue pairs requested for this port for I/O virtualization (IOV) offloading.
    18  	QueuePairsRequested *uint32 `json:"QueuePairsRequested,omitempty"`
    19  
    20  	// The interrupt moderation mode for I/O virtualization (IOV) offloading.
    21  	InterruptModeration *InterruptModerationName `json:"InterruptModeration,omitempty"`
    22  }
    23  

View as plain text