Commit 838cc704 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Vinod Koul

dmatest: move dmatest_channels and nr_channels to dmatest_info

We don't need to have them global and later we would like to protect access to
them as well.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent e03e93a9
...@@ -109,6 +109,7 @@ struct dmatest_chan { ...@@ -109,6 +109,7 @@ struct dmatest_chan {
* @timeout: transfer timeout in msec, -1 for infinite timeout * @timeout: transfer timeout in msec, -1 for infinite timeout
*/ */
struct dmatest_info { struct dmatest_info {
/* Test parameters */
unsigned int buf_size; unsigned int buf_size;
char channel[20]; char channel[20];
char device[20]; char device[20];
...@@ -118,17 +119,14 @@ struct dmatest_info { ...@@ -118,17 +119,14 @@ struct dmatest_info {
unsigned int xor_sources; unsigned int xor_sources;
unsigned int pq_sources; unsigned int pq_sources;
int timeout; int timeout;
/* Internal state */
struct list_head channels;
unsigned int nr_channels;
}; };
static struct dmatest_info test_info; static struct dmatest_info test_info;
/*
* These are protected by dma_list_mutex since they're only used by
* the DMA filter function callback
*/
static LIST_HEAD(dmatest_channels);
static unsigned int nr_channels;
static bool dmatest_match_channel(struct dmatest_info *info, static bool dmatest_match_channel(struct dmatest_info *info,
struct dma_chan *chan) struct dma_chan *chan)
{ {
...@@ -690,8 +688,8 @@ static int dmatest_add_channel(struct dmatest_info *info, ...@@ -690,8 +688,8 @@ static int dmatest_add_channel(struct dmatest_info *info,
pr_info("dmatest: Started %u threads using %s\n", pr_info("dmatest: Started %u threads using %s\n",
thread_count, dma_chan_name(chan)); thread_count, dma_chan_name(chan));
list_add_tail(&dtc->node, &dmatest_channels); list_add_tail(&dtc->node, &info->channels);
nr_channels++; info->nr_channels++;
return 0; return 0;
} }
...@@ -725,7 +723,8 @@ static int run_threaded_test(struct dmatest_info *info) ...@@ -725,7 +723,8 @@ static int run_threaded_test(struct dmatest_info *info)
} }
} else } else
break; /* no more channels available */ break; /* no more channels available */
if (info->max_channels && nr_channels >= info->max_channels) if (info->max_channels &&
info->nr_channels >= info->max_channels)
break; /* we have all we need */ break; /* we have all we need */
} }
return err; return err;
...@@ -736,14 +735,15 @@ static void stop_threaded_test(struct dmatest_info *info) ...@@ -736,14 +735,15 @@ static void stop_threaded_test(struct dmatest_info *info)
struct dmatest_chan *dtc, *_dtc; struct dmatest_chan *dtc, *_dtc;
struct dma_chan *chan; struct dma_chan *chan;
list_for_each_entry_safe(dtc, _dtc, &dmatest_channels, node) { list_for_each_entry_safe(dtc, _dtc, &info->channels, node) {
list_del(&dtc->node); list_del(&dtc->node);
chan = dtc->chan; chan = dtc->chan;
dmatest_cleanup_channel(dtc); dmatest_cleanup_channel(dtc);
pr_debug("dmatest: dropped channel %s\n", pr_debug("dmatest: dropped channel %s\n", dma_chan_name(chan));
dma_chan_name(chan));
dma_release_channel(chan); dma_release_channel(chan);
} }
info->nr_channels = 0;
} }
static int __init dmatest_init(void) static int __init dmatest_init(void)
...@@ -752,6 +752,9 @@ static int __init dmatest_init(void) ...@@ -752,6 +752,9 @@ static int __init dmatest_init(void)
memset(info, 0, sizeof(*info)); memset(info, 0, sizeof(*info));
INIT_LIST_HEAD(&info->channels);
/* Set default parameters */
info->buf_size = test_buf_size; info->buf_size = test_buf_size;
strlcpy(info->channel, test_channel, sizeof(info->channel)); strlcpy(info->channel, test_channel, sizeof(info->channel));
strlcpy(info->device, test_device, sizeof(info->device)); strlcpy(info->device, test_device, sizeof(info->device));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment