-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8293502: (fc) FileChannel::transfer methods fail to copy /proc files on Linux #10267
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
Conversation
|
👋 Welcome back bpb! A progress list of the required criteria for merging this PR into |
Webrevs
|
| if (src instanceof FileChannelImpl fci) { | ||
| // System calls supporting fast transfers might not work on files | ||
| // which advertise zero size such as those in Linux /proc | ||
| if (src instanceof FileChannelImpl fci && fci.size() > 0) { |
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 means an extra fstat per transferFrom but maybe you've measured it with small files and it's okay?
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.
It's about 20% slower for sizes 32 and 4096 (disk block size), and about 13% slower for size 32768. Instead making the direct and trusted methods fail independently does not help.
AlanBateman
left a comment
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.
Thanks for the updates, 9590119 looks good.
|
@bplb 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 53 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 |
|
/integrate |
|
Going to push as commit 6e23b43.
Your commit was automatically rebased without conflicts. |
Files in
/procadvertise a size of zero for which direct and mapped transfers do not work. For this case, fall back to arbitrary channel transfer.Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/10267/head:pull/10267$ git checkout pull/10267Update a local copy of the PR:
$ git checkout pull/10267$ git pull https://git.openjdk.org/jdk pull/10267/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 10267View PR using the GUI difftool:
$ git pr show -t 10267Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/10267.diff