Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
81039f1f
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看板
提交
81039f1f
编写于
6月 09, 2006
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFS: Display the chosen RPCSEC_GSS security flavour in /proc/mounts
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
f7b422b1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
32 addition
and
0 deletion
+32
-0
fs/nfs/super.c
fs/nfs/super.c
+29
-0
net/sunrpc/auth_null.c
net/sunrpc/auth_null.c
+2
-0
net/sunrpc/auth_unix.c
net/sunrpc/auth_unix.c
+1
-0
未找到文件。
fs/nfs/super.c
浏览文件 @
81039f1f
...
...
@@ -318,6 +318,34 @@ static int nfs_statfs(struct super_block *sb, struct kstatfs *buf)
}
static
const
char
*
nfs_pseudoflavour_to_name
(
rpc_authflavor_t
flavour
)
{
static
struct
{
rpc_authflavor_t
flavour
;
const
char
*
str
;
}
sec_flavours
[]
=
{
{
RPC_AUTH_NULL
,
"null"
},
{
RPC_AUTH_UNIX
,
"sys"
},
{
RPC_AUTH_GSS_KRB5
,
"krb5"
},
{
RPC_AUTH_GSS_KRB5I
,
"krb5i"
},
{
RPC_AUTH_GSS_KRB5P
,
"krb5p"
},
{
RPC_AUTH_GSS_LKEY
,
"lkey"
},
{
RPC_AUTH_GSS_LKEYI
,
"lkeyi"
},
{
RPC_AUTH_GSS_LKEYP
,
"lkeyp"
},
{
RPC_AUTH_GSS_SPKM
,
"spkm"
},
{
RPC_AUTH_GSS_SPKMI
,
"spkmi"
},
{
RPC_AUTH_GSS_SPKMP
,
"spkmp"
},
{
-
1
,
"unknown"
}
};
int
i
;
for
(
i
=
0
;
sec_flavours
[
i
].
flavour
!=
-
1
;
i
++
)
{
if
(
sec_flavours
[
i
].
flavour
==
flavour
)
break
;
}
return
sec_flavours
[
i
].
str
;
}
/*
* Describe the mount options in force on this server representation
*/
...
...
@@ -371,6 +399,7 @@ static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
seq_printf
(
m
,
",proto=%s"
,
proto
);
seq_printf
(
m
,
",timeo=%lu"
,
10U
*
nfss
->
retrans_timeo
/
HZ
);
seq_printf
(
m
,
",retrans=%u"
,
nfss
->
retrans_count
);
seq_printf
(
m
,
",sec=%s"
,
nfs_pseudoflavour_to_name
(
nfss
->
client
->
cl_auth
->
au_flavor
));
}
/*
...
...
net/sunrpc/auth_null.c
浏览文件 @
81039f1f
...
...
@@ -118,6 +118,8 @@ struct rpc_auth null_auth = {
.
au_cslack
=
4
,
.
au_rslack
=
2
,
.
au_ops
=
&
authnull_ops
,
.
au_flavor
=
RPC_AUTH_NULL
,
.
au_count
=
ATOMIC_INIT
(
0
),
};
static
...
...
net/sunrpc/auth_unix.c
浏览文件 @
81039f1f
...
...
@@ -225,6 +225,7 @@ struct rpc_auth unix_auth = {
.
au_cslack
=
UNX_WRITESLACK
,
.
au_rslack
=
2
,
/* assume AUTH_NULL verf */
.
au_ops
=
&
authunix_ops
,
.
au_flavor
=
RPC_AUTH_UNIX
,
.
au_count
=
ATOMIC_INIT
(
0
),
.
au_credcache
=
&
unix_cred_cache
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录