Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
3eda0de6
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看板
提交
3eda0de6
编写于
7月 26, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
9p: propagate umode_t
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
587228be
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
14 deletion
+15
-14
fs/9p/v9fs_vfs.h
fs/9p/v9fs_vfs.h
+2
-2
fs/9p/vfs_inode.c
fs/9p/vfs_inode.c
+11
-10
fs/9p/vfs_inode_dotl.c
fs/9p/vfs_inode_dotl.c
+1
-1
fs/9p/vfs_super.c
fs/9p/vfs_super.c
+1
-1
未找到文件。
fs/9p/v9fs_vfs.h
浏览文件 @
3eda0de6
...
...
@@ -54,9 +54,9 @@ extern struct kmem_cache *v9fs_inode_cache;
struct
inode
*
v9fs_alloc_inode
(
struct
super_block
*
sb
);
void
v9fs_destroy_inode
(
struct
inode
*
inode
);
struct
inode
*
v9fs_get_inode
(
struct
super_block
*
sb
,
in
t
mode
,
dev_t
);
struct
inode
*
v9fs_get_inode
(
struct
super_block
*
sb
,
umode_
t
mode
,
dev_t
);
int
v9fs_init_inode
(
struct
v9fs_session_info
*
v9ses
,
struct
inode
*
inode
,
in
t
mode
,
dev_t
);
struct
inode
*
inode
,
umode_
t
mode
,
dev_t
);
void
v9fs_evict_inode
(
struct
inode
*
inode
);
ino_t
v9fs_qid2ino
(
struct
p9_qid
*
qid
);
void
v9fs_stat2inode
(
struct
p9_wstat
*
,
struct
inode
*
,
struct
super_block
*
);
...
...
fs/9p/vfs_inode.c
浏览文件 @
3eda0de6
...
...
@@ -59,7 +59,7 @@ static const struct inode_operations v9fs_symlink_inode_operations;
*
*/
static
u32
unixmode2p9mode
(
struct
v9fs_session_info
*
v9ses
,
in
t
mode
)
static
u32
unixmode2p9mode
(
struct
v9fs_session_info
*
v9ses
,
umode_
t
mode
)
{
int
res
;
res
=
mode
&
0777
;
...
...
@@ -94,11 +94,11 @@ static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
* @rdev: major number, minor number in case of device files.
*
*/
static
in
t
p9mode2unixmode
(
struct
v9fs_session_info
*
v9ses
,
struct
p9_wstat
*
stat
,
dev_t
*
rdev
)
static
umode_
t
p9mode2unixmode
(
struct
v9fs_session_info
*
v9ses
,
struct
p9_wstat
*
stat
,
dev_t
*
rdev
)
{
int
res
;
int
mode
=
stat
->
mode
;
u32
mode
=
stat
->
mode
;
res
=
mode
&
S_IALLUGO
;
*
rdev
=
0
;
...
...
@@ -255,7 +255,7 @@ void v9fs_destroy_inode(struct inode *inode)
}
int
v9fs_init_inode
(
struct
v9fs_session_info
*
v9ses
,
struct
inode
*
inode
,
in
t
mode
,
dev_t
rdev
)
struct
inode
*
inode
,
umode_
t
mode
,
dev_t
rdev
)
{
int
err
=
0
;
...
...
@@ -329,7 +329,7 @@ int v9fs_init_inode(struct v9fs_session_info *v9ses,
break
;
default:
P9_DPRINTK
(
P9_DEBUG_ERROR
,
"BAD mode 0x%x S_IFMT 0x%x
\n
"
,
P9_DPRINTK
(
P9_DEBUG_ERROR
,
"BAD mode 0x%
h
x S_IFMT 0x%x
\n
"
,
mode
,
mode
&
S_IFMT
);
err
=
-
EINVAL
;
goto
error
;
...
...
@@ -346,13 +346,13 @@ int v9fs_init_inode(struct v9fs_session_info *v9ses,
*
*/
struct
inode
*
v9fs_get_inode
(
struct
super_block
*
sb
,
in
t
mode
,
dev_t
rdev
)
struct
inode
*
v9fs_get_inode
(
struct
super_block
*
sb
,
umode_
t
mode
,
dev_t
rdev
)
{
int
err
;
struct
inode
*
inode
;
struct
v9fs_session_info
*
v9ses
=
sb
->
s_fs_info
;
P9_DPRINTK
(
P9_DEBUG_VFS
,
"super block: %p mode: %o
\n
"
,
sb
,
mode
);
P9_DPRINTK
(
P9_DEBUG_VFS
,
"super block: %p mode: %
h
o
\n
"
,
sb
,
mode
);
inode
=
new_inode
(
sb
);
if
(
!
inode
)
{
...
...
@@ -486,7 +486,8 @@ static struct inode *v9fs_qid_iget(struct super_block *sb,
int
new
)
{
dev_t
rdev
;
int
retval
,
umode
;
int
retval
;
umode_t
umode
;
unsigned
long
i_ino
;
struct
inode
*
inode
;
struct
v9fs_session_info
*
v9ses
=
sb
->
s_fs_info
;
...
...
@@ -1125,7 +1126,7 @@ void
v9fs_stat2inode
(
struct
p9_wstat
*
stat
,
struct
inode
*
inode
,
struct
super_block
*
sb
)
{
mode_t
mode
;
u
mode_t
mode
;
char
ext
[
32
];
char
tag_name
[
14
];
unsigned
int
i_nlink
;
...
...
fs/9p/vfs_inode_dotl.c
浏览文件 @
3eda0de6
...
...
@@ -594,7 +594,7 @@ int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
void
v9fs_stat2inode_dotl
(
struct
p9_stat_dotl
*
stat
,
struct
inode
*
inode
)
{
mode_t
mode
;
u
mode_t
mode
;
struct
v9fs_inode
*
v9inode
=
V9FS_I
(
inode
);
if
((
stat
->
st_result_mask
&
P9_STATS_BASIC
)
==
P9_STATS_BASIC
)
{
...
...
fs/9p/vfs_super.c
浏览文件 @
3eda0de6
...
...
@@ -117,7 +117,7 @@ static struct dentry *v9fs_mount(struct file_system_type *fs_type, int flags,
struct
inode
*
inode
=
NULL
;
struct
dentry
*
root
=
NULL
;
struct
v9fs_session_info
*
v9ses
=
NULL
;
in
t
mode
=
S_IRWXUGO
|
S_ISVTX
;
umode_
t
mode
=
S_IRWXUGO
|
S_ISVTX
;
struct
p9_fid
*
fid
;
int
retval
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录