Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
b853a161
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b853a161
编写于
5月 13, 2015
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
turn user_{path_at,path,lpath,path_dir}() into static inlines
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
9883d185
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
25 addition
and
17 deletion
+25
-17
fs/namei.c
fs/namei.c
+1
-7
include/linux/namei.h
include/linux/namei.h
+24
-10
未找到文件。
fs/namei.c
浏览文件 @
b853a161
...
...
@@ -2299,13 +2299,7 @@ int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
return
filename_lookup
(
dfd
,
getname_flags
(
name
,
flags
,
empty
),
flags
,
path
,
NULL
);
}
int
user_path_at
(
int
dfd
,
const
char
__user
*
name
,
unsigned
flags
,
struct
path
*
path
)
{
return
user_path_at_empty
(
dfd
,
name
,
flags
,
path
,
NULL
);
}
EXPORT_SYMBOL
(
user_path_at
);
EXPORT_SYMBOL
(
user_path_at_empty
);
/*
* NB: most callers don't do anything directly with the reference to the
...
...
include/linux/namei.h
浏览文件 @
b853a161
#ifndef _LINUX_NAMEI_H
#define _LINUX_NAMEI_H
#include <linux/dcache.h>
#include <linux/errno.h>
#include <linux/linkage.h>
#include <linux/kernel.h>
#include <linux/path.h>
struct
vfsmount
;
#include <linux/fcntl.h>
#include <linux/errno.h>
enum
{
MAX_NESTED_LINKS
=
8
};
...
...
@@ -46,13 +44,29 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND};
#define LOOKUP_ROOT 0x2000
#define LOOKUP_EMPTY 0x4000
extern
int
user_path_at
(
int
,
const
char
__user
*
,
unsigned
,
struct
path
*
);
extern
int
user_path_at_empty
(
int
,
const
char
__user
*
,
unsigned
,
struct
path
*
,
int
*
empty
);
#define user_path(name, path) user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW, path)
#define user_lpath(name, path) user_path_at(AT_FDCWD, name, 0, path)
#define user_path_dir(name, path) \
user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, path)
static
inline
int
user_path_at
(
int
dfd
,
const
char
__user
*
name
,
unsigned
flags
,
struct
path
*
path
)
{
return
user_path_at_empty
(
dfd
,
name
,
flags
,
path
,
NULL
);
}
static
inline
int
user_path
(
const
char
__user
*
name
,
struct
path
*
path
)
{
return
user_path_at_empty
(
AT_FDCWD
,
name
,
LOOKUP_FOLLOW
,
path
,
NULL
);
}
static
inline
int
user_lpath
(
const
char
__user
*
name
,
struct
path
*
path
)
{
return
user_path_at_empty
(
AT_FDCWD
,
name
,
0
,
path
,
NULL
);
}
static
inline
int
user_path_dir
(
const
char
__user
*
name
,
struct
path
*
path
)
{
return
user_path_at_empty
(
AT_FDCWD
,
name
,
LOOKUP_FOLLOW
|
LOOKUP_DIRECTORY
,
path
,
NULL
);
}
extern
int
kern_path
(
const
char
*
,
unsigned
,
struct
path
*
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录