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
a01c910d
Commit
a01c910d
authored
Oct 11, 2002
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix three alpha gcc 3.3 warnings.
parent
01ead9cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
40 deletions
+42
-40
arch/alpha/kernel/pci.c
arch/alpha/kernel/pci.c
+1
-1
include/asm-alpha/elf.h
include/asm-alpha/elf.h
+40
-38
include/asm-alpha/mmu_context.h
include/asm-alpha/mmu_context.h
+1
-1
No files found.
arch/alpha/kernel/pci.c
View file @
a01c910d
...
@@ -102,7 +102,7 @@ quirk_cypress(struct pci_dev *dev)
...
@@ -102,7 +102,7 @@ quirk_cypress(struct pci_dev *dev)
#define DMAPSZ (max_low_pfn << PAGE_SHIFT)
/* memory size, not window size */
#define DMAPSZ (max_low_pfn << PAGE_SHIFT)
/* memory size, not window size */
if
((
__direct_map_base
+
DMAPSZ
-
1
)
>=
0xfff00000UL
)
{
if
((
__direct_map_base
+
DMAPSZ
-
1
)
>=
0xfff00000UL
)
{
__direct_map_size
=
0xfff00000UL
-
__direct_map_base
;
__direct_map_size
=
0xfff00000UL
-
__direct_map_base
;
printk
(
"%s: adjusting direct map size to 0x%x
\n
"
,
printk
(
"%s: adjusting direct map size to 0x%
l
x
\n
"
,
__FUNCTION__
,
__direct_map_size
);
__FUNCTION__
,
__direct_map_size
);
}
else
{
}
else
{
struct
pci_controller
*
hose
=
dev
->
sysdata
;
struct
pci_controller
*
hose
=
dev
->
sysdata
;
...
...
include/asm-alpha/elf.h
View file @
a01c910d
...
@@ -58,44 +58,46 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
...
@@ -58,44 +58,46 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
Eventually, it would be nice if the ECOFF core-dump had to do the
Eventually, it would be nice if the ECOFF core-dump had to do the
translation, then ELF_CORE_COPY_REGS() would become trivial and
translation, then ELF_CORE_COPY_REGS() would become trivial and
faster. */
faster. */
#define ELF_CORE_COPY_REGS(_dest,_regs) \
{ \
#define ELF_CORE_COPY_REGS(_dest,_regs) \
struct user _dump; \
{ \
\
extern void dump_thread(struct pt_regs *, struct user *); \
dump_thread(_regs, &_dump); \
struct user _dump; \
_dest[ 0] = _dump.regs[EF_V0]; \
\
_dest[ 1] = _dump.regs[EF_T0]; \
dump_thread(_regs, &_dump); \
_dest[ 2] = _dump.regs[EF_T1]; \
_dest[ 0] = _dump.regs[EF_V0]; \
_dest[ 3] = _dump.regs[EF_T2]; \
_dest[ 1] = _dump.regs[EF_T0]; \
_dest[ 4] = _dump.regs[EF_T3]; \
_dest[ 2] = _dump.regs[EF_T1]; \
_dest[ 5] = _dump.regs[EF_T4]; \
_dest[ 3] = _dump.regs[EF_T2]; \
_dest[ 6] = _dump.regs[EF_T5]; \
_dest[ 4] = _dump.regs[EF_T3]; \
_dest[ 7] = _dump.regs[EF_T6]; \
_dest[ 5] = _dump.regs[EF_T4]; \
_dest[ 8] = _dump.regs[EF_T7]; \
_dest[ 6] = _dump.regs[EF_T5]; \
_dest[ 9] = _dump.regs[EF_S0]; \
_dest[ 7] = _dump.regs[EF_T6]; \
_dest[10] = _dump.regs[EF_S1]; \
_dest[ 8] = _dump.regs[EF_T7]; \
_dest[11] = _dump.regs[EF_S2]; \
_dest[ 9] = _dump.regs[EF_S0]; \
_dest[12] = _dump.regs[EF_S3]; \
_dest[10] = _dump.regs[EF_S1]; \
_dest[13] = _dump.regs[EF_S4]; \
_dest[11] = _dump.regs[EF_S2]; \
_dest[14] = _dump.regs[EF_S5]; \
_dest[12] = _dump.regs[EF_S3]; \
_dest[15] = _dump.regs[EF_S6]; \
_dest[13] = _dump.regs[EF_S4]; \
_dest[16] = _dump.regs[EF_A0]; \
_dest[14] = _dump.regs[EF_S5]; \
_dest[17] = _dump.regs[EF_A1]; \
_dest[15] = _dump.regs[EF_S6]; \
_dest[18] = _dump.regs[EF_A2]; \
_dest[16] = _dump.regs[EF_A0]; \
_dest[19] = _dump.regs[EF_A3]; \
_dest[17] = _dump.regs[EF_A1]; \
_dest[20] = _dump.regs[EF_A4]; \
_dest[18] = _dump.regs[EF_A2]; \
_dest[21] = _dump.regs[EF_A5]; \
_dest[19] = _dump.regs[EF_A3]; \
_dest[22] = _dump.regs[EF_T8]; \
_dest[20] = _dump.regs[EF_A4]; \
_dest[23] = _dump.regs[EF_T9]; \
_dest[21] = _dump.regs[EF_A5]; \
_dest[24] = _dump.regs[EF_T10]; \
_dest[22] = _dump.regs[EF_T8]; \
_dest[25] = _dump.regs[EF_T11]; \
_dest[23] = _dump.regs[EF_T9]; \
_dest[26] = _dump.regs[EF_RA]; \
_dest[24] = _dump.regs[EF_T10]; \
_dest[27] = _dump.regs[EF_T12]; \
_dest[25] = _dump.regs[EF_T11]; \
_dest[28] = _dump.regs[EF_AT]; \
_dest[26] = _dump.regs[EF_RA]; \
_dest[29] = _dump.regs[EF_GP]; \
_dest[27] = _dump.regs[EF_T12]; \
_dest[30] = _dump.regs[EF_SP]; \
_dest[28] = _dump.regs[EF_AT]; \
_dest[31] = _dump.regs[EF_PC];
/* store PC here */
\
_dest[29] = _dump.regs[EF_GP]; \
_dest[32] = _dump.regs[EF_PS]; \
_dest[30] = _dump.regs[EF_SP]; \
_dest[31] = _dump.regs[EF_PC];
/* store PC here */
\
_dest[32] = _dump.regs[EF_PS]; \
}
}
/* This yields a mask that user programs can use to figure out what
/* This yields a mask that user programs can use to figure out what
...
...
include/asm-alpha/mmu_context.h
View file @
a01c910d
...
@@ -33,7 +33,7 @@ __reload_thread(struct pcb_struct *pcb)
...
@@ -33,7 +33,7 @@ __reload_thread(struct pcb_struct *pcb)
"call_pal %2 #__reload_thread"
"call_pal %2 #__reload_thread"
:
"=r"
(
v0
),
"=r"
(
a0
)
:
"=r"
(
v0
),
"=r"
(
a0
)
:
"i"
(
PAL_swpctx
),
"r"
(
a0
)
:
"i"
(
PAL_swpctx
),
"r"
(
a0
)
:
"$1"
,
"$
16"
,
"$
22"
,
"$23"
,
"$24"
,
"$25"
);
:
"$1"
,
"$22"
,
"$23"
,
"$24"
,
"$25"
);
return
v0
;
return
v0
;
}
}
...
...
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