From: David Goulet Date: Thu, 13 Dec 2012 18:58:31 +0000 (-0500) Subject: Fix: clear the fixme in high_throughput_limits X-Git-Tag: v2.1.0~59 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=bfdaf0fd64711ecd805ad13d5158269f0030c496;hp=f7079f6790ccfb78ec7115ccb5b1706f5c18ebfe;ds=inline Fix: clear the fixme in high_throughput_limits Signed-off-by: David Goulet --- diff --git a/tests/tools/streaming/high_throughput_limits b/tests/tools/streaming/high_throughput_limits index 2fbed3add..72850ead9 100755 --- a/tests/tools/streaming/high_throughput_limits +++ b/tests/tools/streaming/high_throughput_limits @@ -53,7 +53,7 @@ function set_bw_limit tc class add dev $DEFAULT_IF parent 1: classid 1:1 htb rate ${limit}kbit ceil ${limit}kbit >/dev/null 2>&1 # FIXME: Timeout when setting limits on ctrl port. - #tc filter add dev $DEFAULT_IF parent 1: protocol ip u32 match ip dport $SESSIOND_CTRL_PORT 0xffff flowid 1:1 >/dev/null 2>&1 + tc filter add dev $DEFAULT_IF parent 1: protocol ip u32 match ip dport $SESSIOND_CTRL_PORT 0xffff flowid 1:1 >/dev/null 2>&1 tc filter add dev $DEFAULT_IF parent 1: protocol ip u32 match ip dport $SESSIOND_DATA_PORT 0xffff flowid 1:1 >/dev/null 2>&1 print_ok @@ -84,7 +84,7 @@ function enable_lttng_consumer function run_apps { for i in `seq 1 $NR_APP_ITER`; do - ./$CURDIR/$BIN_NAME $NR_ITER & >/dev/null 2>&1 + LTTNG_UST_REGISTER_TIMEOUT=-1 ./$CURDIR/$BIN_NAME $NR_ITER & >/dev/null 2>&1 done }