Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
nexedi
linux
Commits
0c9fffaa
Commit
0c9fffaa
authored
Jan 06, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://are.twiddle.net/axp-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
fd68505a
db0b3815
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
arch/alpha/kernel/module.c
arch/alpha/kernel/module.c
+4
-5
No files found.
arch/alpha/kernel/module.c
View file @
0c9fffaa
...
@@ -87,13 +87,12 @@ process_reloc_for_got(Elf64_Rela *rela,
...
@@ -87,13 +87,12 @@ process_reloc_for_got(Elf64_Rela *rela,
}
}
int
int
module_frob_arch_sections
(
const
Elf64_Ehdr
*
hdr
,
const
Elf64_Shdr
*
sechdrs
,
module_frob_arch_sections
(
Elf64_Ehdr
*
hdr
,
Elf64_Shdr
*
sechdrs
,
c
onst
c
har
*
secstrings
,
struct
module
*
me
)
char
*
secstrings
,
struct
module
*
me
)
{
{
struct
got_entry
*
chains
;
struct
got_entry
*
chains
;
Elf64_Rela
*
rela
;
Elf64_Rela
*
rela
;
const
Elf64_Shdr
*
esechdrs
,
*
symtab
,
*
s
;
Elf64_Shdr
*
esechdrs
,
*
symtab
,
*
s
,
*
got
;
Elf64_Shdr
*
got
;
unsigned
long
nsyms
,
nrela
,
i
;
unsigned
long
nsyms
,
nrela
,
i
;
esechdrs
=
sechdrs
+
hdr
->
e_shnum
;
esechdrs
=
sechdrs
+
hdr
->
e_shnum
;
...
@@ -106,7 +105,7 @@ module_frob_arch_sections(const Elf64_Ehdr *hdr, const Elf64_Shdr *sechdrs,
...
@@ -106,7 +105,7 @@ module_frob_arch_sections(const Elf64_Ehdr *hdr, const Elf64_Shdr *sechdrs,
if
(
s
->
sh_type
==
SHT_SYMTAB
)
if
(
s
->
sh_type
==
SHT_SYMTAB
)
symtab
=
s
;
symtab
=
s
;
else
if
(
!
strcmp
(
".got"
,
secstrings
+
s
->
sh_name
))
{
else
if
(
!
strcmp
(
".got"
,
secstrings
+
s
->
sh_name
))
{
got
=
(
Elf64_Shdr
*
)
s
;
got
=
s
;
me
->
arch
.
gotsecindex
=
s
-
sechdrs
;
me
->
arch
.
gotsecindex
=
s
-
sechdrs
;
}
}
...
...
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