JDK-8156181 : UL: File size limit on 32 bit Linux
  • Type: Bug
  • Component: hotspot
  • Sub-Component: runtime
  • Affected Version: 9
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2016-05-06
  • Updated: 2016-07-14
  • Resolved: 2016-06-20
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b127Fixed
Related Reports
Relates :  
Description
http://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/2016-May/019311.html
http://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/2016-May/019380.html

LogFileOutput for UL uses fopen(3) to open logfile.
However, it might not handle > 2GB size file.

  http://man7.org/linux/man-pages/man2/open.2.html

Actually, JDK-7122222 added _FILE_OFFSET_BITS macro for GC log.
I guess we need this macro for UL.