[issue11341] test_os fails

2011-02-28 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

Thanks for the investigation, Charles-François. I'm closing as invalid, then.

--
resolution:  -> invalid
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-28 Thread Charles-Francois Natali

Charles-Francois Natali  added the comment:

Alright, digging a little further, it's a kernel bug introduced by this commit:

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4a3956c790290efeb647bbb0c3a90476bb57800e

Note that this should only affect 64-bit systems (comparison between
long long int and unsigned long int). Also, it's only present since
2.6.37.

It has been fixed by this commit:

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cccb5a1e698535fa5a734ffe21c7061c97f8d8c5

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Charles-Francois Natali

Charles-Francois Natali  added the comment:

> 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;

--
nosy: +neologix

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

Westley Martínez  added the comment:

> You are not running under a VM or something?

No

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

> rev 88657
> Arch Linux 2.6.37 x86_64 with glibc2.6
> 64-bit, little endian

You are not running under a VM or something?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

Westley Martínez  added the comment:

rev 88657
Arch Linux 2.6.37 x86_64 with glibc2.6
64-bit, little endian

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Antoine Pitrou

Antoine Pitrou  added the comment:

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.)

--
assignee:  -> giampaolo.rodola
nosy: +giampaolo.rodola, pitrou

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread SilentGhost

SilentGhost  added the comment:

Which revision are you trying with? I cannot reproduce this with r88656

--
nosy: +SilentGhost

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11341] test_os fails

2011-02-26 Thread Westley Martínez

New submission from Westley Martínez :

test_invalid_offset failed on linux2.

--
components: Tests
files: test_os
messages: 129589
nosy: anikom15
priority: normal
severity: normal
status: open
title: test_os fails
versions: Python 3.3
Added file: http://bugs.python.org/file20924/test_os

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com