srpt/Testing.txt: Limit to 80 columns

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4652 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2012-12-18 09:51:08 +00:00
parent 12313bf114
commit 0fd03d44b1

View File

@@ -78,12 +78,15 @@ Index: srpt/src/ib_srpt.c
* Run the following command on a target system:
while true; do /etc/init.d/scst stop; sleep 3; /etc/init.d/scst start; sleep 5; done
while true; do \
/etc/init.d/scst stop; sleep 3; /etc/init.d/scst start; sleep 5; \
done
and the following commands on an initiator system:
target_id="$(/usr/sbin/ibsrpdm -c -d /dev/infiniband/umad0)"
while true; do date; rmmod ib_srp; modprobe ib_srp; echo "${target_id}" > /sys/class/infiniband_srp/srp-mlx4_0-1/add_target; sleep 2; done
while true; do date; rmmod ib_srp; modprobe ib_srp; echo "${target_id}" \
> /sys/class/infiniband_srp/srp-mlx4_0-1/add_target; sleep 2; done
and verify that nothing unexpected happens.