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 David.Edelsohn
Recipients David.Edelsohn, pitrou
Date 2014-09-12.18:20:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410546003.27.0.984640019214.issue22396@psf.upfronthosting.co.za>
In-reply-to
Content
As with Solaris and Issue10812, test_posix fadvise and fallocate fail on AIX.  Python is compiled with _LARGE_FILES, which changes the function signature for posix_fadvise and posix_fallocate so that off_t is "long long" on 32 bit system passed in two registers.  The Python call to those functions does not place the arguments in the correct registers, causing an EINVAL error.  This patch fixes the failures in a similar way to Solaris ZFS kludge for Issue10812.
History
Date User Action Args
2014-09-12 18:20:03David.Edelsohnsetrecipients: + David.Edelsohn, pitrou
2014-09-12 18:20:03David.Edelsohnsetmessageid: <1410546003.27.0.984640019214.issue22396@psf.upfronthosting.co.za>
2014-09-12 18:20:03David.Edelsohnlinkissue22396 messages
2014-09-12 18:20:03David.Edelsohncreate