[lng-odp] [Bug 3657] PktIO does not work with Mellanox Interfaces

2018-04-17 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=3657

--- Comment #5 from Maxim Uvarov  ---
https://github.com/Linaro/odp/commit/a5340c53957b3174c89d03ecf2c61e9ba98ac57c
refs/heads/master
2018-04-17T08:36:39+03:00
Matias Elo matias@nokia.com
linux-gen: dpdk: allocate huge page memory for all numa nodes

Allocate DPDK memory for all numa nodes in the system.

Fixes bug: https://bugs.linaro.org/show_bug.cgi?id=3657

Signed-off-by: Matias Elo 
Reviewed-by: Dmitry Eremin-Solenikov 
Reviewed-by: Bill Fischofer 
Signed-off-by: Maxim Uvarov 

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[lng-odp] [Bug 3611] ODP linux generic fails on AArch64 in non-ABI-compat mode

2018-04-17 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=3611

--- Comment #6 from Maxim Uvarov  ---
https://github.com/Linaro/odp/commit/a2cad95118b79f204bc13914acf43a8fc1dd2682
refs/heads/master
2018-04-17T16:39:13+03:00
Maxim Uvarov maxim.uva...@linaro.org
linux-gen: fix clang on aarch64 build

No code change. Just move array definition several lines
up to make clang happy to generate valid code.
Fixes: https://bugs.linaro.org/show_bug.cgi?id=3611

Suggested-by: Dmitry Eremin-Solenikov 
Reviewed-by: Bill Fischofer 
Reviewed-by: Petri Savolainen 
Reviewed-by: Dmitry Eremin-Solenikov 
Signed-off-by: Maxim Uvarov 

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[lng-odp] [Linaro/odp] a2cad9: linux-gen: fix clang on aarch64 build

2018-04-17 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/Linaro/odp
  Commit: a2cad95118b79f204bc13914acf43a8fc1dd2682
  
https://github.com/Linaro/odp/commit/a2cad95118b79f204bc13914acf43a8fc1dd2682
  Author: Maxim Uvarov 
  Date:   2018-04-17 (Tue, 17 Apr 2018)

  Changed paths:
M platform/linux-generic/odp_pool.c

  Log Message:
  ---
  linux-gen: fix clang on aarch64 build

No code change. Just move array definition several lines
up to make clang happy to generate valid code.
Fixes: https://bugs.linaro.org/show_bug.cgi?id=3611

Suggested-by: Dmitry Eremin-Solenikov 
Reviewed-by: Bill Fischofer 
Reviewed-by: Petri Savolainen 
Reviewed-by: Dmitry Eremin-Solenikov 
Signed-off-by: Maxim Uvarov 


  Commit: b7ee13d765e5d8da1ef68f0c0777cb5e40fffbf7
  
https://github.com/Linaro/odp/commit/b7ee13d765e5d8da1ef68f0c0777cb5e40fffbf7
  Author: Maxim Uvarov 
  Date:   2018-04-17 (Tue, 17 Apr 2018)

  Changed paths:
M .shippable.yml

  Log Message:
  ---
  shippable: reenable clang with disable abi compat options

Signed-off-by: Maxim Uvarov 
Reviewed-by: Bill Fischofer 
Reviewed-by: Dmitry Eremin-Solenikov 
Reviewed-by: Petri Savolainen 


Compare: https://github.com/Linaro/odp/compare/a5340c53957b...b7ee13d765e5


[lng-odp] [Linaro/odp] 2e96af: linux-gen: shm: check return value when registerin...

2018-04-17 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/Linaro/odp
  Commit: 2e96afe0b7c4e7e41fb03bcda605ab704f538ca1
  
https://github.com/Linaro/odp/commit/2e96afe0b7c4e7e41fb03bcda605ab704f538ca1
  Author: Josep Puigdemont 
  Date:   2018-04-17 (Tue, 17 Apr 2018)

  Changed paths:
M platform/linux-generic/odp_ishm.c

  Log Message:
  ---
  linux-gen: shm: check return value when registering fds

fdserver functions such as that for registering a new fd may
fail. In this case we need to check the return value and do
a cleanup of any allocated blocks and fragments.
If it fails on deregistering, just return the error code.

Signed-off-by: Josep Puigdemont 
Reviewed-by: Bill Fischofer 
Signed-off-by: Maxim Uvarov 




[lng-odp] [Linaro/odp] 52ea8d: linux-gen: fdserver: mask signals we don't need

2018-04-17 Thread GitHub
  Branch: refs/heads/master
  Home:   https://github.com/Linaro/odp
  Commit: 52ea8d51d522d7013f746748bf84bfc2e9bc042c
  
https://github.com/Linaro/odp/commit/52ea8d51d522d7013f746748bf84bfc2e9bc042c
  Author: Josep Puigdemont 
  Date:   2018-04-17 (Tue, 17 Apr 2018)

  Changed paths:
M platform/linux-generic/odp_fdserver.c

  Log Message:
  ---
  linux-gen: fdserver: mask signals we don't need

Make fdserver block all signals except those we are interested in, or
those that can't be masked, and set default handlers for those left,
thus preventing fdserver from executing any signal handlers that the
application may have installed prior to forking this process.

Signed-off-by: Josep Puigdemont 
Reviewed-by: Janne Peltonen 
Signed-off-by: Maxim Uvarov