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 d22c949cc466bf28de559855a1cb525740578137 (commit) from 637353bbd96770741cbb58711c78c9dc01e4ea34 (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 d22c949cc466bf28de559855a1cb525740578137 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Fri Oct 27 15:56:32 2017 +0300
api: packet: change argument to insert for l3 and l4 chsums
function name already has l3 and l4 layer, argument insert is more clean here.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Petri Savolainen petri.savolainen@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/include/odp/api/spec/packet.h b/include/odp/api/spec/packet.h index 3fc46064..fac7790b 100644 --- a/include/odp/api/spec/packet.h +++ b/include/odp/api/spec/packet.h @@ -1414,10 +1414,10 @@ odp_packet_chksum_status_t odp_packet_l4_chksum_status(odp_packet_t pkt); * the relevant pktout chksum bit set in the pktio capability. * * @param pkt Packet handle - * @param l3 0: do not insert L3 checksum + * @param insert 0: do not insert L3 checksum * 1: insert L3 checksum */ -void odp_packet_l3_chksum_insert(odp_packet_t pkt, int l3); +void odp_packet_l3_chksum_insert(odp_packet_t pkt, int insert);
/** * Layer 4 checksum insertion override @@ -1431,10 +1431,10 @@ void odp_packet_l3_chksum_insert(odp_packet_t pkt, int l3); * the relevant pktout chksum bit set in the pktio capability. * * @param pkt Packet handle - * @param l4 0: do not insert L4 checksum + * @param insert 0: do not insert L4 checksum * 1: insert L4 checksum */ -void odp_packet_l4_chksum_insert(odp_packet_t pkt, int l4); +void odp_packet_l4_chksum_insert(odp_packet_t pkt, int insert);
/** * Packet flow hash value
-----------------------------------------------------------------------
Summary of changes: include/odp/api/spec/packet.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive