Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
9326d61b
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看板
提交
9326d61b
编写于
8月 21, 2008
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "reduce tlb/cache flush times of agpgart memory allocation"
This reverts commit
466ae837
.
上级
5843d9a4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
1 addition
and
10 deletion
+1
-10
drivers/char/agp/agp.h
drivers/char/agp/agp.h
+0
-4
drivers/char/agp/generic.c
drivers/char/agp/generic.c
+1
-3
include/asm-x86/agp.h
include/asm-x86/agp.h
+0
-3
未找到文件。
drivers/char/agp/agp.h
浏览文件 @
9326d61b
...
...
@@ -30,10 +30,6 @@
#define _AGP_BACKEND_PRIV_H 1
#include <asm/agp.h>
/* for flush_agp_cache() */
#ifndef map_page_into_agp_noflush
#define map_page_into_agp_noflush(page) map_page_into_agp(page)
#define map_page_into_agp_global_flush()
#endif
#define PFX "agpgart: "
...
...
drivers/char/agp/generic.c
浏览文件 @
9326d61b
...
...
@@ -274,7 +274,6 @@ struct agp_memory *agp_allocate_memory(struct agp_bridge_data *bridge,
new
->
memory
[
i
]
=
virt_to_gart
(
addr
);
new
->
page_count
++
;
}
map_page_into_agp_global_flush
();
new
->
bridge
=
bridge
;
return
new
;
...
...
@@ -1187,8 +1186,7 @@ void *agp_generic_alloc_page(struct agp_bridge_data *bridge)
if
(
page
==
NULL
)
return
NULL
;
/* agp_allocate_memory will do flush */
map_page_into_agp_noflush
(
page
);
map_page_into_agp
(
page
);
get_page
(
page
);
atomic_inc
(
&
agp_bridge
->
current_memory_agp
);
...
...
include/asm-x86/agp.h
浏览文件 @
9326d61b
...
...
@@ -15,9 +15,6 @@
#define map_page_into_agp(page) set_pages_uc(page, 1)
#define unmap_page_from_agp(page) set_pages_wb(page, 1)
#define map_page_into_agp_noflush(page) set_pages_uc_noflush(page, 1)
#define map_page_into_agp_global_flush() set_memory_flush_all()
/*
* Could use CLFLUSH here if the cpu supports it. But then it would
* need to be called for each cacheline of the whole page so it may
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录