projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7078253
)
JFS: kernel BUG at fs/jfs/jfs_txnmgr.c:859
author
Dave Kleikamp
<shaggy@austin.ibm.com>
Thu, 2 Jun 2005 17:18:20 +0000
(12:18 -0500)
committer
Dave Kleikamp
<shaggy@austin.ibm.com>
Thu, 2 Jun 2005 17:18:20 +0000
(12:18 -0500)
add_missing_indices() must set tlck->type to tlckBTROOT when modifying
a root btree root to avoid a trap in txRelease()
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
fs/jfs/jfs_dtree.c
patch
|
blob
|
history
diff --git
a/fs/jfs/jfs_dtree.c
b/fs/jfs/jfs_dtree.c
index
ac41f72
..
8676aee
100644
(file)
--- a/
fs/jfs/jfs_dtree.c
+++ b/
fs/jfs/jfs_dtree.c
@@
-2931,6
+2931,9
@@
static void add_missing_indices(struct inode *inode, s64 bn)
ASSERT(p->header.flag & BT_LEAF);
tlck = txLock(tid, inode, mp, tlckDTREE | tlckENTRY);
+ if (BT_IS_ROOT(mp))
+ tlck->type |= tlckBTROOT;
+
dtlck = (struct dt_lock *) &tlck->lock;
stbl = DT_GETSTBL(p);