Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4b10971a
Commit
4b10971a
authored
Nov 19, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-review fixes
parent
3f4aa5f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
30 deletions
+43
-30
storage/maria/tablockman.c
storage/maria/tablockman.c
+43
-30
No files found.
storage/maria/tablockman.c
View file @
4b10971a
...
@@ -229,7 +229,7 @@ struct st_table_lock {
...
@@ -229,7 +229,7 @@ struct st_table_lock {
#define hash_insert my_hash_insert
/* for consistency :) */
#define hash_insert my_hash_insert
/* for consistency :) */
static
inline
static
inline
TABLE_LOCK
*
find_loid
(
LOCKED_TABLE
*
table
,
uint16
loid
)
TABLE_LOCK
*
find_
by_
loid
(
LOCKED_TABLE
*
table
,
uint16
loid
)
{
{
return
(
TABLE_LOCK
*
)
hash_search
(
&
table
->
latest_locks
,
return
(
TABLE_LOCK
*
)
hash_search
(
&
table
->
latest_locks
,
(
byte
*
)
&
loid
,
sizeof
(
loid
));
(
byte
*
)
&
loid
,
sizeof
(
loid
));
...
@@ -286,7 +286,7 @@ tablockman_getlock(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo,
...
@@ -286,7 +286,7 @@ tablockman_getlock(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo,
pthread_mutex_lock
(
&
table
->
mutex
);
pthread_mutex_lock
(
&
table
->
mutex
);
/* do we already have a lock on this resource ? */
/* do we already have a lock on this resource ? */
old
=
find_loid
(
table
,
lo
->
loid
);
old
=
find_
by_
loid
(
table
,
lo
->
loid
);
/* calculate the level of the upgraded lock, if yes */
/* calculate the level of the upgraded lock, if yes */
new_lock
=
old
?
lock_combining_matrix
[
old
->
lock_type
][
lock
]
:
lock
;
new_lock
=
old
?
lock_combining_matrix
[
old
->
lock_type
][
lock
]
:
lock
;
...
@@ -340,37 +340,50 @@ tablockman_getlock(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo,
...
@@ -340,37 +340,50 @@ tablockman_getlock(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo,
{
{
/* found! */
/* found! */
wait_for
=
tmp
;
wait_for
=
tmp
;
break
;
}
}
else
{
/*
hmm, the lock before doesn't block us, let's look one step further.
the condition below means:
if we never waited on a condition yet
OR
the lock before ours (blocker) waits on a lock (blocker2) that is
present in the hash AND and conflicts with 'blocker'
the condition after OR may fail if 'blocker2' was removed from
/*
the hash, its signal woke us up, but 'blocker' itself didn't see
hmm, the lock before doesn't block us, let's look one step further.
the signal yet.
the condition below means:
*/
if
(
!
lo
->
waiting_lock
||
if we never waited on a condition yet
((
blocker2
=
find_loid
(
table
,
tmp
->
waiting_for_loid
))
&&
OR
!
lock_compatibility_matrix
[
blocker2
->
lock_type
]
the lock before ours (blocker) waits on a lock (blocker2) that is
[
blocker
->
lock_type
]))
present in the hash AND and conflicts with 'blocker'
{
/* but it's waiting for a real lock. we'll wait for the same lock */
the condition after OR may fail if 'blocker2' was removed from
wait_for
=
tmp
->
waiting_for
;
the hash, its signal woke us up, but 'blocker' itself didn't see
}
the signal yet.
*/
if
(
!
lo
->
waiting_lock
||
((
blocker2
=
find_by_loid
(
table
,
tmp
->
waiting_for_loid
))
&&
!
lock_compatibility_matrix
[
blocker2
->
lock_type
]
[
blocker
->
lock_type
]))
{
/* but it's waiting for a real lock. we'll wait for the same lock */
wait_for
=
tmp
->
waiting_for
;
/*
/*
otherwise - a lock it's waiting for doesn't exist.
We don't really need tmp->waiting_for, as tmp->waiting_for_loid
We've no choice but to scan the wait queue backwards, looking
is enough. waiting_for is just a local cache to avoid calling
for a conflicting lock or a lock waiting for a real lock.
loid_to_tlo().
QQ is there a way to avoid this scanning ?
But it's essensial that tmp->waiting_for pointer can ONLY
be dereferenced if find_by_loid() above returns a non-null
pointer, because a TABLE_LOCK_OWNER object that it points to
may've been freed when we come here after a signal.
In particular tmp->waiting_for_loid cannot be replaced
with tmp->waiting_for->loid.
*/
*/
DBUG_ASSERT
(
wait_for
==
lm
->
loid_to_tlo
(
tmp
->
waiting_for_loid
));
break
;
}
}
/*
otherwise - a lock it's waiting for doesn't exist.
We've no choice but to scan the wait queue backwards, looking
for a conflicting lock or a lock waiting for a real lock.
QQ is there a way to avoid this scanning ?
*/
}
}
}
}
...
@@ -531,8 +544,8 @@ void tablockman_release_locks(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo)
...
@@ -531,8 +544,8 @@ void tablockman_release_locks(TABLOCKMAN *lm, TABLE_LOCK_OWNER *lo)
transactions are awaken. But if trn2 times out, trn3 must be notified
transactions are awaken. But if trn2 times out, trn3 must be notified
too (as IS and S locks are compatible). So trn2 must signal trn1->cond.
too (as IS and S locks are compatible). So trn2 must signal trn1->cond.
*/
*/
if
(
lock
->
prev
&&
if
(
lock
->
next
&&
lock_compatibility_matrix
[
lock
->
prev
->
lock_type
][
lock
->
lock_type
])
lock_compatibility_matrix
[
lock
->
next
->
lock_type
][
lock
->
lock_type
])
{
{
pthread_mutex_lock
(
lo
->
waiting_for
->
mutex
);
pthread_mutex_lock
(
lo
->
waiting_for
->
mutex
);
pthread_cond_broadcast
(
lo
->
waiting_for
->
cond
);
pthread_cond_broadcast
(
lo
->
waiting_for
->
cond
);
...
...
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