JDK-8258142 : Simplify G1RedirtyCardsQueue
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 17
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2020-12-12
  • Updated: 2022-06-27
  • Resolved: 2020-12-14
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 17
17 b02Fixed
Related Reports
Relates :  
Description
G1RedirtyCardsQueue currently contains a local qset for gathering the buffers generated by the current thread, reducing contention on the singleton global qset (JDK-8162929). Having the queue contain a local qset was chosen over having a separate local qset to simplify usage, at the expense of a bit more implementation complexity.  However, in the interest of simplifying the PtrQueue hiearchy it would be better to separate them.

Comments
Changeset: 1ff0f167 Author: Kim Barrett <kbarrett@openjdk.org> Date: 2020-12-14 16:13:23 +0000 URL: https://git.openjdk.java.net/jdk/commit/1ff0f167
14-12-2020