Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 127994
b: refs/heads/master
c: e234667
h: refs/heads/master
v: v3
  • Loading branch information
Dan Williams committed Jan 6, 2009
1 parent 7aefd1f commit 66f552c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 864498aaa9fef69ee166da023d12413a7776342d
refs/heads/master: e2346677af86150c6083974585c131e8a2c3ddcc
33 changes: 13 additions & 20 deletions trunk/drivers/dma/dmaengine.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,10 @@ static void dma_channel_rebalance(void)
}
}

static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev)
static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_device *dev,
dma_filter_fn fn, void *fn_param)
{
struct dma_chan *chan;
struct dma_chan *ret = NULL;

if (!__dma_device_satisfies_mask(dev, mask)) {
pr_debug("%s: wrong capabilities\n", __func__);
Expand All @@ -479,11 +479,15 @@ static struct dma_chan *private_candidate(dma_cap_mask_t *mask, struct dma_devic
__func__, dma_chan_name(chan));
continue;
}
ret = chan;
break;
if (fn && !fn(chan, fn_param)) {
pr_debug("%s: %s filter said false\n",
__func__, dma_chan_name(chan));
continue;
}
return chan;
}

return ret;
return NULL;
}

/**
Expand All @@ -496,22 +500,13 @@ struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, v
{
struct dma_device *device, *_d;
struct dma_chan *chan = NULL;
bool ack;
int err;

/* Find a channel */
mutex_lock(&dma_list_mutex);
list_for_each_entry_safe(device, _d, &dma_device_list, global_node) {
chan = private_candidate(mask, device);
if (!chan)
continue;

if (fn)
ack = fn(chan, fn_param);
else
ack = true;

if (ack) {
chan = private_candidate(mask, device, fn, fn_param);
if (chan) {
/* Found a suitable channel, try to grab, prep, and
* return it. We first set DMA_PRIVATE to disable
* balance_ref_count as this channel will not be
Expand All @@ -529,10 +524,8 @@ struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, v
dma_chan_name(chan), err);
else
break;
} else
pr_debug("%s: %s filter said false\n",
__func__, dma_chan_name(chan));
chan = NULL;
chan = NULL;
}
}
mutex_unlock(&dma_list_mutex);

Expand Down

0 comments on commit 66f552c

Please sign in to comment.