[PATCH] minor change to netsyms.c

David Chamness (chamness@PolyServe.com)
Wed, 11 Jul 2001 11:01:54 -0700


This is a multi-part message in MIME format.
--------------050800000100060308050309
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

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.

--------------050800000100060308050309
Content-Type: text/plain;
name="patch-netsyms.c"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="patch-netsyms.c"

--- 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);

--------------050800000100060308050309--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/