From: Jan Stancek <jstancek@redhat.com>
To: ltp-list@lists.sourceforge.net
Cc: Jeffrey Burke <jburke@redhat.com>
Subject: [LTP] [PATCH] mmstress: make shared global variables volatile
Date: Tue, 13 Mar 2012 11:32:24 +0100 [thread overview]
Message-ID: <4F5F2238.9010402@redhat.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 514 bytes --]
Synchronization of threads depends on shared global variable.
With gcc version 4.6.2 this test spins forever on:
while (wait_thread)
sched_yield();
Make global shared variables volatile, so each thread
sees current value.
See also:
Bug 36081 - gcc optimizations and threads (pthread)
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36081
Signed-off-by: Jan Stancek <jstancek@redhat.com>
---
testcases/kernel/mem/mtest05/mmstress.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
[-- Attachment #2: 0001-mmstress-make-shared-global-variables-volatile.patch --]
[-- Type: text/x-patch, Size: 1116 bytes --]
diff --git a/testcases/kernel/mem/mtest05/mmstress.c b/testcases/kernel/mem/mtest05/mmstress.c
index 8a0c6f6..a8d4e7d 100644
--- a/testcases/kernel/mem/mtest05/mmstress.c
+++ b/testcases/kernel/mem/mtest05/mmstress.c
@@ -140,8 +140,8 @@ typedef struct { /* structure returned by map_and_thread() */
caddr_t mapaddr; /* address at which the file is mapped */
} RETINFO_t;
-static int wait_thread = 0; /* used to wake up sleeping threads */
-static int thread_begin = 0; /* used to coordinate threads */
+static volatile int wait_thread = 0; /* used to wake up sleeping threads */
+static volatile int thread_begin = 0; /* used to coordinate threads */
static int verbose_print = FALSE; /* print more test information */
static int pages_num = NUMPAGES; /* number of pages to use for tests */
@@ -989,4 +989,4 @@ main(int argc, /* number of command line parameters */
tst_resm(TPASS, "Test Passed");
}
exit(global_rc);
-}
\ No newline at end of file
+}
[-- Attachment #3: Type: text/plain, Size: 381 bytes --]
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next reply other threads:[~2012-03-13 10:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-13 10:32 Jan Stancek [this message]
2012-03-13 12:09 ` [LTP] [PATCH] mmstress: make shared global variables volatile Wanlong Gao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F5F2238.9010402@redhat.com \
--to=jstancek@redhat.com \
--cc=jburke@redhat.com \
--cc=ltp-list@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.