Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
39f1f78d
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看板
提交
39f1f78d
编写于
5月 06, 2014
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
nick kvfree() from apparmor
too many places open-code it Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
50c6e282
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
15 deletion
+12
-15
include/linux/mm.h
include/linux/mm.h
+2
-0
mm/util.c
mm/util.c
+10
-0
security/apparmor/include/apparmor.h
security/apparmor/include/apparmor.h
+0
-1
security/apparmor/lib.c
security/apparmor/lib.c
+0
-14
未找到文件。
include/linux/mm.h
浏览文件 @
39f1f78d
...
...
@@ -370,6 +370,8 @@ static inline int is_vmalloc_or_module_addr(const void *x)
}
#endif
extern
void
kvfree
(
const
void
*
addr
);
static
inline
void
compound_lock
(
struct
page
*
page
)
{
#ifdef CONFIG_TRANSPARENT_HUGEPAGE
...
...
mm/util.c
浏览文件 @
39f1f78d
...
...
@@ -10,6 +10,7 @@
#include <linux/swapops.h>
#include <linux/mman.h>
#include <linux/hugetlb.h>
#include <linux/vmalloc.h>
#include <asm/uaccess.h>
...
...
@@ -387,6 +388,15 @@ unsigned long vm_mmap(struct file *file, unsigned long addr,
}
EXPORT_SYMBOL
(
vm_mmap
);
void
kvfree
(
const
void
*
addr
)
{
if
(
is_vmalloc_addr
(
addr
))
vfree
(
addr
);
else
kfree
(
addr
);
}
EXPORT_SYMBOL
(
kvfree
);
struct
address_space
*
page_mapping
(
struct
page
*
page
)
{
struct
address_space
*
mapping
=
page
->
mapping
;
...
...
security/apparmor/include/apparmor.h
浏览文件 @
39f1f78d
...
...
@@ -66,7 +66,6 @@ extern int apparmor_initialized __initdata;
char
*
aa_split_fqname
(
char
*
args
,
char
**
ns_name
);
void
aa_info_message
(
const
char
*
str
);
void
*
__aa_kvmalloc
(
size_t
size
,
gfp_t
flags
);
void
kvfree
(
void
*
buffer
);
static
inline
void
*
kvmalloc
(
size_t
size
)
{
...
...
security/apparmor/lib.c
浏览文件 @
39f1f78d
...
...
@@ -104,17 +104,3 @@ void *__aa_kvmalloc(size_t size, gfp_t flags)
}
return
buffer
;
}
/**
* kvfree - free an allocation do by kvmalloc
* @buffer: buffer to free (MAYBE_NULL)
*
* Free a buffer allocated by kvmalloc
*/
void
kvfree
(
void
*
buffer
)
{
if
(
is_vmalloc_addr
(
buffer
))
vfree
(
buffer
);
else
kfree
(
buffer
);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录