Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
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
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RT-PROOFS
PROSA - Formally Proven Schedulability Analysis
Commits
cbd73a7e
Commit
cbd73a7e
authored
11 months ago
by
Sergey Bozhko
Browse files
Options
Downloads
Patches
Plain Diff
add corollary about only one job causing pi
parent
eab40796
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!363
Prove RTA for RS-FP-EDF and RS-NP-EDF
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
analysis/facts/busy_interval/pi.v
+42
-1
42 additions, 1 deletion
analysis/facts/busy_interval/pi.v
with
42 additions
and
1 deletion
analysis/facts/busy_interval/pi.v
+
42
−
1
View file @
cbd73a7e
...
@@ -153,7 +153,7 @@ Section PriorityInversionIsBounded.
...
@@ -153,7 +153,7 @@ Section PriorityInversionIsBounded.
(** In this section, we prove that priority inversion only
(** In this section, we prove that priority inversion only
occurs at the start of the busy window and occurs due to only
occurs at the start of the busy window and occurs due to only
one job. *)
one job. *)
Section
SingleJob
.
Section
SingleJob
.
(** Suppose job [j] incurs priority inversion at a time [t_pi] in its busy window. *)
(** Suppose job [j] incurs priority inversion at a time [t_pi] in its busy window. *)
...
@@ -206,6 +206,47 @@ Section PriorityInversionIsBounded.
...
@@ -206,6 +206,47 @@ Section PriorityInversionIsBounded.
End
SingleJob
.
End
SingleJob
.
(** As a simple corollary to the lemmas proved in the previous
section, we show that for any two jobs [j1] and [j2] that cause
priority inversion to job [j], it is the case that [j1 = j2]. *)
Section
SingleJobEq
.
(** Consider a time instant [ts1] in <<[t1, t2)>> ... *)
Variable
ts1
:
instant
.
Hypothesis
H_ts1_in_busy_prefix
:
t1
<=
ts1
<
t2
.
(** ... and a lower-priority (w.r.t. job [j]) job [j1] that is
scheduled at time [ts1]. *)
Variable
j1
:
Job
.
Hypothesis
H_j1_sched
:
scheduled_at
sched
j1
ts1
.
Hypothesis
H_j1_lower_prio
:
~~
hep_job
j1
j
.
(** Similarly, consider a time instant [ts2] in <<[t1, t2)>> ... *)
Variable
ts2
:
instant
.
Hypothesis
H_ts2_in_busy_prefix
:
t1
<=
ts2
<
t2
.
(** ... and a lower-priority job [j2] that is scheduled at time [ts2]. *)
Variable
j2
:
Job
.
Hypothesis
H_j2_sched
:
scheduled_at
sched
j2
ts2
.
Hypothesis
H_j2_lower_prio
:
~~
hep_job
j2
j
.
(** Then, [j1] is equal to [j2]. *)
Corollary
only_one_pi_job
:
j1
=
j2
.
Proof
.
have
[
NEQ
|
NEQ
]
:=
leqP
ts1
ts2
.
{
apply
:
H_uni
;
first
by
apply
H_j1_sched
.
apply
:
pi_job_remains_scheduled
;
try
apply
H_j2_sched
;
try
lia
.
by
erewrite
priority_inversion_hep_job
.
}
{
apply
:
H_uni
;
last
by
apply
H_j2_sched
.
apply
:
pi_job_remains_scheduled
;
try
apply
H_j1_sched
;
try
lia
.
by
erewrite
priority_inversion_hep_job
;
try
apply
H_j1_sched
.
}
Qed
.
End
SingleJobEq
.
(** From the above lemmas, it follows that either job [j] incurs no priority
(** From the above lemmas, it follows that either job [j] incurs no priority
inversion at all or certainly at time [t1], i.e., the beginning of its
inversion at all or certainly at time [t1], i.e., the beginning of its
busy interval. *)
busy interval. *)
...
...
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