mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Merge remote branch 'kwolf/for-anthony' into staging
This commit is contained in:
commit
aab2e8f79a
22 changed files with 428 additions and 135 deletions
|
@ -230,6 +230,7 @@ int main(int argc, char **argv)
|
|||
int nb_fds = 0;
|
||||
int max_fd;
|
||||
int persistent = 0;
|
||||
uint32_t nbdflags;
|
||||
|
||||
while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
|
||||
switch (ch) {
|
||||
|
@ -398,7 +399,8 @@ int main(int argc, char **argv)
|
|||
goto out;
|
||||
}
|
||||
|
||||
ret = nbd_receive_negotiate(sock, &size, &blocksize);
|
||||
ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
|
||||
&size, &blocksize);
|
||||
if (ret == -1) {
|
||||
ret = 1;
|
||||
goto out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue