diff --git a/autorun.sh b/autorun.sh
index d615a7abbd588a04a7dc19f8acf9121b149c7de4..ea0ed3d79bada305e842961a1008a3cebed5b1af 100755
--- a/autorun.sh
+++ b/autorun.sh
@@ -54,6 +54,10 @@ case "$(uname -r)" in
 
         MIN_THREADS=2 run_memcached_conn_scan --caladan
         MIN_THREADS=2 run_memcached_qps_scan --caladan
+
+        # Extra experiments for Caladan
+        run_exp -e memcached_conn_scan --caladan -t 4
+        run_exp -e memcached_conn_scan --caladan -t 6
         ;;
     *)
         echo "Unsupported kernel"
diff --git a/experiments/memcached.shared.sh b/experiments/memcached.shared.sh
index fcd1fa7e2e0f309d0c1af400f435640c86d04ef4..9b5c6c4451d9bdfca422388c0607af28373137aa 100644
--- a/experiments/memcached.shared.sh
+++ b/experiments/memcached.shared.sh
@@ -66,6 +66,7 @@ memcached_pre_start() {
 
     if [ "$FSTACK" == "true" ]; then
         MEMCACHED="$MEMCACHED_FSTACK"
+        PERF_EXTRA_ARGS="-D 15000" # Account for S-Stack connection establishment delay
     elif [ "$CALADAN" == "true" ]; then
         MEMCACHED="$MEMCACHED_CALADAN"
         MEMCACHED_ARGS="$MEMCACHED_ARGS $CALADAN_CONFIG -p 11211"
diff --git a/experiments/perf.shared.sh b/experiments/perf.shared.sh
index ab082a285df03e351c90d855d3bbc88dd92cf3c0..ab8c8b8f44a693145b4b6841ba8c6afe8b5cb425 100644
--- a/experiments/perf.shared.sh
+++ b/experiments/perf.shared.sh
@@ -1,5 +1,5 @@
 perf_stat_start() {
-    $PERF stat -C 0-$((THREADS - 1)) -e LLC-load-misses:u,LLC-load-misses:k,LLC-loads:u,LLC-loads:k,LLC-store-misses:u,LLC-store-misses:k,LLC-stores:u,LLC-stores:k,task-clock,cycles:u,cycles:k,instructions:u,instructions:k -o "$DATA_OUT/stat_$1$EXP_AUX_SUFFIX.txt" &
+    $PERF stat $PERF_EXTRA_ARGS -C 0-$((THREADS - 1)) -e LLC-load-misses:u,LLC-load-misses:k,LLC-loads:u,LLC-loads:k,LLC-store-misses:u,LLC-store-misses:k,LLC-stores:u,LLC-stores:k,task-clock,cycles:u,cycles:k,instructions:u,instructions:k -o "$DATA_OUT/stat_$1$EXP_AUX_SUFFIX.txt" &
     PERF_STAT_PID=$!
 }