-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8317262: LockStack::contains(oop) fails "assert(t->is_Java_thread()) failed: incorrect cast to JavaThread" #16047
Conversation
…failed: incorrect cast to JavaThread"
👋 Welcome back dholmes! A progress list of the required criteria for merging this PR into |
/contributor add @pchilano |
@dholmes-ora |
@dholmes-ora The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks reasonable.
@dholmes-ora This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 109 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
Thanks for the review @tstuefe - and welcome back :) |
FWIW, there's a similar static function in sychronizer.cpp:
There might be an opportunity to combine/reuse/deduplicate this implementation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Patricio
Thanks for the review @pchilano . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thanks!
Thanks for looking at this @stefank !
They are not really that similar. Both are interested only in JavaThread's but one checks the current thread and the other checks a target thread. |
Thanks for the review @rkennke ! |
Still. There's something fishy going on when the call sites look like this: and both is_lock_owned and is_owning_thread filters away non-JavaThreads. IMHO, I think that the entire StackWatermark handling should be pulled out of LockStack. Code that inspects oops of other threads need to start StackWatermark processing of the target thread. The StackWatermark processing inside LockStack looks like a workaround because some handshake operation forgot to do so. The patch seems to solve the immediate failure is OK to push, but I'd like to have a follow-up discussion on why we have this StackWatermark processing here. |
I can't comment on the stackwatermark processing aspect. Just one follow up: Thank again for looking at this. |
/integrate |
Going to push as commit 4ea1b99.
Your commit was automatically rebased without conflicts. |
@dholmes-ora Pushed as commit 4ea1b99. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review this simple fix to
LockStack::is_owning_thread()
that allows it to be called by a non-JavaThread. Thanks to @pchilano for the regression test.Testing:
Thanks
Progress
Issue
Reviewers
Contributors
<pchilanomate@openjdk.org>
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/16047/head:pull/16047
$ git checkout pull/16047
Update a local copy of the PR:
$ git checkout pull/16047
$ git pull https://git.openjdk.org/jdk.git pull/16047/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 16047
View PR using the GUI difftool:
$ git pr show -t 16047
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/16047.diff
Webrev
Link to Webrev Comment