On 17.01.2011 10:45, Jiri Olsa wrote: > hi, > thanks for comments, attaching new patch > --- a/net/netfilter/Makefile > +++ b/net/netfilter/Makefile > @@ -28,7 +28,8 @@ obj-$(CONFIG_NF_CONNTRACK_AMANDA) += nf_conntrack_amanda.o > obj-$(CONFIG_NF_CONNTRACK_FTP) += nf_conntrack_ftp.o > obj-$(CONFIG_NF_CONNTRACK_H323) += nf_conntrack_h323.o > obj-$(CONFIG_NF_CONNTRACK_IRC) += nf_conntrack_irc.o > -obj-$(CONFIG_NF_CONNTRACK_NETBIOS_NS) += nf_conntrack_netbios_ns.o > +obj-$(CONFIG_NF_CONNTRACK_NETBIOS_NS) += nf_conntrack_netbios_ns.o nf_conntrack_broadcast.o > +obj-$(CONFIG_NF_CONNTRACK_SNMP) += nf_conntrack_snmp.o nf_conntrack_broadcast.o Just add an EXPORT_SYMBOL_GPL'ed function and a new Kconfig symbol for the nf_conntrack_broadcast.o file that is selected by NETBIOS_NS and SNMP. > obj-$(CONFIG_NF_CONNTRACK_PPTP) += nf_conntrack_pptp.o > obj-$(CONFIG_NF_CONNTRACK_SANE) += nf_conntrack_sane.o > obj-$(CONFIG_NF_CONNTRACK_SIP) += nf_conntrack_sip.o > diff --git a/net/netfilter/nf_conntrack_broadcast.c b/net/netfilter/nf_conntrack_broadcast.c > new file mode 100644 > index 0000000..fb48be1 > --- /dev/null > +++ b/net/netfilter/nf_conntrack_broadcast.c > @@ -0,0 +1,79 @@ > +/* > + * broadcast connection tracking helper > + * > + * (c) 2011 Jiri Olsa <jolsa@xxxxxxxxxx> I'd also prefer if you keep my copyright statement from the netbios ns file. > + * > + * This program is free software; you can redistribute it and/or > + * modify it under the terms of the GNU General Public License > + * as published by the Free Software Foundation; either version > + * 2 of the License, or (at your option) any later version. > + */ -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html