Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
67fc25ef
K
Kernel
项目概览
openeuler
/
Kernel
接近 2 年 前同步成功
通知
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看板
提交
67fc25ef
编写于
7月 06, 2009
作者:
P
Pekka Enberg
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'slab/urgent' into for-linus
上级
8e4a718f
ec5a36f9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
4 deletion
+8
-4
mm/slab.c
mm/slab.c
+4
-4
mm/slob.c
mm/slob.c
+2
-0
mm/slub.c
mm/slub.c
+2
-0
未找到文件。
mm/slab.c
浏览文件 @
67fc25ef
...
@@ -1544,9 +1544,6 @@ void __init kmem_cache_init(void)
...
@@ -1544,9 +1544,6 @@ void __init kmem_cache_init(void)
}
}
g_cpucache_up
=
EARLY
;
g_cpucache_up
=
EARLY
;
/* Annotate slab for lockdep -- annotate the malloc caches */
init_lock_keys
();
}
}
void
__init
kmem_cache_init_late
(
void
)
void
__init
kmem_cache_init_late
(
void
)
...
@@ -1563,6 +1560,9 @@ void __init kmem_cache_init_late(void)
...
@@ -1563,6 +1560,9 @@ void __init kmem_cache_init_late(void)
/* Done! */
/* Done! */
g_cpucache_up
=
FULL
;
g_cpucache_up
=
FULL
;
/* Annotate slab for lockdep -- annotate the malloc caches */
init_lock_keys
();
/*
/*
* Register a cpu startup notifier callback that initializes
* Register a cpu startup notifier callback that initializes
* cpu_cache_get for all new cpus
* cpu_cache_get for all new cpus
...
@@ -2547,7 +2547,7 @@ void kmem_cache_destroy(struct kmem_cache *cachep)
...
@@ -2547,7 +2547,7 @@ void kmem_cache_destroy(struct kmem_cache *cachep)
}
}
if
(
unlikely
(
cachep
->
flags
&
SLAB_DESTROY_BY_RCU
))
if
(
unlikely
(
cachep
->
flags
&
SLAB_DESTROY_BY_RCU
))
synchronize_rcu
();
rcu_barrier
();
__kmem_cache_destroy
(
cachep
);
__kmem_cache_destroy
(
cachep
);
mutex_unlock
(
&
cache_chain_mutex
);
mutex_unlock
(
&
cache_chain_mutex
);
...
...
mm/slob.c
浏览文件 @
67fc25ef
...
@@ -595,6 +595,8 @@ EXPORT_SYMBOL(kmem_cache_create);
...
@@ -595,6 +595,8 @@ EXPORT_SYMBOL(kmem_cache_create);
void
kmem_cache_destroy
(
struct
kmem_cache
*
c
)
void
kmem_cache_destroy
(
struct
kmem_cache
*
c
)
{
{
kmemleak_free
(
c
);
kmemleak_free
(
c
);
if
(
c
->
flags
&
SLAB_DESTROY_BY_RCU
)
rcu_barrier
();
slob_free
(
c
,
sizeof
(
struct
kmem_cache
));
slob_free
(
c
,
sizeof
(
struct
kmem_cache
));
}
}
EXPORT_SYMBOL
(
kmem_cache_destroy
);
EXPORT_SYMBOL
(
kmem_cache_destroy
);
...
...
mm/slub.c
浏览文件 @
67fc25ef
...
@@ -2595,6 +2595,8 @@ static inline int kmem_cache_close(struct kmem_cache *s)
...
@@ -2595,6 +2595,8 @@ static inline int kmem_cache_close(struct kmem_cache *s)
*/
*/
void
kmem_cache_destroy
(
struct
kmem_cache
*
s
)
void
kmem_cache_destroy
(
struct
kmem_cache
*
s
)
{
{
if
(
s
->
flags
&
SLAB_DESTROY_BY_RCU
)
rcu_barrier
();
down_write
(
&
slub_lock
);
down_write
(
&
slub_lock
);
s
->
refcount
--
;
s
->
refcount
--
;
if
(
!
s
->
refcount
)
{
if
(
!
s
->
refcount
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录