Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
e77b8547
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看板
提交
e77b8547
编写于
12月 04, 2014
作者:
D
Dave Chinner
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'xfs-coccinelle-cleanups' into xfs-misc-fixes-for-3.19-2
上级
db52d09e
d254aaec
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
9 addition
and
24 deletion
+9
-24
fs/xfs/libxfs/xfs_bmap.c
fs/xfs/libxfs/xfs_bmap.c
+1
-5
fs/xfs/libxfs/xfs_ialloc.c
fs/xfs/libxfs/xfs_ialloc.c
+1
-5
fs/xfs/xfs_file.c
fs/xfs/xfs_file.c
+1
-5
fs/xfs/xfs_qm.c
fs/xfs/xfs_qm.c
+5
-7
fs/xfs/xfs_super.c
fs/xfs/xfs_super.c
+1
-2
未找到文件。
fs/xfs/libxfs/xfs_bmap.c
浏览文件 @
e77b8547
...
...
@@ -5592,12 +5592,8 @@ xfs_bmse_shift_one(
XFS_WANT_CORRUPTED_GOTO
(
i
==
1
,
out_error
);
got
.
br_startoff
=
startoff
;
error
=
xfs_bmbt_update
(
cur
,
got
.
br_startoff
,
got
.
br_startblock
,
return
xfs_bmbt_update
(
cur
,
got
.
br_startoff
,
got
.
br_startblock
,
got
.
br_blockcount
,
got
.
br_state
);
if
(
error
)
return
error
;
return
0
;
out_error:
return
error
;
...
...
fs/xfs/libxfs/xfs_ialloc.c
浏览文件 @
e77b8547
...
...
@@ -1137,11 +1137,7 @@ xfs_dialloc_ag_update_inobt(
XFS_WANT_CORRUPTED_RETURN
((
rec
.
ir_free
==
frec
->
ir_free
)
&&
(
rec
.
ir_freecount
==
frec
->
ir_freecount
));
error
=
xfs_inobt_update
(
cur
,
&
rec
);
if
(
error
)
return
error
;
return
0
;
return
xfs_inobt_update
(
cur
,
&
rec
);
}
/*
...
...
fs/xfs/xfs_file.c
浏览文件 @
e77b8547
...
...
@@ -933,7 +933,6 @@ xfs_file_readdir(
{
struct
inode
*
inode
=
file_inode
(
file
);
xfs_inode_t
*
ip
=
XFS_I
(
inode
);
int
error
;
size_t
bufsize
;
/*
...
...
@@ -950,10 +949,7 @@ xfs_file_readdir(
*/
bufsize
=
(
size_t
)
min_t
(
loff_t
,
32768
,
ip
->
i_d
.
di_size
);
error
=
xfs_readdir
(
ip
,
ctx
,
bufsize
);
if
(
error
)
return
error
;
return
0
;
return
xfs_readdir
(
ip
,
ctx
,
bufsize
);
}
STATIC
int
...
...
fs/xfs/xfs_qm.c
浏览文件 @
e77b8547
...
...
@@ -1749,23 +1749,21 @@ xfs_qm_vop_dqalloc(
xfs_iunlock
(
ip
,
lockflags
);
if
(
O_udqpp
)
*
O_udqpp
=
uq
;
else
if
(
uq
)
else
xfs_qm_dqrele
(
uq
);
if
(
O_gdqpp
)
*
O_gdqpp
=
gq
;
else
if
(
gq
)
else
xfs_qm_dqrele
(
gq
);
if
(
O_pdqpp
)
*
O_pdqpp
=
pq
;
else
if
(
pq
)
else
xfs_qm_dqrele
(
pq
);
return
0
;
error_rele:
if
(
gq
)
xfs_qm_dqrele
(
gq
);
if
(
uq
)
xfs_qm_dqrele
(
uq
);
xfs_qm_dqrele
(
gq
);
xfs_qm_dqrele
(
uq
);
return
error
;
}
...
...
fs/xfs/xfs_super.c
浏览文件 @
e77b8547
...
...
@@ -796,8 +796,7 @@ xfs_open_devices(
out_free_ddev_targ:
xfs_free_buftarg
(
mp
,
mp
->
m_ddev_targp
);
out_close_rtdev:
if
(
rtdev
)
xfs_blkdev_put
(
rtdev
);
xfs_blkdev_put
(
rtdev
);
out_close_logdev:
if
(
logdev
&&
logdev
!=
ddev
)
xfs_blkdev_put
(
logdev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录