2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
4 * Network Block Device Common Code
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "nbd-internal.h"
21 ssize_t
nbd_wr_sync(int fd
, void *buffer
, size_t size
, bool do_read
)
26 if (qemu_in_coroutine()) {
28 return qemu_co_recv(fd
, buffer
, size
);
30 return qemu_co_send(fd
, buffer
, size
);
34 while (offset
< size
) {
38 len
= qemu_recv(fd
, buffer
+ offset
, size
- offset
, 0);
40 len
= send(fd
, buffer
+ offset
, size
- offset
, 0);
46 /* recoverable error */
47 if (err
== EINTR
|| (offset
> 0 && (err
== EAGAIN
|| err
== EWOULDBLOCK
))) {
51 /* unrecoverable error */