This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients SilentGhost, giampaolo.rodola, neologix, pitrou, westley.martinez
Date 2011-02-26.22:21:45
SpamBayes Score 0.042320844
Marked as misclassified No
Message-id <1298758905.8.0.691563693808.issue11341@psf.upfronthosting.co.za>
In-reply-to
Content
> Errno 75 is EOVERFLOW here (Linux), which doesn't seem to be mentioned in sendfile's man page.
> Can you describe your system? (CPU architecture, bitness, endianness, glibc/kernel version, etc.)

Just checked the source code:
in fs/read_write.c:do_sendfile

 841         pos = *ppos;
 842         if (unlikely(pos + count > max)) {
 843                 retval = -EOVERFLOW;
 844                 if (pos >= max)
 845                         goto fput_out;
 846                 count = max - pos;
 847         }

and 

 869         if (*ppos > max)
 870                 retval = -EOVERFLOW;
History
Date User Action Args
2011-02-26 22:21:45neologixsetrecipients: + neologix, pitrou, giampaolo.rodola, SilentGhost, westley.martinez
2011-02-26 22:21:45neologixsetmessageid: <1298758905.8.0.691563693808.issue11341@psf.upfronthosting.co.za>
2011-02-26 22:21:45neologixlinkissue11341 messages
2011-02-26 22:21:45neologixcreate