hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/net/rxrpc/sendmsg.c
....@@ -733,7 +733,7 @@
733733 if (call->tx_total_len != -1 ||
734734 call->tx_pending ||
735735 call->tx_top != 0)
736
- goto error_put;
736
+ goto out_put_unlock;
737737 call->tx_total_len = p.call.tx_total_len;
738738 }
739739 }
....@@ -753,7 +753,7 @@
753753 fallthrough;
754754 case 1:
755755 if (p.call.timeouts.hard > 0) {
756
- j = msecs_to_jiffies(p.call.timeouts.hard);
756
+ j = p.call.timeouts.hard * HZ;
757757 now = jiffies;
758758 j += now;
759759 WRITE_ONCE(call->expect_term_by, j);