mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ratp: fix sending data that won't fit in a single RATP packet
@ 2018-08-30 22:37 Aleksander Morgado
  2018-08-31  6:42 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Aleksander Morgado @ 2018-08-30 22:37 UTC (permalink / raw)
  To: barebox, s.hauer; +Cc: Aleksander Morgado

We need to advance the input buffer used to create messages when the
data doesn't fit in a single RATP packet.

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
---
 include/ratp.h | 2 +-
 lib/ratp.c     | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/include/ratp.h b/include/ratp.h
index 6f4cf8a6f..d2a819235 100644
--- a/include/ratp.h
+++ b/include/ratp.h
@@ -11,7 +11,7 @@ int ratp_establish(struct ratp *ratp, bool active, int timeout_ms);
 void ratp_close(struct ratp *ratp);
 int ratp_recv(struct ratp *ratp, void **data, size_t *len);
 int ratp_send(struct ratp *ratp, const void *data, size_t len);
-int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
+int ratp_send_complete(struct ratp *ratp, const uint8_t *data, size_t len,
 		   void (*complete)(void *ctx, int status), void *complete_ctx);
 int ratp_poll(struct ratp *ratp);
 bool ratp_closed(struct ratp *ratp);
diff --git a/lib/ratp.c b/lib/ratp.c
index 4c5c748b4..7801cae51 100644
--- a/lib/ratp.c
+++ b/lib/ratp.c
@@ -1734,11 +1734,12 @@ void ratp_close(struct ratp *ratp)
  *
  * Return: 0 if successful, a negative error code otherwise.
  */
-int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
+int ratp_send_complete(struct ratp *ratp, const uint8_t *data, size_t len,
 		   void (*complete)(void *ctx, int status), void *complete_ctx)
 {
 	struct ratp_internal *ri = ratp->internal;
 	struct ratp_message *msg;
+	int sent = 0;

 	if (!ri || ri->state != RATP_STATE_ESTABLISHED)
 		return -ENETDOWN;
@@ -1754,11 +1755,12 @@ int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
 		msg = xzalloc(sizeof(*msg));
 		msg->buf = xzalloc(sizeof(struct ratp_header) + now + 2);
 		msg->len = now;
-		memcpy(msg->buf + sizeof(struct ratp_header), data, now);
+		memcpy(msg->buf + sizeof(struct ratp_header), data + sent, now);

 		list_add_tail(&msg->list, &ri->sendmsg);

 		len -= now;
+		sent += now;
 	}

 	msg->eor = 1;
--
2.18.0

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] ratp: fix sending data that won't fit in a single RATP packet
  2018-08-30 22:37 [PATCH] ratp: fix sending data that won't fit in a single RATP packet Aleksander Morgado
@ 2018-08-31  6:42 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2018-08-31  6:42 UTC (permalink / raw)
  To: Aleksander Morgado; +Cc: barebox

On Fri, Aug 31, 2018 at 12:37:20AM +0200, Aleksander Morgado wrote:
> We need to advance the input buffer used to create messages when the
> data doesn't fit in a single RATP packet.
> 
> Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
> ---

Applied, thanks

Sascha

>  include/ratp.h | 2 +-
>  lib/ratp.c     | 6 ++++--
>  2 files changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/include/ratp.h b/include/ratp.h
> index 6f4cf8a6f..d2a819235 100644
> --- a/include/ratp.h
> +++ b/include/ratp.h
> @@ -11,7 +11,7 @@ int ratp_establish(struct ratp *ratp, bool active, int timeout_ms);
>  void ratp_close(struct ratp *ratp);
>  int ratp_recv(struct ratp *ratp, void **data, size_t *len);
>  int ratp_send(struct ratp *ratp, const void *data, size_t len);
> -int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
> +int ratp_send_complete(struct ratp *ratp, const uint8_t *data, size_t len,
>  		   void (*complete)(void *ctx, int status), void *complete_ctx);
>  int ratp_poll(struct ratp *ratp);
>  bool ratp_closed(struct ratp *ratp);
> diff --git a/lib/ratp.c b/lib/ratp.c
> index 4c5c748b4..7801cae51 100644
> --- a/lib/ratp.c
> +++ b/lib/ratp.c
> @@ -1734,11 +1734,12 @@ void ratp_close(struct ratp *ratp)
>   *
>   * Return: 0 if successful, a negative error code otherwise.
>   */
> -int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
> +int ratp_send_complete(struct ratp *ratp, const uint8_t *data, size_t len,
>  		   void (*complete)(void *ctx, int status), void *complete_ctx)
>  {
>  	struct ratp_internal *ri = ratp->internal;
>  	struct ratp_message *msg;
> +	int sent = 0;
> 
>  	if (!ri || ri->state != RATP_STATE_ESTABLISHED)
>  		return -ENETDOWN;
> @@ -1754,11 +1755,12 @@ int ratp_send_complete(struct ratp *ratp, const void *data, size_t len,
>  		msg = xzalloc(sizeof(*msg));
>  		msg->buf = xzalloc(sizeof(struct ratp_header) + now + 2);
>  		msg->len = now;
> -		memcpy(msg->buf + sizeof(struct ratp_header), data, now);
> +		memcpy(msg->buf + sizeof(struct ratp_header), data + sent, now);
> 
>  		list_add_tail(&msg->list, &ri->sendmsg);
> 
>  		len -= now;
> +		sent += now;
>  	}
> 
>  	msg->eor = 1;
> --
> 2.18.0
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-08-31  6:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-30 22:37 [PATCH] ratp: fix sending data that won't fit in a single RATP packet Aleksander Morgado
2018-08-31  6:42 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox