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
c487f144
Commit
c487f144
authored
Sep 28, 2003
by
Arnaldo Carvalho de Melo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
o NET: move net/ipv4/tcp_output.c EXPORT_SYMBOLs from net/netsyms.c
parent
1a5daf17
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
net/ipv4/tcp_output.c
net/ipv4/tcp_output.c
+12
-0
net/netsyms.c
net/netsyms.c
+0
-8
No files found.
net/ipv4/tcp_output.c
View file @
c487f144
...
@@ -39,6 +39,7 @@
...
@@ -39,6 +39,7 @@
#include <net/tcp.h>
#include <net/tcp.h>
#include <linux/compiler.h>
#include <linux/compiler.h>
#include <linux/module.h>
#include <linux/smp_lock.h>
#include <linux/smp_lock.h>
/* People can turn this off for buggy TCP's found in printers etc. */
/* People can turn this off for buggy TCP's found in printers etc. */
...
@@ -1542,3 +1543,14 @@ void tcp_send_probe0(struct sock *sk)
...
@@ -1542,3 +1543,14 @@ void tcp_send_probe0(struct sock *sk)
min
(
tp
->
rto
<<
tp
->
backoff
,
TCP_RESOURCE_PROBE_INTERVAL
));
min
(
tp
->
rto
<<
tp
->
backoff
,
TCP_RESOURCE_PROBE_INTERVAL
));
}
}
}
}
EXPORT_SYMBOL
(
tcp_acceptable_seq
);
EXPORT_SYMBOL
(
tcp_connect
);
EXPORT_SYMBOL
(
tcp_connect_init
);
EXPORT_SYMBOL
(
tcp_make_synack
);
EXPORT_SYMBOL
(
tcp_send_synack
);
EXPORT_SYMBOL
(
tcp_simple_retransmit
);
EXPORT_SYMBOL
(
tcp_sync_mss
);
EXPORT_SYMBOL
(
tcp_transmit_skb
);
EXPORT_SYMBOL
(
tcp_write_wakeup
);
EXPORT_SYMBOL
(
tcp_write_xmit
);
net/netsyms.c
View file @
c487f144
...
@@ -181,8 +181,6 @@ EXPORT_SYMBOL(ip_queue_xmit);
...
@@ -181,8 +181,6 @@ EXPORT_SYMBOL(ip_queue_xmit);
EXPORT_SYMBOL
(
memcpy_fromiovecend
);
EXPORT_SYMBOL
(
memcpy_fromiovecend
);
EXPORT_SYMBOL
(
csum_partial_copy_fromiovecend
);
EXPORT_SYMBOL
(
csum_partial_copy_fromiovecend
);
/* UDP/TCP exported functions for TCPv6 */
/* UDP/TCP exported functions for TCPv6 */
EXPORT_SYMBOL
(
tcp_write_wakeup
);
EXPORT_SYMBOL
(
tcp_send_synack
);
EXPORT_SYMBOL
(
tcp_check_req
);
EXPORT_SYMBOL
(
tcp_check_req
);
EXPORT_SYMBOL
(
tcp_child_process
);
EXPORT_SYMBOL
(
tcp_child_process
);
EXPORT_SYMBOL
(
tcp_parse_options
);
EXPORT_SYMBOL
(
tcp_parse_options
);
...
@@ -193,20 +191,14 @@ EXPORT_SYMBOL(tcp_statistics);
...
@@ -193,20 +191,14 @@ EXPORT_SYMBOL(tcp_statistics);
EXPORT_SYMBOL
(
tcp_rcv_state_process
);
EXPORT_SYMBOL
(
tcp_rcv_state_process
);
EXPORT_SYMBOL
(
tcp_timewait_state_process
);
EXPORT_SYMBOL
(
tcp_timewait_state_process
);
EXPORT_SYMBOL
(
tcp_create_openreq_child
);
EXPORT_SYMBOL
(
tcp_create_openreq_child
);
EXPORT_SYMBOL
(
tcp_simple_retransmit
);
EXPORT_SYMBOL
(
tcp_transmit_skb
);
EXPORT_SYMBOL
(
tcp_connect
);
EXPORT_SYMBOL
(
tcp_make_synack
);
EXPORT_SYMBOL
(
tcp_tw_deschedule
);
EXPORT_SYMBOL
(
tcp_tw_deschedule
);
EXPORT_SYMBOL
(
tcp_delete_keepalive_timer
);
EXPORT_SYMBOL
(
tcp_delete_keepalive_timer
);
EXPORT_SYMBOL
(
tcp_reset_keepalive_timer
);
EXPORT_SYMBOL
(
tcp_reset_keepalive_timer
);
EXPORT_SYMBOL
(
tcp_sync_mss
);
EXPORT_SYMBOL
(
net_statistics
);
EXPORT_SYMBOL
(
net_statistics
);
EXPORT_SYMBOL
(
sysctl_tcp_reordering
);
EXPORT_SYMBOL
(
sysctl_tcp_reordering
);
EXPORT_SYMBOL
(
sysctl_tcp_ecn
);
EXPORT_SYMBOL
(
sysctl_tcp_ecn
);
EXPORT_SYMBOL
(
tcp_cwnd_application_limited
);
EXPORT_SYMBOL
(
tcp_cwnd_application_limited
);
EXPORT_SYMBOL
(
tcp_write_xmit
);
extern
int
sysctl_tcp_tw_recycle
;
extern
int
sysctl_tcp_tw_recycle
;
...
...
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