Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
aab81e47
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
aab81e47
编写于
8月 14, 2013
作者:
V
Vinod Koul
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'topic/of' into for-linus
上级
52a9d179
7bb587f4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
27 addition
and
0 deletion
+27
-0
drivers/dma/dmaengine.c
drivers/dma/dmaengine.c
+26
-0
include/linux/dmaengine.h
include/linux/dmaengine.h
+1
-0
未找到文件。
drivers/dma/dmaengine.c
浏览文件 @
aab81e47
...
...
@@ -503,6 +503,32 @@ static struct dma_chan *private_candidate(const dma_cap_mask_t *mask,
return
NULL
;
}
/**
* dma_request_channel - try to get specific channel exclusively
* @chan: target channel
*/
struct
dma_chan
*
dma_get_slave_channel
(
struct
dma_chan
*
chan
)
{
int
err
=
-
EBUSY
;
/* lock against __dma_request_channel */
mutex_lock
(
&
dma_list_mutex
);
if
(
chan
->
client_count
==
0
)
err
=
dma_chan_get
(
chan
);
else
chan
=
NULL
;
mutex_unlock
(
&
dma_list_mutex
);
if
(
err
)
pr_debug
(
"%s: failed to get %s: (%d)
\n
"
,
__func__
,
dma_chan_name
(
chan
),
err
);
return
chan
;
}
EXPORT_SYMBOL_GPL
(
dma_get_slave_channel
);
/**
* dma_request_channel - try to allocate an exclusive channel
* @mask: capabilities that the channel must satisfy
...
...
include/linux/dmaengine.h
浏览文件 @
aab81e47
...
...
@@ -995,6 +995,7 @@ int dma_async_device_register(struct dma_device *device);
void
dma_async_device_unregister
(
struct
dma_device
*
device
);
void
dma_run_dependencies
(
struct
dma_async_tx_descriptor
*
tx
);
struct
dma_chan
*
dma_find_channel
(
enum
dma_transaction_type
tx_type
);
struct
dma_chan
*
dma_get_slave_channel
(
struct
dma_chan
*
chan
);
struct
dma_chan
*
net_dma_find_channel
(
void
);
#define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y)
#define dma_request_slave_channel_compat(mask, x, y, dev, name) \
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录