This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, api-next has been updated
via 1c11eb2f0e612eb9b7a6cbe91a3e4ac3e61c7b80 (commit)
from f3cf9c3583364af7625679d0021c4d55c3414994 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1c11eb2f0e612eb9b7a6cbe91a3e4ac3e61c7b80
Author: Petri Savolainen <petri.savolainen(a)linaro.org>
Date: Tue Mar 27 16:53:08 2018 +0300
api: packet: UDP checksum value of zero
UDP checksum value of zero results OK status when checksum
is checked.
Signed-off-by: Petri Savolainen <petri.savolainen(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/include/odp/api/spec/packet.h b/include/odp/api/spec/packet.h
index e1f2f221..66665e12 100644
--- a/include/odp/api/spec/packet.h
+++ b/include/odp/api/spec/packet.h
@@ -1711,6 +1711,9 @@ odp_packet_chksum_status_t odp_packet_l3_chksum_status(odp_packet_t pkt);
* attempt. It depends on packet input (or IPSEC) configuration, packet content
* and implementation capabilities if checksum check is attempted for a packet.
*
+ * When a UDP packet does not have a checksum (e.g. checksum field of a UDP/IPv4
+ * packet is zero), checksum check result is ODP_PACKET_CHKSUM_OK.
+ *
* @param pkt Packet handle
*
* @return L4 checksum check status
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/packet.h | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via fbe07de54f3768f32bd39a0ea9aa2a79188b1186 (commit)
from 57df98eca15fe64a716f9f555714ef5fb9cd25e9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit fbe07de54f3768f32bd39a0ea9aa2a79188b1186
Author: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Date: Tue Apr 3 09:44:51 2018 +0200
fdserver: handle interruption by signal in accept
This patch fixes: https://bugs.linaro.org/show_bug.cgi?id=3690
Suggested-by: Janne Peltonen <janne.peltonen(a)nokia.com>
Signed-off-by: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/_fdserver.c b/platform/linux-generic/_fdserver.c
index 065736f0..af9ca4a0 100644
--- a/platform/linux-generic/_fdserver.c
+++ b/platform/linux-generic/_fdserver.c
@@ -559,8 +559,11 @@ static void wait_requests(int sock)
addr_sz = sizeof(remote);
c_socket = accept(sock, (struct sockaddr *)&remote, &addr_sz);
if (c_socket == -1) {
- ODP_ERR("wait_requests: %s\n", strerror(errno));
- return;
+ if (errno == EINTR)
+ continue;
+
+ ODP_ERR("wait_requests: %s\n", strerror(errno));
+ return;
}
if (handle_request(c_socket))
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/_fdserver.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 273264b459d98140a3c1a217bcea2c7bd680c826 (commit)
from 57df98eca15fe64a716f9f555714ef5fb9cd25e9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 273264b459d98140a3c1a217bcea2c7bd680c826
Author: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Date: Tue Apr 3 09:44:51 2018 +0200
fdserver: handle interruption by signal in accept
This patch fixes: https://bugs.linaro.org/show_bug.cgi?id=3690
Suggested-by: Janne Peltonen <janne.peltonen(a)nokia.com>
Signed-off-by: Josep Puigdemont <josep.puigdemont(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/_fdserver.c b/platform/linux-generic/_fdserver.c
index 065736f0..af9ca4a0 100644
--- a/platform/linux-generic/_fdserver.c
+++ b/platform/linux-generic/_fdserver.c
@@ -559,8 +559,11 @@ static void wait_requests(int sock)
addr_sz = sizeof(remote);
c_socket = accept(sock, (struct sockaddr *)&remote, &addr_sz);
if (c_socket == -1) {
- ODP_ERR("wait_requests: %s\n", strerror(errno));
- return;
+ if (errno == EINTR)
+ continue;
+
+ ODP_ERR("wait_requests: %s\n", strerror(errno));
+ return;
}
if (handle_request(c_socket))
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/_fdserver.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
hooks/post-receive
--