Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
96622bde
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
96622bde
编写于
10月 03, 2016
作者:
V
Vinod Koul
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'topic/unmap_cleanup' into for-linus
上级
7afb1fa8
fd3c69bd
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
5 addition
and
6 deletion
+5
-6
drivers/dma/fsl_raid.c
drivers/dma/fsl_raid.c
+1
-1
drivers/dma/fsldma.c
drivers/dma/fsldma.c
+1
-1
drivers/dma/mv_xor.c
drivers/dma/mv_xor.c
+1
-1
drivers/dma/ppc4xx/adma.c
drivers/dma/ppc4xx/adma.c
+1
-1
drivers/dma/xgene-dma.c
drivers/dma/xgene-dma.c
+1
-2
未找到文件。
drivers/dma/fsl_raid.c
浏览文件 @
96622bde
...
...
@@ -135,8 +135,8 @@ static void fsl_re_issue_pending(struct dma_chan *chan)
static
void
fsl_re_desc_done
(
struct
fsl_re_desc
*
desc
)
{
dma_cookie_complete
(
&
desc
->
async_tx
);
dmaengine_desc_get_callback_invoke
(
&
desc
->
async_tx
,
NULL
);
dma_descriptor_unmap
(
&
desc
->
async_tx
);
dmaengine_desc_get_callback_invoke
(
&
desc
->
async_tx
,
NULL
);
}
static
void
fsl_re_cleanup_descs
(
struct
fsl_re_chan
*
re_chan
)
...
...
drivers/dma/fsldma.c
浏览文件 @
96622bde
...
...
@@ -516,9 +516,9 @@ static dma_cookie_t fsldma_run_tx_complete_actions(struct fsldma_chan *chan,
if
(
txd
->
cookie
>
0
)
{
ret
=
txd
->
cookie
;
dma_descriptor_unmap
(
txd
);
/* Run the link descriptor callback function */
dmaengine_desc_get_callback_invoke
(
txd
,
NULL
);
dma_descriptor_unmap
(
txd
);
}
/* Run any dependencies */
...
...
drivers/dma/mv_xor.c
浏览文件 @
96622bde
...
...
@@ -206,11 +206,11 @@ mv_desc_run_tx_complete_actions(struct mv_xor_desc_slot *desc,
if
(
desc
->
async_tx
.
cookie
>
0
)
{
cookie
=
desc
->
async_tx
.
cookie
;
dma_descriptor_unmap
(
&
desc
->
async_tx
);
/* call the callback (must not sleep or submit new
* operations to this channel)
*/
dmaengine_desc_get_callback_invoke
(
&
desc
->
async_tx
,
NULL
);
dma_descriptor_unmap
(
&
desc
->
async_tx
);
}
/* run dependent operations */
...
...
drivers/dma/ppc4xx/adma.c
浏览文件 @
96622bde
...
...
@@ -1482,11 +1482,11 @@ static dma_cookie_t ppc440spe_adma_run_tx_complete_actions(
cookie
=
desc
->
async_tx
.
cookie
;
desc
->
async_tx
.
cookie
=
0
;
dma_descriptor_unmap
(
&
desc
->
async_tx
);
/* call the callback (must not sleep or submit new
* operations to this channel)
*/
dmaengine_desc_get_callback_invoke
(
&
desc
->
async_tx
,
NULL
);
dma_descriptor_unmap
(
&
desc
->
async_tx
);
}
/* run dependent operations */
...
...
drivers/dma/xgene-dma.c
浏览文件 @
96622bde
...
...
@@ -606,12 +606,11 @@ static void xgene_dma_run_tx_complete_actions(struct xgene_dma_chan *chan,
return
;
dma_cookie_complete
(
tx
);
dma_descriptor_unmap
(
tx
);
/* Run the link descriptor callback function */
dmaengine_desc_get_callback_invoke
(
tx
,
NULL
);
dma_descriptor_unmap
(
tx
);
/* Run any dependencies */
dma_run_dependencies
(
tx
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录