Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
4ceae7c6
Commit
4ceae7c6
authored
7 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge branch 'bug25125_032_01_squashed' into maint-0.3.2
parents
77634795
005e228f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/or/scheduler.c
+15
-11
15 additions, 11 deletions
src/or/scheduler.c
src/test/test_scheduler.c
+12
-0
12 additions, 0 deletions
src/test/test_scheduler.c
with
27 additions
and
11 deletions
src/or/scheduler.c
+
15
−
11
View file @
4ceae7c6
...
...
@@ -628,17 +628,21 @@ scheduler_release_channel,(channel_t *chan))
return
;
}
if
(
chan
->
scheduler_state
==
SCHED_CHAN_PENDING
)
{
if
(
SCHED_BUG
(
smartlist_pos
(
channels_pending
,
chan
)
==
-
1
,
chan
))
{
log_warn
(
LD_SCHED
,
"Scheduler asked to release channel %"
PRIu64
" "
"but it wasn't in channels_pending"
,
chan
->
global_identifier
);
}
else
{
smartlist_pqueue_remove
(
channels_pending
,
scheduler_compare_channels
,
offsetof
(
channel_t
,
sched_heap_idx
),
chan
);
}
/* Try to remove the channel from the pending list regardless of its
* scheduler state. We can release a channel in many places in the tor code
* so we can't rely on the channel state (PENDING) to remove it from the
* list.
*
* For instance, the channel can change state from OPEN to CLOSING while
* being handled in the scheduler loop leading to the channel being in
* PENDING state but not in the pending list. Furthermore, we release the
* channel when it changes state to close and a second time when we free it.
* Not ideal at all but for now that is the way it is. */
if
(
chan
->
sched_heap_idx
!=
-
1
)
{
smartlist_pqueue_remove
(
channels_pending
,
scheduler_compare_channels
,
offsetof
(
channel_t
,
sched_heap_idx
),
chan
);
}
if
(
the_scheduler
->
on_channel_free
)
{
...
...
This diff is collapsed.
Click to expand it.
src/test/test_scheduler.c
+
12
−
0
View file @
4ceae7c6
...
...
@@ -502,6 +502,18 @@ perform_channel_state_tests(int KISTSchedRunInterval, int sched_type)
scheduler_touch_channel
(
ch1
);
tt_assert
(
scheduler_compare_channels_mock_ctr
>
old_count
);
/* Release the ch2 and then do it another time to make sure it doesn't blow
* up and we are still in a quiescent state. */
scheduler_release_channel
(
ch2
);
tt_int_op
(
ch2
->
scheduler_state
,
OP_EQ
,
SCHED_CHAN_IDLE
);
tt_int_op
(
smartlist_len
(
channels_pending
),
OP_EQ
,
1
);
/* Cheat a bit so make the release more confused but also will tells us if
* the release did put the channel in the right state. */
ch2
->
scheduler_state
=
SCHED_CHAN_PENDING
;
scheduler_release_channel
(
ch2
);
tt_int_op
(
ch2
->
scheduler_state
,
OP_EQ
,
SCHED_CHAN_IDLE
);
tt_int_op
(
smartlist_len
(
channels_pending
),
OP_EQ
,
1
);
/* Close */
channel_mark_for_close
(
ch1
);
tt_int_op
(
ch1
->
state
,
OP_EQ
,
CHANNEL_STATE_CLOSING
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment