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
991eb637
Commit
991eb637
authored
Jun 14, 2003
by
Anton Blanchard
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://ppc.bkbits.net/for-linus-ppc64
into samba.org:/home/anton/ppc64/for-linus-ppc64
parents
f7034030
b6cc6409
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
13 deletions
+16
-13
arch/ppc64/boot/zlib.c
arch/ppc64/boot/zlib.c
+15
-12
arch/ppc64/lib/copyuser.S
arch/ppc64/lib/copyuser.S
+1
-1
No files found.
arch/ppc64/boot/zlib.c
View file @
991eb637
...
...
@@ -1545,10 +1545,11 @@ local inflate_huft *fixed_tl;
local
inflate_huft
*
fixed_td
;
local
voidpf
falloc
(
q
,
n
,
s
)
voidpf
q
;
/* opaque pointer (not used) */
uInt
n
;
/* number of items */
uInt
s
;
/* size of item */
local
voidpf
falloc
(
voidpf
q
,
/* opaque pointer (not used) */
uInt
n
,
/* number of items */
uInt
s
/* size of item */
)
{
Assert
(
s
==
sizeof
(
inflate_huft
)
&&
n
<=
fixed_left
,
"inflate_trees falloc overflow"
);
...
...
@@ -1558,10 +1559,11 @@ uInt s; /* size of item */
}
local
void
ffree
(
q
,
p
,
n
)
voidpf
q
;
voidpf
p
;
uInt
n
;
local
void
ffree
(
voidpf
q
,
voidpf
p
,
uInt
n
)
{
Assert
(
0
,
"inflate_trees ffree called!"
);
if
(
q
)
q
=
p
;
/* to make some compilers happy */
...
...
@@ -2164,10 +2166,11 @@ char *z_errmsg[] = {
#define DO16(buf) DO8(buf); DO8(buf);
/* ========================================================================= */
uLong
adler32
(
adler
,
buf
,
len
)
uLong
adler
;
Bytef
*
buf
;
uInt
len
;
uLong
adler32
(
uLong
adler
,
Bytef
*
buf
,
uInt
len
)
{
unsigned
long
s1
=
adler
&
0xffff
;
unsigned
long
s2
=
(
adler
>>
16
)
&
0xffff
;
...
...
arch/ppc64/lib/copyuser.S
View file @
991eb637
...
...
@@ -130,7 +130,7 @@ _GLOBAL(__copy_tofrom_user)
6
:
cmpwi
cr1
,
r5
,
8
addi
r3
,
r3
,
32
sld
r9
,
r9
,
r10
bl
t
cr1
,
.
Ldo_tail
bl
e
cr1
,
.
Ldo_tail
34
:
ld
r0
,
8
(
r4
)
srd
r7
,
r0
,
r11
or
r9
,
r7
,
r9
...
...
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