Auto-port 5.0: Fix IllegalReferenceCountException in AdaptiveByteBuf.deallocate()#16673
Merged
Conversation
…16654) Motivation: Fix IllegalReferenceCountException in AdaptiveByteBuf.deallocate() when JFR enabled when lot's of buffer is used, we noticed this error: ``` io.netty.util.IllegalReferenceCountException at AdaptiveByteBuf.rootParent(AdaptivePoolingAllocator.java:1653) at AdaptiveByteBuf.isDirect(AdaptivePoolingAllocator.java:1725) at AbstractBufferEvent.fill(AbstractBufferEvent.java:44) at AdaptiveByteBuf.deallocate(AdaptivePoolingAllocator.java:2110) at AbstractReferenceCountedByteBuf.handleRelease(AbstractReferenceCountedByteBuf.java:93) at AbstractReferenceCountedByteBuf.release(AbstractReferenceCountedByteBuf.java:83) at AdaptivePoolingAllocator$MagazineGroup.allocate(AdaptivePoolingAllocator.java:431) at AdaptivePoolingAllocator.allocate(AdaptivePoolingAllocator.java:271) at AdaptiveByteBufAllocator.newDirectBuffer(AdaptiveByteBufAllocator.java:67) ``` Modification: When MagazineGroup.allocate() exhausts all magazine stripes under high contention, the bail-out path calls buf.release() on an AdaptiveByteBuf that was obtained from newBuffer() but never initialised via init(). The buffer's rootParent field is therefore null. With JFR recording active, deallocate() fires a FreeBufferEvent before clearing rootParent. AbstractBufferEvent.fill() calls buf.isDirect() which delegates to rootParent().isDirect(), and rootParent() throws IllegalReferenceCountException when the field is null. Result: JFR events are emitted even under pressure (cherry picked from commit 66568d1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Auto-port of #16654 to 5.0
Cherry-picked commit: 66568d1
Motivation:
Fix IllegalReferenceCountException in AdaptiveByteBuf.deallocate() when JFR enabled when lot's of buffer is used, we noticed this error:
Modification:
Result:
JFR events are emitted even under pressure