* [PATCH] minor change to netsyms.c
@ 2001-07-11 18:01 David Chamness
2001-07-11 23:18 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: David Chamness @ 2001-07-11 18:01 UTC (permalink / raw)
To: linux-kernel; +Cc: alan, torvalds
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
Currently, inet_stream_ops only gets exported if experimental code (IPV6
module or KHTTPD) is configured. This patch makes the exporting of
inet_stream_ops the same as inet_dgram_ops, whenever CONFIG_INET is
defined. I have written a module that needs both these symbols
exported, and it would be much cleaner if they both were exported in a
consistent manner.
Thanks,
David Chamness
PolyServe, Inc.
[-- Attachment #2: patch-netsyms.c --]
[-- Type: text/plain, Size: 654 bytes --]
--- v2.4.6/linux/net/netsyms.c Mon Jul 9 11:18:56 2001
+++ linux/net/netsyms.c Mon Jul 9 11:17:05 2001
@@ -251,6 +251,7 @@
EXPORT_SYMBOL(ip_mc_inc_group);
EXPORT_SYMBOL(ip_mc_dec_group);
EXPORT_SYMBOL(ip_finish_output);
+EXPORT_SYMBOL(inet_stream_ops);
EXPORT_SYMBOL(inet_dgram_ops);
EXPORT_SYMBOL(ip_cmsg_recv);
EXPORT_SYMBOL(inet_addr_type);
@@ -281,7 +282,6 @@
#endif
#if defined (CONFIG_IPV6_MODULE) || defined (CONFIG_KHTTPD) || defined (CONFIG_KHTTPD_MODULE)
/* inet functions common to v4 and v6 */
-EXPORT_SYMBOL(inet_stream_ops);
EXPORT_SYMBOL(inet_release);
EXPORT_SYMBOL(inet_stream_connect);
EXPORT_SYMBOL(inet_dgram_connect);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-07-11 23:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-11 18:01 [PATCH] minor change to netsyms.c David Chamness
2001-07-11 23:18 ` David S. Miller
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.