Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bfab08c0
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
bfab08c0
编写于
9月 23, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6
上级
eb0e0076
438282d8
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
14 addition
and
7 deletion
+14
-7
fs/jfs/inode.c
fs/jfs/inode.c
+1
-2
fs/jfs/jfs_dmap.c
fs/jfs/jfs_dmap.c
+1
-1
fs/jfs/jfs_txnmgr.c
fs/jfs/jfs_txnmgr.c
+11
-4
fs/jfs/jfs_txnmgr.h
fs/jfs/jfs_txnmgr.h
+1
-0
未找到文件。
fs/jfs/inode.c
浏览文件 @
bfab08c0
...
...
@@ -129,8 +129,7 @@ void jfs_delete_inode(struct inode *inode)
jfs_info
(
"In jfs_delete_inode, inode = 0x%p"
,
inode
);
if
(
!
is_bad_inode
(
inode
)
&&
(
JFS_IP
(
inode
)
->
fileset
==
cpu_to_le32
(
FILESYSTEM_I
)))
{
(
JFS_IP
(
inode
)
->
fileset
==
FILESYSTEM_I
))
{
truncate_inode_pages
(
&
inode
->
i_data
,
0
);
if
(
test_cflag
(
COMMIT_Freewmap
,
inode
))
...
...
fs/jfs/jfs_dmap.c
浏览文件 @
bfab08c0
...
...
@@ -3055,7 +3055,7 @@ static int cntlz(u32 value)
* RETURN VALUES:
* log2 number of blocks
*/
int
blkstol2
(
s64
nb
)
static
int
blkstol2
(
s64
nb
)
{
int
l2nb
;
s64
mask
;
/* meant to be signed */
...
...
fs/jfs/jfs_txnmgr.c
浏览文件 @
bfab08c0
...
...
@@ -725,6 +725,9 @@ struct tlock *txLock(tid_t tid, struct inode *ip, struct metapage * mp,
else
tlck
->
flag
=
tlckINODELOCK
;
if
(
S_ISDIR
(
ip
->
i_mode
))
tlck
->
flag
|=
tlckDIRECTORY
;
tlck
->
type
=
0
;
/* bind the tlock and the page */
...
...
@@ -1009,6 +1012,8 @@ struct tlock *txMaplock(tid_t tid, struct inode *ip, int type)
/* bind the tlock and the object */
tlck
->
flag
=
tlckINODELOCK
;
if
(
S_ISDIR
(
ip
->
i_mode
))
tlck
->
flag
|=
tlckDIRECTORY
;
tlck
->
ip
=
ip
;
tlck
->
mp
=
NULL
;
...
...
@@ -1077,6 +1082,8 @@ struct linelock *txLinelock(struct linelock * tlock)
linelock
->
flag
=
tlckLINELOCK
;
linelock
->
maxcnt
=
TLOCKLONG
;
linelock
->
index
=
0
;
if
(
tlck
->
flag
&
tlckDIRECTORY
)
linelock
->
flag
|=
tlckDIRECTORY
;
/* append linelock after tlock */
linelock
->
next
=
tlock
->
next
;
...
...
@@ -2070,8 +2077,8 @@ static void xtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
*
* function: log from maplock of freed data extents;
*/
void
mapLog
(
struct
jfs_log
*
log
,
struct
tblock
*
tblk
,
struct
lrd
*
lrd
,
struct
tlock
*
tlck
)
static
void
mapLog
(
struct
jfs_log
*
log
,
struct
tblock
*
tblk
,
struct
lrd
*
lrd
,
struct
tlock
*
tlck
)
{
struct
pxd_lock
*
pxdlock
;
int
i
,
nlock
;
...
...
@@ -2209,7 +2216,7 @@ void txEA(tid_t tid, struct inode *ip, dxd_t * oldea, dxd_t * newea)
* function: synchronously write pages locked by transaction
* after txLog() but before txUpdateMap();
*/
void
txForce
(
struct
tblock
*
tblk
)
static
void
txForce
(
struct
tblock
*
tblk
)
{
struct
tlock
*
tlck
;
lid_t
lid
,
next
;
...
...
@@ -2358,7 +2365,7 @@ static void txUpdateMap(struct tblock * tblk)
*/
else
{
/* (maplock->flag & mlckFREE) */
if
(
S_ISDIR
(
tlck
->
ip
->
i_mode
)
)
if
(
tlck
->
flag
&
tlckDIRECTORY
)
txFreeMap
(
ipimap
,
maplock
,
tblk
,
COMMIT_PWMAP
);
else
...
...
fs/jfs/jfs_txnmgr.h
浏览文件 @
bfab08c0
...
...
@@ -122,6 +122,7 @@ extern struct tlock *TxLock; /* transaction lock table */
#define tlckLOG 0x0800
/* updateMap state */
#define tlckUPDATEMAP 0x0080
#define tlckDIRECTORY 0x0040
/* freeLock state */
#define tlckFREELOCK 0x0008
#define tlckWRITEPAGE 0x0004
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录