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
8276129: PretouchTask should page-align the chunk size #6204
Conversation
|
@kimbarrett 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. |
Webrevs
|
// Chunk size should be at least (unmodified) page size as using multiple threads | ||
// pretouch on a single page can decrease performance. | ||
size_t chunk_size = MAX2(PretouchTask::chunk_size(), page_size); | ||
// Page-align the chunk size, so if start_address is also page-aligned (as | ||
// is common) then there won't be any pages shared by multiple chunks. | ||
chunk_size = align_down(chunk_size, page_size); |
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.
This looks like a place where align_down_bounded could be used. Something like this:
size_t chunk_size = align_down_bounded(PretouchTask::chunk_size(), page_size);
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.
I either forgot about or never noticed that function. Changed to use it.
@kimbarrett This change now passes all automated pre-integration checks. 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 1 new commit pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the
|
/integrate |
@kimbarrett Pushed as commit 0e0dd33. |
Please review this change to PretouchTask to page-align the chunk size.
Aligning down is used because it's easy; aligning up would require dealing
with possible overflow or verifying that overflow isn't possible.
Testing:
mach5 tier1
Locally (linux-x64) java -version with pretouch task logging and various
chunk sizes, manually verifying the number of workers was as expected.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/6204/head:pull/6204
$ git checkout pull/6204
Update a local copy of the PR:
$ git checkout pull/6204
$ git pull https://git.openjdk.java.net/jdk pull/6204/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 6204
View PR using the GUI difftool:
$ git pr show -t 6204
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/6204.diff