BUG/MAJOR: xprt-quic: do not queue qc timer if not set

Do not queue the pto/loss-detection timer if set to TICK_ETERNITY. This
usage is invalid with the scheduler and cause a BUG_ON trigger.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 8501e3f..cee9322 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -647,7 +647,8 @@
 	if (tick_isset(pto))
 		qc->timer = pto;
  out:
-	task_schedule(qc->timer_task, qc->timer);
+	if (qc->timer != TICK_ETERNITY)
+		task_schedule(qc->timer_task, qc->timer);
 	TRACE_LEAVE(QUIC_EV_CONN_STIMER, ctx->conn, pktns);
 }