From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 4/8] nntp: do not repeat result on blocked write
Date: Fri, 25 Sep 2015 02:27:53 +0000 [thread overview]
Message-ID: <20150925022757.6915-5-e@80x24.org> (raw)
In-Reply-To: <20150925022757.6915-1-e@80x24.org>
Oops, we must increment our range even if we yield or
get blocked on output buffering.
---
lib/PublicInbox/NNTP.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/PublicInbox/NNTP.pm b/lib/PublicInbox/NNTP.pm
index dd033e8..7e2c2ab 100644
--- a/lib/PublicInbox/NNTP.pm
+++ b/lib/PublicInbox/NNTP.pm
@@ -508,8 +508,8 @@ sub long_response ($$$$) {
my $err;
do {
eval { $cb->(\$beg) };
- } until (($err = $@) || $self->{closed} || $yield ||
- $self->{write_buf_size} || ++$beg > $end);
+ } until (($err = $@) || $self->{closed} ||
+ ++$beg > $end || $yield || $self->{write_buf_size});
ualarm(0);
if ($err || $self->{closed}) {
--
EW
next prev parent reply other threads:[~2015-09-25 2:27 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-25 2:27 [PATCH 0/8] nntp: more fixes and tiny speedups Eric Wong
2015-09-25 2:27 ` [PATCH 1/8] nntp: HDR allows metadata prefixed with ':' Eric Wong
2015-09-25 2:27 ` [PATCH 2/8] nntp: consistently use 501 for unsupported LIST Eric Wong
2015-09-25 2:27 ` [PATCH 3/8] searchidx: remove unused sub: next_doc_id Eric Wong
2015-09-25 2:27 ` Eric Wong [this message]
2015-09-25 2:27 ` [PATCH 5/8] nntp: prefix FD on every log line Eric Wong
2015-09-25 2:27 ` [PATCH 6/8] git: signal-safety for pipe writes Eric Wong
2015-09-25 2:27 ` [PATCH 7/8] git: use fields for GitCatFile Eric Wong
2015-09-25 2:27 ` [PATCH 8/8] nntp: avoid signals for long responses Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150925022757.6915-5-e@80x24.org \
--to=e@80x24.org \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).