From b86ad8f1c3845419742715e94526f60e1e2bf596 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Mon, 11 Jul 2016 16:47:47 -0400 Subject: [PATCH] workqueue: rename private to priv for compiling as c++ MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Given the main.cc source file: #include int main() { return 0; } And the gcc command line: gcc main.cc -Ifio -DCONFIG_HAVE_BOOL In file included from ./ioengine.h:10:0, from ./iolog.h:7, from ./stat.h:4, from ./thread_options.h:7, from ./fio.h:18, from main.cc:1: ./workqueue.h:19:8: error: expected unqualified-id before ‘private’ void *private; ^ ./workqueue.h:19:7: error: expected ‘;’ at end of member declaration void *private; ^ ./workqueue.h:19:15: error: expected ‘:’ before ‘;’ token void *private; ^ Signed-off-by: Casey Bodley --- rate-submit.c | 18 +++++++++--------- workqueue.h | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/rate-submit.c b/rate-submit.c index 92cb6222..0c31f29f 100644 --- a/rate-submit.c +++ b/rate-submit.c @@ -14,7 +14,7 @@ static int io_workqueue_fn(struct submit_worker *sw, { struct io_u *io_u = container_of(work, struct io_u, work); const enum fio_ddir ddir = io_u->ddir; - struct thread_data *td = sw->private; + struct thread_data *td = sw->priv; int ret; dprint(FD_RATE, "io_u %p queued by %u\n", io_u, gettid()); @@ -61,7 +61,7 @@ static int io_workqueue_fn(struct submit_worker *sw, static bool io_workqueue_pre_sleep_flush_fn(struct submit_worker *sw) { - struct thread_data *td = sw->private; + struct thread_data *td = sw->priv; if (td->io_u_queued || td->cur_depth || td->io_u_in_flight) return true; @@ -71,7 +71,7 @@ static bool io_workqueue_pre_sleep_flush_fn(struct submit_worker *sw) static void io_workqueue_pre_sleep_fn(struct submit_worker *sw) { - struct thread_data *td = sw->private; + struct thread_data *td = sw->priv; int ret; ret = io_u_quiesce(td); @@ -84,20 +84,20 @@ static int io_workqueue_alloc_fn(struct submit_worker *sw) struct thread_data *td; td = calloc(1, sizeof(*td)); - sw->private = td; + sw->priv = td; return 0; } static void io_workqueue_free_fn(struct submit_worker *sw) { - free(sw->private); - sw->private = NULL; + free(sw->priv); + sw->priv = NULL; } static int io_workqueue_init_worker_fn(struct submit_worker *sw) { struct thread_data *parent = sw->wq->td; - struct thread_data *td = sw->private; + struct thread_data *td = sw->priv; int fio_unused ret; memcpy(&td->o, &parent->o, sizeof(td->o)); @@ -145,7 +145,7 @@ err: static void io_workqueue_exit_worker_fn(struct submit_worker *sw, unsigned int *sum_cnt) { - struct thread_data *td = sw->private; + struct thread_data *td = sw->priv; (*sum_cnt)++; sum_thread_stats(&sw->wq->td->ts, &td->ts, *sum_cnt == 1); @@ -213,7 +213,7 @@ static void sum_ddir(struct thread_data *dst, struct thread_data *src, static void io_workqueue_update_acct_fn(struct submit_worker *sw) { - struct thread_data *src = sw->private; + struct thread_data *src = sw->priv; struct thread_data *dst = sw->wq->td; if (td_read(src)) diff --git a/workqueue.h b/workqueue.h index 1961b2ae..e35c181a 100644 --- a/workqueue.h +++ b/workqueue.h @@ -16,7 +16,7 @@ struct submit_worker { unsigned int index; uint64_t seq; struct workqueue *wq; - void *private; + void *priv; struct sk_out *sk_out; }; -- 2.25.1