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 783ca69b2f6e1ce1d7e2b2e2774d4d475a12cf10 (commit) from e819c669f474bba418c5897b6cdcf945da25c75e (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 783ca69b2f6e1ce1d7e2b2e2774d4d475a12cf10 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Fri Nov 25 17:06:02 2016 +0300
test: linux-gen: fix termination in mmap_vlan_ins
exit variable has to be volatile to be visible from thread. Without that background process is not killed with default optimization level.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c b/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c index 0682d2d..b91eb53 100644 --- a/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c +++ b/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c @@ -19,7 +19,7 @@ #define MAX_PKT_BURST 32 #define MAX_WORKERS 1
-static int exit_thr; +static volatile int exit_thr; static int g_ret;
struct {
-----------------------------------------------------------------------
Summary of changes: test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive