> Regarding comment #34, can you add details on how you are doing port failover
> (using ibportstate?)

> and what traffic you are running (what is the netperf
> command line?)?

I have opensm running on host 11.4.3.175.
Host 11.4.3.178 is connected to switch lid 5 ports 7 and 8.
I run on 11.4.3.175:

#!/bin/bash
while
        ./netperf -D -H 11.4.3.178
do
        date
        sleep 5
done

and at the same time, also on 11.4.3.175:


#!/bin/bash
lid=5;
ports="7 8";
while
        true
do
        for port in $ports
        do
                echo ibportstate $lid $port disable
                ibportstate $lid $port disable
                sleep 5
                echo ibportstate $lid $port enable
                ibportstate $lid $port enable
                sleep 5
        done
done

_______________________________________________
general mailing list
[email protected]
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to