Skip to content

Commit c5df899

Browse files
committed
fix device path with iommu params
Signed-off-by: Ashraf Fouda <[email protected]>
1 parent 342a394 commit c5df899

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/vm/ch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func (m *Machine) Run(ctx context.Context, socket, logs string) (pkg.MachineInfo
9595

9696
var devices []string
9797
for _, dev := range m.Devices {
98-
devices = append(devices, fmt.Sprintf("path=/sys/bus/pci/devices/%s/", dev))
98+
devices = append(devices, fmt.Sprintf("path=/sys/bus/pci/devices/%s", dev))
9999
}
100100

101101
if len(devices) > 0 {

0 commit comments

Comments
 (0)