Skip to content

Commit 9f05d0c

Browse files
Michael R. HinesJuan Quintela
Michael R. Hines
authored and
Juan Quintela
committed
rdma: export yield_until_fd_readable()
The RDMA event channel can be made non-blocking just like a TCP socket. Exporting this function allows us to yield so that the QEMU monitor remains available. Reviewed-by: Juan Quintela <[email protected]> Reviewed-by: Paolo Bonzini <[email protected]> Reviewed-by: Chegu Vinod <[email protected]> Tested-by: Chegu Vinod <[email protected]> Tested-by: Michael R. Hines <[email protected]> Signed-off-by: Michael R. Hines <[email protected]> Signed-off-by: Juan Quintela <[email protected]>
1 parent 2b0ce07 commit 9f05d0c

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

include/block/coroutine.h

+6
Original file line numberDiff line numberDiff line change
@@ -209,4 +209,10 @@ void qemu_co_rwlock_unlock(CoRwlock *lock);
209209
*/
210210
void coroutine_fn co_sleep_ns(QEMUClock *clock, int64_t ns);
211211

212+
/**
213+
* Yield until a file descriptor becomes readable
214+
*
215+
* Note that this function clobbers the handlers for the file descriptor.
216+
*/
217+
void coroutine_fn yield_until_fd_readable(int fd);
212218
#endif /* QEMU_COROUTINE_H */

qemu-coroutine-io.c

+23
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,26 @@ qemu_co_send_recv(int sockfd, void *buf, size_t bytes, bool do_send)
6363
struct iovec iov = { .iov_base = buf, .iov_len = bytes };
6464
return qemu_co_sendv_recvv(sockfd, &iov, 1, 0, bytes, do_send);
6565
}
66+
67+
typedef struct {
68+
Coroutine *co;
69+
int fd;
70+
} FDYieldUntilData;
71+
72+
static void fd_coroutine_enter(void *opaque)
73+
{
74+
FDYieldUntilData *data = opaque;
75+
qemu_set_fd_handler(data->fd, NULL, NULL, NULL);
76+
qemu_coroutine_enter(data->co, NULL);
77+
}
78+
79+
void coroutine_fn yield_until_fd_readable(int fd)
80+
{
81+
FDYieldUntilData data;
82+
83+
assert(qemu_in_coroutine());
84+
data.co = qemu_coroutine_self();
85+
data.fd = fd;
86+
qemu_set_fd_handler(fd, fd_coroutine_enter, NULL, &data);
87+
qemu_coroutine_yield();
88+
}

savevm.c

-28
Original file line numberDiff line numberDiff line change
@@ -149,34 +149,6 @@ typedef struct QEMUFileSocket
149149
QEMUFile *file;
150150
} QEMUFileSocket;
151151

152-
typedef struct {
153-
Coroutine *co;
154-
int fd;
155-
} FDYieldUntilData;
156-
157-
static void fd_coroutine_enter(void *opaque)
158-
{
159-
FDYieldUntilData *data = opaque;
160-
qemu_set_fd_handler(data->fd, NULL, NULL, NULL);
161-
qemu_coroutine_enter(data->co, NULL);
162-
}
163-
164-
/**
165-
* Yield until a file descriptor becomes readable
166-
*
167-
* Note that this function clobbers the handlers for the file descriptor.
168-
*/
169-
static void coroutine_fn yield_until_fd_readable(int fd)
170-
{
171-
FDYieldUntilData data;
172-
173-
assert(qemu_in_coroutine());
174-
data.co = qemu_coroutine_self();
175-
data.fd = fd;
176-
qemu_set_fd_handler(fd, fd_coroutine_enter, NULL, &data);
177-
qemu_coroutine_yield();
178-
}
179-
180152
static ssize_t socket_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
181153
int64_t pos)
182154
{

0 commit comments

Comments
 (0)