Control: -1 found 3.42-1 On Thu, Nov 25, 2010 at 03:08:30PM +0100, Lionel Elie Mamane wrote: > stat(2) says: > > ERRORS > (...) > EOVERFLOW > (stat()) path refers to a file whose size cannot be represented in the > type off_t. This can occur when an application compiled on a 32-bit > platform without -D_FILE_OFFSET_BITS=64 calls stat() on a file whose > size exceeds (2<<31)-1 bits. > > 1) It would seem to me that the condition for this to occur would be a > file whose size exceeds (2<<31)-1 *bytes*, not "bits". Still applicable to manpages 3.43. > 2) I got this for an overflow on st_ino (64 bit kernel, 32 bit > userland, CIFS mount of a Windows-served share). Confirmed with OpenGroup: http://pubs.opengroup.org/onlinepubs/009695399/functions/stat.html [EOVERFLOW] The file size in bytes or the number of blocks allocated to the file or the file serial number cannot be represented correctly in the structure pointed to by buf. egblic: sysdeps/unix/sysv/linux/xstatconv.c it can be st_ino, st_size or st_blocks > So I'd suggest this text become something along the lines of: > > path or fd refers to a file for which the value of a field of the > stat structure cannot be represented in its type. This usually > occurs with applications compiled on a 32-bit platform without > -D_FILE_OFFSET_BITS=64. The most common occurrence is when such an > application calls stat() on a file whose size exceeds > (2<<31)-1 bytes; but it can also occur e.g. for the st_ino field, > e.g. when such an application is run on a 64 bit kernel. An other proposal attached. -- Simon Paillard
diff --git a/man2/stat.2 b/man2/stat.2 index 0b82e1d..fb2f9dd 100644 --- a/man2/stat.2 +++ b/man2/stat.2 @@ -343,15 +343,18 @@ is not a directory. .B EOVERFLOW .RB ( stat ()) .I path -refers to a file whose size cannot be represented in the type -.IR off_t . -This can occur when an application compiled on a 32-bit platform without +refers to a file whose size, inode number, or number of blocks cannot be represented in their respective type +.IR off_t , +.IR ino_t , +or +.IR blkcnt_t . +This usually occurs when an application compiled on a 32-bit platform without .I -D_FILE_OFFSET_BITS=64 calls .BR stat () on a file whose size exceeds .I (1<<31)-1 -bits. +bytes. .SH "CONFORMING TO" These system calls conform to SVr4, 4.3BSD, POSIX.1-2001. .\" SVr4 documents additional