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
Kirill Smelkov
linux
Commits
75563be1
Commit
75563be1
authored
Jan 19, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge nuts.ninka.net:/disk1/davem/BK/network-2.6
into nuts.ninka.net:/disk1/davem/BK/net-2.6
parents
0010bc50
05c79878
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
9 deletions
+20
-9
drivers/net/Kconfig
drivers/net/Kconfig
+1
-1
include/net/neighbour.h
include/net/neighbour.h
+0
-2
net/core/pktgen.c
net/core/pktgen.c
+13
-3
net/sunrpc/sysctl.c
net/sunrpc/sysctl.c
+6
-3
No files found.
drivers/net/Kconfig
View file @
75563be1
...
...
@@ -1697,7 +1697,7 @@ config NET_POCKET
<file:Documentation/Changes>) and you can say N here.
Laptop users should read the Linux Laptop home page at
<http://www.
cs.utexas.edu/users/kharker/linux-laptop
/>.
<http://www.
linux-on-laptops.com
/>.
Note that the answer to this question doesn't directly affect the
kernel: saying N will just cause the configurator to skip all
...
...
include/net/neighbour.h
View file @
75563be1
...
...
@@ -47,9 +47,7 @@
#include <linux/skbuff.h>
#include <linux/err.h>
#ifdef CONFIG_SYSCTL
#include <linux/sysctl.h>
#endif
#define NUD_IN_TIMER (NUD_INCOMPLETE|NUD_DELAY|NUD_PROBE)
#define NUD_VALID (NUD_PERMANENT|NUD_NOARP|NUD_REACHABLE|NUD_PROBE|NUD_STALE|NUD_DELAY)
...
...
net/core/pktgen.c
View file @
75563be1
...
...
@@ -88,7 +88,7 @@
#define cycles() ((u32)get_cycles())
#define VERSION "pktgen version 1.3"
#define VERSION "pktgen version 1.3
1
"
static
char
version
[]
__initdata
=
"pktgen.c: v1.3: Packet Generator for packet performance testing.
\n
"
;
...
...
@@ -720,8 +720,18 @@ static void inject(struct pktgen_info* info)
{
char
*
p
=
info
->
result
;
__u64
pps
=
(
__u32
)(
info
->
sofar
*
1000
)
/
((
__u32
)(
total
)
/
1000
);
__u64
bps
=
pps
*
8
*
(
info
->
pkt_size
+
4
);
/* take 32bit ethernet CRC into account */
__u64
bps
,
pps
=
0
;
if
(
total
>
1000
)
pps
=
(
__u32
)(
info
->
sofar
*
1000
)
/
((
__u32
)(
total
)
/
1000
);
else
if
(
total
>
100
)
pps
=
(
__u32
)(
info
->
sofar
*
10000
)
/
((
__u32
)(
total
)
/
100
);
else
if
(
total
>
10
)
pps
=
(
__u32
)(
info
->
sofar
*
100000
)
/
((
__u32
)(
total
)
/
10
);
else
if
(
total
>
1
)
pps
=
(
__u32
)(
info
->
sofar
*
1000000
)
/
(
__u32
)
total
;
bps
=
pps
*
8
*
(
info
->
pkt_size
+
4
);
/* take 32bit ethernet CRC into account */
p
+=
sprintf
(
p
,
"OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags) %llupps %lluMb/sec (%llubps) errors: %llu"
,
(
unsigned
long
long
)
total
,
(
unsigned
long
long
)
(
total
-
idle
),
...
...
net/sunrpc/sysctl.c
View file @
75563be1
...
...
@@ -81,7 +81,8 @@ proc_dodebug(ctl_table *table, int write, struct file *file,
if
(
left
>
sizeof
(
tmpbuf
)
-
1
)
return
-
EINVAL
;
copy_from_user
(
tmpbuf
,
p
,
left
);
if
(
copy_from_user
(
tmpbuf
,
p
,
left
))
return
-
EFAULT
;
tmpbuf
[
left
]
=
'\0'
;
for
(
p
=
tmpbuf
,
value
=
0
;
'0'
<=
*
p
&&
*
p
<=
'9'
;
p
++
,
left
--
)
...
...
@@ -101,9 +102,11 @@ proc_dodebug(ctl_table *table, int write, struct file *file,
len
=
sprintf
(
tmpbuf
,
"%d"
,
*
(
unsigned
int
*
)
table
->
data
);
if
(
len
>
left
)
len
=
left
;
__copy_to_user
(
buffer
,
tmpbuf
,
len
);
if
(
__copy_to_user
(
buffer
,
tmpbuf
,
len
))
return
-
EFAULT
;
if
((
left
-=
len
)
>
0
)
{
put_user
(
'\n'
,
(
char
*
)
buffer
+
len
);
if
(
put_user
(
'\n'
,
(
char
*
)
buffer
+
len
))
return
-
EFAULT
;
left
--
;
}
}
...
...
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