Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
bfab08c0
Commit
bfab08c0
authored
Sep 23, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6
parents
eb0e0076
438282d8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
7 deletions
+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
No files found.
fs/jfs/inode.c
View file @
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
View file @
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
View file @
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
View file @
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment