Displaying 4 results from an estimated 4 matches for "safe_sendfile".
2015 Jul 16
3
[Patch] Fix hang in safe_sendfile on SmartOS
# HG changeset patch
# User Sebastian Wiedenroth <sebastian.wiedenroth at skylime.net>
# Date 1437050484 -7200
# Thu Jul 16 14:41:24 2015 +0200
# Node ID 7ef3a533b097e8e6590e754dc56ad308ab29233b
# Parent e3640ccaa76d77a9658126d1f8f306480dad8af7
Fix hang in safe_sendfile on SmartOS
The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
code and documented in the man page. This error code needs to be handled or
else dovecot will retry the sendfile call endlessly and hang.
diff -r e3640ccaa76d -r 7ef3a533b097 src/lib/sendfile-util.c
--- a/s...
2015 Sep 07
1
[Patch] Fix hang in safe_sendfile on SmartOS
> Am 07.09.2015 um 21:34 schrieb Timo Sirainen <tss at iki.fi>:
>
> On 07/16/2015 06:03 PM, Sebastian Wiedenroth wrote:
>> Fix hang in safe_sendfile on SmartOS
>>
>> The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
>> code and documented in the man page. This error code needs to be handled or
>> else dovecot will retry the sendfile call endlessly and hang.
>
> Committed .. However,...
2015 Sep 07
0
[Patch] Fix hang in safe_sendfile on SmartOS
On 07 Sep 2015, at 23:19, Sebastian Wiedenroth <sebastian.wiedenroth at skylime.net> wrote:
>
>
>> Am 07.09.2015 um 21:34 schrieb Timo Sirainen <tss at iki.fi>:
>>
>> On 07/16/2015 06:03 PM, Sebastian Wiedenroth wrote:
>>> Fix hang in safe_sendfile on SmartOS
>>>
>>> The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
>>> code and documented in the man page. This error code needs to be handled or
>>> else dovecot will retry the sendfile call endlessly and hang.
>>
>>...
2015 Sep 07
0
[Patch] Fix hang in safe_sendfile on SmartOS
On 07/16/2015 06:03 PM, Sebastian Wiedenroth wrote:
> Fix hang in safe_sendfile on SmartOS
>
> The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
> code and documented in the man page. This error code needs to be handled or
> else dovecot will retry the sendfile call endlessly and hang.
Committed .. However, I think a more important b...