1 From 1b739247dcab62d1da45109cf805b8a840307ccc Mon Sep 17 00:00:00 2001
2 From: Wim Taymans <wtaymans@redhat.com>
3 Date: Tue, 1 Oct 2019 10:43:48 +0200
4 Subject: [PATCH] connection: move remaining data and fds
6 If we can't send all of the data, move the remaining data to the
7 start of the buffer so that we can send it again later.
11 Upstream-Status: Backport [3d48ba8394396fc8d8cadb1bff3514217ddd70e6]
13 .../module-protocol-native/connection.c | 23 +++++++++++--------
14 1 file changed, 14 insertions(+), 9 deletions(-)
16 diff --git a/src/modules/module-protocol-native/connection.c b/src/modules/module-protocol-native/connection.c
17 index f51129df..7b6cf112 100644
18 --- a/src/modules/module-protocol-native/connection.c
19 +++ b/src/modules/module-protocol-native/connection.c
20 @@ -500,8 +500,12 @@ int pw_protocol_native_connection_flush(struct pw_protocol_native_connection *co
28 + pw_log_error("could not sendmsg on fd:%d n_fds:%d: %s",
29 + conn->fd, n_fds, spa_strerror(res));
35 @@ -513,15 +517,16 @@ int pw_protocol_native_connection_flush(struct pw_protocol_native_connection *co
39 - buf->buffer_size = size;
48 - pw_log_error("could not sendmsg on fd:%d n_fds:%d: %s", conn->fd, n_fds, strerror(errno));
51 + memmove(buf->buffer_data, data, size);
52 + buf->buffer_size = size;
54 + memmove(buf->fds, fds, n_fds * sizeof(int));