Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
6f00866d
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6f00866d
编写于
3月 20, 2012
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFS: Fix more NFS debug related build warnings
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
ffa94db6
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
14 addition
and
5 deletion
+14
-5
fs/nfs/blocklayout/blocklayout.c
fs/nfs/blocklayout/blocklayout.c
+2
-3
fs/nfs/fscache.c
fs/nfs/fscache.c
+1
-1
fs/nfs/pnfs.h
fs/nfs/pnfs.h
+7
-1
fs/nfs/pnfs_dev.c
fs/nfs/pnfs_dev.c
+2
-0
include/linux/nfs_fs.h
include/linux/nfs_fs.h
+2
-0
未找到文件。
fs/nfs/blocklayout/blocklayout.c
浏览文件 @
6f00866d
...
...
@@ -233,12 +233,11 @@ bl_read_pagelist(struct nfs_read_data *rdata)
sector_t
isect
,
extent_length
=
0
;
struct
parallel_io
*
par
;
loff_t
f_offset
=
rdata
->
args
.
offset
;
size_t
count
=
rdata
->
args
.
count
;
struct
page
**
pages
=
rdata
->
args
.
pages
;
int
pg_index
=
rdata
->
args
.
pgbase
>>
PAGE_CACHE_SHIFT
;
dprintk
(
"%s enter nr_pages %u offset %lld count %
Zd
\n
"
,
__func__
,
rdata
->
npages
,
f_offset
,
count
);
dprintk
(
"%s enter nr_pages %u offset %lld count %
u
\n
"
,
__func__
,
rdata
->
npages
,
f_offset
,
(
unsigned
int
)
rdata
->
args
.
count
);
par
=
alloc_parallel
(
rdata
);
if
(
!
par
)
...
...
fs/nfs/fscache.c
浏览文件 @
6f00866d
...
...
@@ -327,7 +327,7 @@ void nfs_fscache_reset_inode_cookie(struct inode *inode)
{
struct
nfs_inode
*
nfsi
=
NFS_I
(
inode
);
struct
nfs_server
*
nfss
=
NFS_SERVER
(
inode
);
struct
fscache_cookie
*
old
=
nfsi
->
fscache
;
NFS_IFDEBUG
(
struct
fscache_cookie
*
old
=
nfsi
->
fscache
)
;
nfs_fscache_inode_lock
(
inode
);
if
(
nfsi
->
fscache
)
{
...
...
fs/nfs/pnfs.h
浏览文件 @
6f00866d
...
...
@@ -228,7 +228,6 @@ struct nfs4_deviceid_node {
atomic_t
ref
;
};
void
nfs4_print_deviceid
(
const
struct
nfs4_deviceid
*
dev_id
);
struct
nfs4_deviceid_node
*
nfs4_find_get_deviceid
(
const
struct
pnfs_layoutdriver_type
*
,
const
struct
nfs_client
*
,
const
struct
nfs4_deviceid
*
);
void
nfs4_delete_deviceid
(
const
struct
pnfs_layoutdriver_type
*
,
const
struct
nfs_client
*
,
const
struct
nfs4_deviceid
*
);
void
nfs4_init_deviceid_node
(
struct
nfs4_deviceid_node
*
,
...
...
@@ -328,6 +327,13 @@ static inline int pnfs_return_layout(struct inode *ino)
return
0
;
}
#ifdef NFS_DEBUG
void
nfs4_print_deviceid
(
const
struct
nfs4_deviceid
*
dev_id
);
#else
static
inline
void
nfs4_print_deviceid
(
const
struct
nfs4_deviceid
*
dev_id
)
{
}
#endif
/* NFS_DEBUG */
#else
/* CONFIG_NFS_V4_1 */
static
inline
void
pnfs_destroy_all_layouts
(
struct
nfs_client
*
clp
)
...
...
fs/nfs/pnfs_dev.c
浏览文件 @
6f00866d
...
...
@@ -43,6 +43,7 @@
static
struct
hlist_head
nfs4_deviceid_cache
[
NFS4_DEVICE_ID_HASH_SIZE
];
static
DEFINE_SPINLOCK
(
nfs4_deviceid_lock
);
#ifdef NFS_DEBUG
void
nfs4_print_deviceid
(
const
struct
nfs4_deviceid
*
id
)
{
...
...
@@ -52,6 +53,7 @@ nfs4_print_deviceid(const struct nfs4_deviceid *id)
p
[
0
],
p
[
1
],
p
[
2
],
p
[
3
]);
}
EXPORT_SYMBOL_GPL
(
nfs4_print_deviceid
);
#endif
static
inline
u32
nfs4_deviceid_hash
(
const
struct
nfs4_deviceid
*
id
)
...
...
include/linux/nfs_fs.h
浏览文件 @
6f00866d
...
...
@@ -661,8 +661,10 @@ nfs_fileid_to_ino_t(u64 fileid)
# undef ifdebug
# ifdef NFS_DEBUG
# define ifdebug(fac) if (unlikely(nfs_debug & NFSDBG_##fac))
# define NFS_IFDEBUG(x) x
# else
# define ifdebug(fac) if (0)
# define NFS_IFDEBUG(x)
# endif
#endif
/* __KERNEL */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录