[lng-odp] [Linaro/odp] 96e6c6: travis: fix DOCKER_NAMESPACE variable setting

2018-08-28 Thread GitHub
Branch: refs/heads/master Home: https://github.com/Linaro/odp Commit: 96e6c6409bfe8e5f276f136c4e10454f112cd662 https://github.com/Linaro/odp/commit/96e6c6409bfe8e5f276f136c4e10454f112cd662 Author: Dmitry Eremin-Solenikov Date: 2018-08-28 (Tue, 28 Aug 2018) Changed paths:

[lng-odp] [PATCH v1] [RFC 1/1] linux-gen: ishm: implement huge page cache

2018-08-28 Thread Github ODP bot
From: Josep Puigdemont With this patch, ODP will pre-allocate several huge pages at init time. When memory is to be mapped into a huge page, one that was pre-allocated will be used, if available, this way ODP won't have to trap into the kernel to allocate huge pages. The idea with this

[lng-odp] [PATCH v1] [RFC 0/1] linux-gen: ishm: implement huge page cache

2018-08-28 Thread Github ODP bot
With this patch, ODP will pre-allocate several huge pages at init time. When memory is to be mapped into a huge page, one that was pre-allocated will be used, if available, this way ODP won't have to trap into the kernel to allocate huge pages. The idea with this implementation is to trick ishm

[lng-odp] [Bug 3774] Shmem validation test runs indefinitely with 1GB huge pages

2018-08-28 Thread bugzilla-daemon
https://bugs.linaro.org/show_bug.cgi?id=3774 --- Comment #13 from Josep Puigdemont --- A patch that fixes/mitigates this issue can be found here: https://github.com/joseppc/odp/tree/fix/cache_huge_pages This patch will pre-allocate huge pages at init time and never release them to the kernel

[lng-odp] [PATCH v2 0/1] linux-gen: ishm: implement huge page cache

2018-08-28 Thread Github ODP bot
With this patch, ODP will pre-allocate several huge pages at init time. When memory is to be mapped into a huge page, one that was pre-allocated will be used, if available, this way ODP won't have to trap into the kernel to allocate huge pages. The idea with this implementation is to trick ishm

[lng-odp] [PATCH v2 1/1] linux-gen: ishm: implement huge page cache

2018-08-28 Thread Github ODP bot
From: Josep Puigdemont With this patch, ODP will pre-allocate several huge pages at init time. When memory is to be mapped into a huge page, one that was pre-allocated will be used, if available, this way ODP won't have to trap into the kernel to allocate huge pages. The idea with this