Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
redox-os
relibc
Commits
b882ce52
Verified
Commit
b882ce52
authored
5 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Fix allocation of TLS masters if main image does not require TLS
parent
4818ad61
No related branches found
No related tags found
No related merge requests found
Pipeline
#6681
failed
5 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ld_so/linker.rs
+8
-4
8 additions, 4 deletions
src/ld_so/linker.rs
with
8 additions
and
4 deletions
src/ld_so/linker.rs
+
8
−
4
View file @
b882ce52
...
@@ -220,7 +220,12 @@ impl Linker {
...
@@ -220,7 +220,12 @@ impl Linker {
// Copy data
// Copy data
let
mut
tls_offset
=
tls_primary
;
let
mut
tls_offset
=
tls_primary
;
let
mut
tcb_masters
=
Vec
::
new
();
let
mut
tcb_masters
=
Vec
::
new
();
let
mut
tls_index
=
0
;
// Insert main image master
tcb_masters
.push
(
Master
{
ptr
:
ptr
::
null_mut
(),
len
:
0
,
offset
:
0
,
});
let
mut
tls_ranges
=
BTreeMap
::
new
();
let
mut
tls_ranges
=
BTreeMap
::
new
();
for
(
elf_name
,
elf
)
in
elfs
.iter
()
{
for
(
elf_name
,
elf
)
in
elfs
.iter
()
{
let
object
=
match
self
.objects
.get
(
*
elf_name
)
{
let
object
=
match
self
.objects
.get
(
*
elf_name
)
{
...
@@ -299,12 +304,11 @@ impl Linker {
...
@@ -299,12 +304,11 @@ impl Linker {
if
*
elf_name
==
primary
{
if
*
elf_name
==
primary
{
tls_ranges
.insert
(
elf_name
,
(
0
,
tcb_master
.range
()));
tls_ranges
.insert
(
elf_name
,
(
0
,
tcb_master
.range
()));
tcb_masters
.insert
(
0
,
tcb_master
)
;
tcb_masters
[
0
]
=
tcb_master
;
}
else
{
}
else
{
tcb_master
.offset
-=
tls_offset
;
tcb_master
.offset
-=
tls_offset
;
tls_offset
+=
vsize
;
tls_offset
+=
vsize
;
tls_index
+=
1
;
tls_ranges
.insert
(
elf_name
,
(
tcb_masters
.len
(),
tcb_master
.range
()));
tls_ranges
.insert
(
elf_name
,
(
tls_index
,
tcb_master
.range
()));
tcb_masters
.push
(
tcb_master
);
tcb_masters
.push
(
tcb_master
);
}
}
}
}
...
...
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