-
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
Typo in dsl_dataset.h #6273
Labels
good first issue
Indicates a good issue for first-time contributors
Comments
behlendorf
added
the
good first issue
Indicates a good issue for first-time contributors
label
Jun 27, 2017
The |
11 tasks
Nasf-Fan
pushed a commit
to Nasf-Fan/zfs
that referenced
this issue
Oct 15, 2017
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
wli5
pushed a commit
to wli5/zfs
that referenced
this issue
Oct 20, 2017
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
Nasf-Fan
pushed a commit
to Nasf-Fan/zfs
that referenced
this issue
Nov 4, 2017
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
Nasf-Fan
pushed a commit
to Nasf-Fan/zfs
that referenced
this issue
Nov 6, 2017
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
Nasf-Fan
pushed a commit
to Nasf-Fan/zfs
that referenced
this issue
Jan 29, 2018
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
Nasf-Fan
pushed a commit
to Nasf-Fan/zfs
that referenced
this issue
Feb 13, 2018
The parameters dsl_dataset_t *os in function prototype should be renamed to dsl_dataset_t *ds. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Damian Wojsław <damian@wojslaw.pl> Closes openzfs#6756 Closes openzfs#6273
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The parameters
dsl_dataset_t *os
in function prototypevoid dsl_dataset_stats(dsl_dataset_t *os, nvlist_t *nv);
in dsl_dataset.h seems to be a typo.*os
should be changed to*ds
?https://github.com/zfsonlinux/zfs/blob/master/include/sys/dsl_dataset.h#L293
BTW, the definition of
dsl_dataset_stats
in dsl_dataset.c is using*ds
.https://github.com/zfsonlinux/zfs/blob/master/module/zfs/dsl_dataset.c#L1852
The text was updated successfully, but these errors were encountered: