-
Notifications
You must be signed in to change notification settings - Fork 111
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
Remove Kvm::new_with_fd_number function #115
Labels
good first issue
Good for newcomers
Comments
👋 I'll take this issue if no one else has started |
@smortime I've assigned the issue to you. Lemme know if you need help with anything. |
smortime
added a commit
to smortime/kvm-ioctls
that referenced
this issue
Oct 2, 2020
* replace new_with_fd_number with from_raw_fd * move documentation to from_raw_fd * update doc tests Fixes: rust-vmm#115 Signed-off-by: Schuyler Mortimer <schuymortimer@gmail.com>
smortime
added a commit
to smortime/kvm-ioctls
that referenced
this issue
Oct 2, 2020
* replace new_with_fd_number with from_raw_fd * move documentation to from_raw_fd * update doc tests Fixes: rust-vmm#115 Signed-off-by: Schuyler Mortimer <schuymortimer@gmail.com>
alxiord
pushed a commit
that referenced
this issue
Oct 6, 2020
* replace new_with_fd_number with from_raw_fd * move documentation to from_raw_fd * update doc tests Fixes: #115 Signed-off-by: Schuyler Mortimer <schuymortimer@gmail.com>
baciumar
pushed a commit
to baciumar/kvm-ioctls
that referenced
this issue
Nov 9, 2020
* replace new_with_fd_number with from_raw_fd * move documentation to from_raw_fd * update doc tests Fixes: rust-vmm#115 Signed-off-by: Schuyler Mortimer <schuymortimer@gmail.com> Signed-off-by: Marius-Cristian Baciu <baciumar@amazon.com>
baciumar
pushed a commit
to baciumar/kvm-ioctls
that referenced
this issue
Nov 9, 2020
* replace new_with_fd_number with from_raw_fd * move documentation to from_raw_fd * update doc tests Fixes: rust-vmm#115 Signed-off-by: Schuyler Mortimer <schuymortimer@gmail.com> Signed-off-by: Marius-Cristian Baciu <baciumar@amazon.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This function is not needed as we already implement
FromRawFd
forKvm
.When deleting it, we should also move the documentation of
new_with_fd_number
to thefrom_raw_fd
function.The implementation of
Kvm::new
needs to be adapted as it was using thenew_with_fd_number
function.The text was updated successfully, but these errors were encountered: