diff options
author | Daniel Hazelton <dshadowwolf@gmail.com> | 2012-10-25 13:37:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-25 14:37:53 -0700 |
commit | fc314d0a4a933603f521de343634910a4ed9b37b (patch) | |
tree | 74c1b7463081783f568443dd5241c27e347d3e6d | |
parent | 59ce8764bdfe8f3c6c02d3215741584dbb43409d (diff) | |
download | linux-3.10-fc314d0a4a933603f521de343634910a4ed9b37b.tar.gz linux-3.10-fc314d0a4a933603f521de343634910a4ed9b37b.tar.bz2 linux-3.10-fc314d0a4a933603f521de343634910a4ed9b37b.zip |
tools/testing/selftests/epoll/test_epoll.c: fix build
Latest Linus head run of "make selftests" in the tools directory failed
with references to undefined variables. Reference was to
'write_thread_data' which is the name of a struct that is being used, not
the variable itself. Change reference so it points to the variable.
Signed-off-by: Daniel Hazelton <dshadowwolf@gmail.com>
Cc: "Paton J. Lewis" <palewis@adobe.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | tools/testing/selftests/epoll/test_epoll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/epoll/test_epoll.c b/tools/testing/selftests/epoll/test_epoll.c index e0fcff1e833..f7525392ce8 100644 --- a/tools/testing/selftests/epoll/test_epoll.c +++ b/tools/testing/selftests/epoll/test_epoll.c @@ -162,14 +162,14 @@ void *write_thread_function(void *function_data) int index; struct write_thread_data *thread_data = (struct write_thread_data *)function_data; - while (!write_thread_data->stop) + while (!thread_data->stop) for (index = 0; !thread_data->stop && (index < thread_data->n_fds); ++index) if ((write(thread_data->fds[index], &data, 1) < 1) && (errno != EAGAIN) && (errno != EWOULDBLOCK)) { - write_thread_data->status = errno; + thread_data->status = errno; return; } } |