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
370d7089
Commit
370d7089
authored
Mar 07, 2004
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ALPHA] Fix gcc 3.4 build problems.
parent
47f766a2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
54 deletions
+56
-54
arch/alpha/kernel/osf_sys.c
arch/alpha/kernel/osf_sys.c
+1
-1
arch/alpha/kernel/pci_iommu.c
arch/alpha/kernel/pci_iommu.c
+1
-1
arch/alpha/kernel/proto.h
arch/alpha/kernel/proto.h
+3
-3
arch/alpha/lib/io.c
arch/alpha/lib/io.c
+48
-46
include/asm-alpha/unistd.h
include/asm-alpha/unistd.h
+2
-2
init/initramfs.c
init/initramfs.c
+1
-1
No files found.
arch/alpha/kernel/osf_sys.c
View file @
370d7089
...
...
@@ -131,7 +131,7 @@ osf_filldir(void *__buf, const char *name, int namlen, loff_t offset,
if
(
copy_to_user
(
dirent
->
d_name
,
name
,
namlen
)
||
put_user
(
0
,
dirent
->
d_name
+
namlen
))
return
-
EFAULT
;
((
char
*
)
dirent
)
+=
reclen
;
dirent
=
(
void
*
)
dirent
+
reclen
;
buf
->
dirent
=
dirent
;
buf
->
count
-=
reclen
;
return
0
;
...
...
arch/alpha/kernel/pci_iommu.c
View file @
370d7089
...
...
@@ -500,7 +500,7 @@ sg_classify(struct scatterlist *sg, struct scatterlist *end, int virt_ok)
/* Given a scatterlist leader, choose an allocation method and fill
in the blanks. */
static
in
line
in
t
static
int
sg_fill
(
struct
scatterlist
*
leader
,
struct
scatterlist
*
end
,
struct
scatterlist
*
out
,
struct
pci_iommu_arena
*
arena
,
dma_addr_t
max_dma
,
int
dac_allowed
)
...
...
arch/alpha/kernel/proto.h
View file @
370d7089
...
...
@@ -203,9 +203,9 @@ extern struct mcheck_info
unsigned
char
extra
;
}
__mcheck_info
;
#define mcheck_expected(cpu) (
(void)(cpu), __mcheck_info.expected
)
#define mcheck_taken(cpu) (
(void)(cpu), __mcheck_info.taken
)
#define mcheck_extra(cpu) (
(void)(cpu), __mcheck_info.extra
)
#define mcheck_expected(cpu) (
*((void)(cpu), &__mcheck_info.expected)
)
#define mcheck_taken(cpu) (
*((void)(cpu), &__mcheck_info.taken)
)
#define mcheck_extra(cpu) (
*((void)(cpu), &__mcheck_info.extra)
)
#endif
extern
void
process_mcheck_info
(
unsigned
long
vector
,
unsigned
long
la_ptr
,
...
...
arch/alpha/lib/io.c
View file @
370d7089
...
...
@@ -143,7 +143,7 @@ void insb (unsigned long port, void *dst, unsigned long count)
return
;
count
--
;
*
(
unsigned
char
*
)
dst
=
inb
(
port
);
((
unsigned
char
*
)
dst
)
++
;
dst
+=
1
;
}
while
(
count
>=
4
)
{
...
...
@@ -154,13 +154,13 @@ void insb (unsigned long port, void *dst, unsigned long count)
w
|=
inb
(
port
)
<<
16
;
w
|=
inb
(
port
)
<<
24
;
*
(
unsigned
int
*
)
dst
=
w
;
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
}
while
(
count
)
{
--
count
;
*
(
unsigned
char
*
)
dst
=
inb
(
port
);
((
unsigned
char
*
)
dst
)
++
;
dst
+=
1
;
}
}
...
...
@@ -181,8 +181,8 @@ void insw (unsigned long port, void *dst, unsigned long count)
if
(
!
count
)
return
;
count
--
;
*
(
unsigned
short
*
)
dst
=
inw
(
port
);
((
unsigned
short
*
)
dst
)
++
;
*
(
unsigned
short
*
)
dst
=
inw
(
port
);
dst
+=
2
;
}
while
(
count
>=
2
)
{
...
...
@@ -191,7 +191,7 @@ void insw (unsigned long port, void *dst, unsigned long count)
w
=
inw
(
port
);
w
|=
inw
(
port
)
<<
16
;
*
(
unsigned
int
*
)
dst
=
w
;
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
}
if
(
count
)
{
...
...
@@ -209,70 +209,72 @@ void insw (unsigned long port, void *dst, unsigned long count)
void
insl
(
unsigned
long
port
,
void
*
dst
,
unsigned
long
count
)
{
unsigned
int
l
=
0
,
l2
;
if
(
!
count
)
return
;
switch
(((
unsigned
long
)
dst
)
&
0x3
)
{
case
0x00
:
/* Buffer 32-bit aligned */
while
(
count
--
)
{
*
(
unsigned
int
*
)
dst
=
inl
(
port
);
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
}
break
;
/* Assuming little endian Alphas in cases 0x01 -- 0x03 ... */
case
0x02
:
/* Buffer 16-bit aligned */
--
count
;
l
=
inl
(
port
);
*
(
unsigned
short
*
)
dst
=
l
;
((
unsigned
short
*
)
dst
)
++
;
dst
+=
2
;
while
(
count
--
)
{
l2
=
inl
(
port
);
*
(
unsigned
int
*
)
dst
=
l
>>
16
|
l2
<<
16
;
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
l
=
l2
;
}
*
(
unsigned
short
*
)
dst
=
l
>>
16
;
break
;
case
0x01
:
/* Buffer 8-bit aligned */
--
count
;
l
=
inl
(
port
);
*
(
unsigned
char
*
)
dst
=
l
;
((
unsigned
char
*
)
dst
)
++
;
dst
+=
1
;
*
(
unsigned
short
*
)
dst
=
l
>>
8
;
((
unsigned
short
*
)
dst
)
++
;
dst
+=
2
;
while
(
count
--
)
{
l2
=
inl
(
port
);
*
(
unsigned
int
*
)
dst
=
l
>>
24
|
l2
<<
8
;
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
l
=
l2
;
}
*
(
unsigned
char
*
)
dst
=
l
>>
24
;
break
;
case
0x03
:
/* Buffer 8-bit aligned */
--
count
;
l
=
inl
(
port
);
*
(
unsigned
char
*
)
dst
=
l
;
((
unsigned
char
*
)
dst
)
++
;
dst
+=
1
;
while
(
count
--
)
{
l2
=
inl
(
port
);
*
(
unsigned
int
*
)
dst
=
l
<<
24
|
l2
>>
8
;
((
unsigned
int
*
)
dst
)
++
;
dst
+=
4
;
l
=
l2
;
}
*
(
unsigned
short
*
)
dst
=
l
>>
8
;
((
unsigned
short
*
)
dst
)
++
;
dst
+=
2
;
*
(
unsigned
char
*
)
dst
=
l
>>
24
;
break
;
}
...
...
@@ -290,7 +292,7 @@ void outsb(unsigned long port, const void * src, unsigned long count)
while
(
count
)
{
count
--
;
outb
(
*
(
char
*
)
src
,
port
);
((
char
*
)
src
)
++
;
src
+=
1
;
}
}
...
...
@@ -307,7 +309,7 @@ void outsw (unsigned long port, const void *src, unsigned long count)
panic
(
"outsw: memory not short aligned"
);
}
outw
(
*
(
unsigned
short
*
)
src
,
port
);
((
unsigned
short
*
)
src
)
++
;
src
+=
2
;
--
count
;
}
...
...
@@ -315,7 +317,7 @@ void outsw (unsigned long port, const void *src, unsigned long count)
unsigned
int
w
;
count
-=
2
;
w
=
*
(
unsigned
int
*
)
src
;
((
unsigned
int
*
)
src
)
++
;
src
+=
4
;
outw
(
w
>>
0
,
port
);
outw
(
w
>>
16
,
port
);
}
...
...
@@ -335,69 +337,69 @@ void outsw (unsigned long port, const void *src, unsigned long count)
void
outsl
(
unsigned
long
port
,
const
void
*
src
,
unsigned
long
count
)
{
unsigned
int
l
=
0
,
l2
;
if
(
!
count
)
return
;
switch
(((
unsigned
long
)
src
)
&
0x3
)
{
case
0x00
:
/* Buffer 32-bit aligned */
while
(
count
--
)
{
outl
(
*
(
unsigned
int
*
)
src
,
port
);
((
unsigned
int
*
)
src
)
++
;
src
+=
4
;
}
break
;
/* Assuming little endian Alphas in cases 0x01 -- 0x03 ... */
case
0x02
:
/* Buffer 16-bit aligned */
--
count
;
l
=
*
(
unsigned
short
*
)
src
<<
16
;
((
unsigned
short
*
)
src
)
++
;
src
+=
2
;
while
(
count
--
)
{
l2
=
*
(
unsigned
int
*
)
src
;
((
unsigned
int
*
)
src
)
++
;
src
+=
4
;
outl
(
l
>>
16
|
l2
<<
16
,
port
);
l
=
l2
;
}
l2
=
*
(
unsigned
short
*
)
src
;
outl
(
l
>>
16
|
l2
<<
16
,
port
);
break
;
case
0x01
:
/* Buffer 8-bit aligned */
--
count
;
l
=
*
(
unsigned
char
*
)
src
<<
8
;
((
unsigned
char
*
)
src
)
++
;
src
+=
1
;
l
|=
*
(
unsigned
short
*
)
src
<<
16
;
((
unsigned
short
*
)
src
)
++
;
src
+=
2
;
while
(
count
--
)
{
l2
=
*
(
unsigned
int
*
)
src
;
((
unsigned
int
*
)
src
)
++
;
src
+=
4
;
outl
(
l
>>
8
|
l2
<<
24
,
port
);
l
=
l2
;
}
l2
=
*
(
unsigned
char
*
)
src
;
outl
(
l
>>
8
|
l2
<<
24
,
port
);
break
;
case
0x03
:
/* Buffer 8-bit aligned */
--
count
;
l
=
*
(
unsigned
char
*
)
src
<<
24
;
((
unsigned
char
*
)
src
)
++
;
src
+=
1
;
while
(
count
--
)
{
l2
=
*
(
unsigned
int
*
)
src
;
((
unsigned
int
*
)
src
)
++
;
src
+=
4
;
outl
(
l
>>
24
|
l2
<<
8
,
port
);
l
=
l2
;
}
l2
=
*
(
unsigned
short
*
)
src
;
((
unsigned
short
*
)
src
)
++
;
src
+=
2
;
l2
|=
*
(
unsigned
char
*
)
src
<<
16
;
outl
(
l
>>
24
|
l2
<<
8
,
port
);
break
;
...
...
@@ -435,7 +437,7 @@ void _memcpy_fromio(void * to, unsigned long from, long count)
}
while
(
count
>=
0
);
count
+=
4
;
}
if
(
count
>=
2
&&
((
unsigned
long
)
to
&
1
)
==
(
from
&
1
))
{
count
-=
2
;
do
{
...
...
@@ -486,7 +488,7 @@ void _memcpy_toio(unsigned long to, const void * from, long count)
}
while
(
count
>=
0
);
count
+=
4
;
}
if
(
count
>=
2
&&
(
to
&
1
)
==
((
unsigned
long
)
from
&
1
))
{
count
-=
2
;
do
{
...
...
include/asm-alpha/unistd.h
View file @
370d7089
...
...
@@ -573,9 +573,9 @@ static inline off_t lseek(int fd, off_t off, int whence)
return
sys_lseek
(
fd
,
off
,
whence
);
}
static
inline
long
_exit
(
int
value
)
static
inline
void
_exit
(
int
value
)
{
return
sys_exit
(
value
);
sys_exit
(
value
);
}
#define exit(x) _exit(x)
...
...
init/initramfs.c
View file @
370d7089
...
...
@@ -16,7 +16,7 @@ static void __init error(char *x)
message
=
x
;
}
static
void
__init
*
malloc
(
in
t
size
)
static
void
__init
*
malloc
(
size_
t
size
)
{
return
kmalloc
(
size
,
GFP_KERNEL
);
}
...
...
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