-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
off-by-1 error for zfs_arc_max #7417
Conversation
Signed-off-by: Chris Zubrzycki <github@mid-earth.net>
Codecov Report
@@ Coverage Diff @@
## master #7417 +/- ##
==========================================
+ Coverage 76.31% 76.37% +0.05%
==========================================
Files 330 330
Lines 104279 104279
==========================================
+ Hits 79583 79642 +59
+ Misses 24696 24637 -59
Continue to review full report at Codecov.
|
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! Yes indeed. Just a few things.
- Please address the style warnings. You can check them locally before updating the PR by running
make checkstyle
in tree. You'll need to add a clear commit message description and summary, and your SoBgit commit -s
.
error: commit subject over 50 characters
error: missing "Signed-off-by"
- Please also create a new development branch with this change which is rebased on the latest master. It's fine to close this PR and open a new one with the needed change.
The 2nd commit has the signed off by, but not sure how the commit subject is over 50 chars. I'll ask on irc i guess. I miss days of just sending a .patch. |
@beren12 ahh OK, I missed that. Then nevermind, I can squash this in the merge. |
When setting `zfs_arc_max` its minimum value is allowed to be 64 MiB. There was an off-by-1 error which can matter on tiny systems. Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Chris Zubrzycki <github@mid-earth.net> Closes openzfs#7417
When setting `zfs_arc_max` its minimum value is allowed to be 64 MiB. There was an off-by-1 error which can matter on tiny systems. Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Chris Zubrzycki <github@mid-earth.net> Closes openzfs#7417
When setting `zfs_arc_max` its minimum value is allowed to be 64 MiB. There was an off-by-1 error which can matter on tiny systems. Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Chris Zubrzycki <github@mid-earth.net> Closes openzfs#7417
When setting `zfs_arc_max` its minimum value is allowed to be 64 MiB. There was an off-by-1 error which can matter on tiny systems. Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Chris Zubrzycki <github@mid-earth.net> Closes #7417
Description
Checklist:
Signed-off-by
.