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
11db4bd4
Commit
11db4bd4
authored
Oct 14, 2002
by
Rob Radez
Committed by
David S. Miller
Oct 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Remove final traces of csum_partial_copy.
parent
8f3e3723
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
36 deletions
+0
-36
arch/i386/lib/old-checksum.c
arch/i386/lib/old-checksum.c
+0
-19
arch/sh/lib/old-checksum.c
arch/sh/lib/old-checksum.c
+0
-17
No files found.
arch/i386/lib/old-checksum.c
deleted
100644 → 0
View file @
8f3e3723
/*
* FIXME: old compatibility stuff, will be removed soon.
*/
#include <net/checksum.h>
unsigned
int
csum_partial_copy
(
const
char
*
src
,
char
*
dst
,
int
len
,
int
sum
)
{
int
src_err
=
0
,
dst_err
=
0
;
sum
=
csum_partial_copy_generic
(
src
,
dst
,
len
,
sum
,
&
src_err
,
&
dst_err
);
if
(
src_err
||
dst_err
)
printk
(
"old csum_partial_copy_fromuser(), tell mingo to convert me.
\n
"
);
return
sum
;
}
arch/sh/lib/old-checksum.c
deleted
100644 → 0
View file @
8f3e3723
/*
* FIXME: old compatibility stuff, will be removed soon.
*/
#include <net/checksum.h>
unsigned
int
csum_partial_copy
(
const
char
*
src
,
char
*
dst
,
int
len
,
int
sum
)
{
int
src_err
=
0
,
dst_err
=
0
;
sum
=
csum_partial_copy_generic
(
src
,
dst
,
len
,
sum
,
&
src_err
,
&
dst_err
);
if
(
src_err
||
dst_err
)
printk
(
"old csum_partial_copy_fromuser(), tell mingo to convert me.
\n
"
);
return
sum
;
}
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