Skip to content

Commit

Permalink
Remove "issm" device from required list
Browse files Browse the repository at this point in the history
"issm" devices should be created only if link type is InfiniBand.
It's not required for Ethernet devices.

Signed-off-by: Ivan Kolodiazhnyi <[email protected]>
  • Loading branch information
e0ne committed Sep 16, 2024
1 parent be484a8 commit c1873a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resources/rdma_device_spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type rdmaDeviceSpec struct {
}

// Required RDMA devices
var requiredRdmaDevices = []string{"issm", "rdma_cm", "umad", "uverbs"}
var requiredRdmaDevices = []string{"rdma_cm", "umad", "uverbs"}

func NewRdmaDeviceSpec(rdmaDevs []string) types.RdmaDeviceSpec {
return &rdmaDeviceSpec{rdmaDevs: rdmaDevs}
Expand Down

0 comments on commit c1873a6

Please sign in to comment.