forked from ememos/GiantVM
-
Notifications
You must be signed in to change notification settings - Fork 1
Introduce CC-lock infrastructure #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
YWHyuk
wants to merge
25
commits into
linuxgeek-Inc:master
Choose a base branch
from
YWHyuk:cc-lock
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC-lock is based on flat-lock combining algorithm. In this lock, only one thread, called combiner thread the request of critical section. So, combiner thread can exploit locality and aviod high contetetion between lock varible. When each cpu use only one node, let's assume lock hold node A. In this case, node A's (wait, completed) status should be (false, false). Lock | A When A,B cpu race occured, Let's assume that B is win. Then, B will try to spin on A's wait Status. A -> B w:F w:T At the same time, A was enqueued. So, A's wait status was set to True like below. A -> B -> A w:T w:T w:T This lead to deadlock. To avoid above node-reusing problem, each cpu has two cc_node. Those node are used alternately. A_0 -> B_0 -> A_1 w:f w:T w:T Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Test reported that there is a deadlock. Situation are
below.
Node(0, 1) {
req = 00000000d0495726,
params = 000000002f36f5ac,
wait = 0, completed = 1,
refcount = 0,
Next (2, 0)
Prev (0, 0)
}
Node(2, 0) {
req = 00000000d0495726,
params = 000000002f36f5ac,
wait = 1, completed = 0,
refcount = 0,
Next (2, 1)
Prev (0, 1)
}
Node (0, 1)'s request are handled. So, it wait,
completed status are (0, 1). But, it's next node
Node(2, 0)'s wait are still 1. The combiner thread
should set Node(2, 0) wait = 0. Previous logic
set wait = 0, when DECODE_CPU(pending_cpu) != NR_CPUS.
But there can be race between combiner thread
and normal thread. In the combiner thread it
check node->req first, then it check node->next.
So there could be a situation below
Node(0, 1) Node(2, 0)
prev->req = req
if(pending->req)
...
DECODE_CPU(pending->next)
prev->next = this_cpu
To fix this, combiner thread check node->next first.
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Previous, test thread used jiffes to measure the spent time. But, it's resolution is low. So all the results are zero or one. So use sched_clock. Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
To keep order of reading node->next and writing of node->wait, node->completed, smp_mb should be used instead of smp_mb(). So fix it Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Using the "echo 2 > trigger", spinlock based benchmark can be run. Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CC-lock is based on flat-lock combining algorithm.
In this lock, only one thread, called combiner
thread the request of critical section. So, combiner
thread can exploit locality and aviod high contetetion
between lock varible.
When each cpu use only one node, let's assume lock
hold node A. In this case, node A's
(wait, completed) status should be (false, false).
Lock
|
A
When A,B cpu race occured, Let's assume that
B is win. Then, B will try to spin on A's wait
Status.
A -> B
w:F w:T
At the same time, A was enqueued. So, A's wait
status was set to True like below.
A -> B -> A
w:T w:T w:T
This lead to deadlock.
To avoid above node-reusing problem, each cpu has two
cc_node. Those node are used alternately.
A_0 -> B_0 -> A_1
w:f w:T w:T
Signed-off-by: Wonhyuk Yang vvghjk1234@gmail.com