Re: [lng-odp] [PATCH v3 0/5] preparation series before updating odp time API

2015-09-18 Thread Maxim Uvarov

Merged,
Maxim.

On 09/17/15 16:44, Savolainen, Petri (Nokia - FI/Espoo) wrote:

Reviewed-by: Petri Savolainen 

Previously I checked all patches and found only the issue in patch 5/5, which 
is now fixed. There's no comments about v3, but I guess that's the only change.




-Original Message-
From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of
EXT Ivan Khoronzhuk
Sent: Thursday, September 17, 2015 11:31 AM
To: lng-odp@lists.linaro.org
Subject: [lng-odp] [PATCH v3 0/5] preparation series before updating
odp time API

This series contains corrections/fixes and is required before
changing time API.

V2:
https://lists.linaro.org/pipermail/lng-odp/2015-September/015355.html

Since v2:
   example: ipsec: avoid mixing of scheduler wait time and time API time
 - use time instead of wall time in commint msg
   linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
 - corrected commit msg
   performance: odp_pktio_perf: fix potential overflow for burst_gap
 - swap burst_gap_cycles and cur_cycles in diff at init

Since v1:
   "example: timer: print timer ticks/ns table instead of cycles/ns"
 - included as new patch

Based on master.

CC:
stuart.has...@linaro.org
ola.liljed...@linaro.org
petri.savolai...@nokia.com

Ivan Khoronzhuk (5):
   example: timer: print timer ticks/ns table instead of cycles/ns
   example: ipsec: avoid mixing of scheduler wait time and time API time
   linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
   performance: odp_pktio_perf: fix potential overflow for send_duration
   performance: odp_pktio_perf: fix potential overflow for burst_gap

  example/ipsec/odp_ipsec.c | 57 ++-

  example/timer/odp_timer_test.c| 22 +++
  platform/linux-generic/odp_time.c |  2 +-
  test/performance/odp_pktio_perf.c | 16 +--
  4 files changed, 40 insertions(+), 57 deletions(-)

--
1.9.1

___
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp

___
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp


___
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp


Re: [lng-odp] [PATCH v3 0/5] preparation series before updating odp time API

2015-09-17 Thread Savolainen, Petri (Nokia - FI/Espoo)
Reviewed-by: Petri Savolainen 

Previously I checked all patches and found only the issue in patch 5/5, which 
is now fixed. There's no comments about v3, but I guess that's the only change.



> -Original Message-
> From: lng-odp [mailto:lng-odp-boun...@lists.linaro.org] On Behalf Of
> EXT Ivan Khoronzhuk
> Sent: Thursday, September 17, 2015 11:31 AM
> To: lng-odp@lists.linaro.org
> Subject: [lng-odp] [PATCH v3 0/5] preparation series before updating
> odp time API
> 
> This series contains corrections/fixes and is required before
> changing time API.
> 
> V2:
> https://lists.linaro.org/pipermail/lng-odp/2015-September/015355.html
> 
> Since v2:
>   example: ipsec: avoid mixing of scheduler wait time and time API time
> - use time instead of wall time in commint msg
>   linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
> - corrected commit msg
>   performance: odp_pktio_perf: fix potential overflow for burst_gap
> - swap burst_gap_cycles and cur_cycles in diff at init
> 
> Since v1:
>   "example: timer: print timer ticks/ns table instead of cycles/ns"
> - included as new patch
> 
> Based on master.
> 
> CC:
> stuart.has...@linaro.org
> ola.liljed...@linaro.org
> petri.savolai...@nokia.com
> 
> Ivan Khoronzhuk (5):
>   example: timer: print timer ticks/ns table instead of cycles/ns
>   example: ipsec: avoid mixing of scheduler wait time and time API time
>   linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
>   performance: odp_pktio_perf: fix potential overflow for send_duration
>   performance: odp_pktio_perf: fix potential overflow for burst_gap
> 
>  example/ipsec/odp_ipsec.c | 57 ++-
> 
>  example/timer/odp_timer_test.c| 22 +++
>  platform/linux-generic/odp_time.c |  2 +-
>  test/performance/odp_pktio_perf.c | 16 +--
>  4 files changed, 40 insertions(+), 57 deletions(-)
> 
> --
> 1.9.1
> 
> ___
> lng-odp mailing list
> lng-odp@lists.linaro.org
> https://lists.linaro.org/mailman/listinfo/lng-odp
___
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp


[lng-odp] [PATCH v3 0/5] preparation series before updating odp time API

2015-09-17 Thread Ivan Khoronzhuk
This series contains corrections/fixes and is required before
changing time API.

V2:
https://lists.linaro.org/pipermail/lng-odp/2015-September/015355.html

Since v2:
  example: ipsec: avoid mixing of scheduler wait time and time API time
- use time instead of wall time in commint msg
  linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
- corrected commit msg
  performance: odp_pktio_perf: fix potential overflow for burst_gap
- swap burst_gap_cycles and cur_cycles in diff at init

Since v1:
  "example: timer: print timer ticks/ns table instead of cycles/ns"
- included as new patch

Based on master.

CC:
stuart.has...@linaro.org
ola.liljed...@linaro.org
petri.savolai...@nokia.com

Ivan Khoronzhuk (5):
  example: timer: print timer ticks/ns table instead of cycles/ns
  example: ipsec: avoid mixing of scheduler wait time and time API time
  linux-generic: odp_time: reutrn 0 if t2 = t1 for diff
  performance: odp_pktio_perf: fix potential overflow for send_duration
  performance: odp_pktio_perf: fix potential overflow for burst_gap

 example/ipsec/odp_ipsec.c | 57 ++-
 example/timer/odp_timer_test.c| 22 +++
 platform/linux-generic/odp_time.c |  2 +-
 test/performance/odp_pktio_perf.c | 16 +--
 4 files changed, 40 insertions(+), 57 deletions(-)

-- 
1.9.1

___
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp