mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: git-net-fixup.patch added to -mm tree
       [not found] <200508010504.j7154m5B022440@shell0.pdx.osdl.net>
@ 2005-08-01  5:12 ` David S. Miller
  2005-08-01  5:21   ` Andrew Morton
  2005-08-01  6:33   ` Harald Welte
  0 siblings, 2 replies; 5+ messages in thread
From: David S. Miller @ 2005-08-01  5:12 UTC (permalink / raw)
  To: linux-kernel, akpm; +Cc: laforge

From: akpm@osdl.org
Date: Sun, 31 Jul 2005 22:03:47 -0700

> From: Andrew Morton <akpm@osdl.org>
> 
> Signed-off-by: Andrew Morton <akpm@osdl.org>
 ...
>  /* decrement reference count on a conntrack */
> -extern void ip_conntrack_put(struct ip_conntrack *ct);
> +static inline void
> +ip_conntrack_put(struct ip_conntrack *ct)
> +{
> +	IP_NF_ASSERT(ct);
> +	nf_conntrack_put(&ct->ct_general);
> +}

You can instead just kill the EXPORT_SYMBOL_GPL() in
ip_conntrack_standalone.c as that's the only reference outside of
ip_conntrack_core.c

Harald?


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git-net-fixup.patch added to -mm tree
  2005-08-01  5:12 ` git-net-fixup.patch added to -mm tree David S. Miller
@ 2005-08-01  5:21   ` Andrew Morton
  2005-08-01  5:25     ` David S. Miller
  2005-08-01  6:33   ` Harald Welte
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2005-08-01  5:21 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, laforge

"David S. Miller" <davem@davemloft.net> wrote:
>
> From: akpm@osdl.org
> Date: Sun, 31 Jul 2005 22:03:47 -0700
> 
> > From: Andrew Morton <akpm@osdl.org>
> > 
> > Signed-off-by: Andrew Morton <akpm@osdl.org>
>  ...
> >  /* decrement reference count on a conntrack */
> > -extern void ip_conntrack_put(struct ip_conntrack *ct);
> > +static inline void
> > +ip_conntrack_put(struct ip_conntrack *ct)
> > +{
> > +	IP_NF_ASSERT(ct);
> > +	nf_conntrack_put(&ct->ct_general);
> > +}
> 
> You can instead just kill the EXPORT_SYMBOL_GPL() in
> ip_conntrack_standalone.c as that's the only reference outside of
> ip_conntrack_core.c
> 
> Harald?

Actually, that patch is just a fixup for a patch reject from the net-2.6.14
diff.  I do that sometimes when I get sick of fixing up the same reject
each time I pull the various trees.

(I'm not sure _why_ I'm getting a reject applying that diff.  Nothing else
touches that file.  git is not quite yet generating the linus->davem diff
which I want..)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git-net-fixup.patch added to -mm tree
  2005-08-01  5:21   ` Andrew Morton
@ 2005-08-01  5:25     ` David S. Miller
  2005-08-01  6:00       ` David S. Miller
  0 siblings, 1 reply; 5+ messages in thread
From: David S. Miller @ 2005-08-01  5:25 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, laforge

From: Andrew Morton <akpm@osdl.org>
Date: Sun, 31 Jul 2005 22:21:25 -0700

> Actually, that patch is just a fixup for a patch reject from the net-2.6.14
> diff.  I do that sometimes when I get sick of fixing up the same reject
> each time I pull the various trees.
> 
> (I'm not sure _why_ I'm getting a reject applying that diff.  Nothing else
> touches that file.  git is not quite yet generating the linus->davem diff
> which I want..)

There is a tiny bit of conflicts between linux-2.6 and net-2.6.14,
because of some bug fixes that went into Linus's tree over the
past week.

I'll try to rebuild the net-2.6.14 tree if I get a chance before
heading off to the UK tomorrow.  That should help things out for
you.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git-net-fixup.patch added to -mm tree
  2005-08-01  5:25     ` David S. Miller
@ 2005-08-01  6:00       ` David S. Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David S. Miller @ 2005-08-01  6:00 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, laforge

From: "David S. Miller" <davem@davemloft.net>
Date: Sun, 31 Jul 2005 22:25:04 -0700 (PDT)

> I'll try to rebuild the net-2.6.14 tree if I get a chance before
> heading off to the UK tomorrow.  That should help things out for
> you.

Ok, I just finished doing this, it should take a while
for it to show up on the mirrors.  The HEAD commit is
d5b351906c1aee0f906f559a46031aabfa1a8c31

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: git-net-fixup.patch added to -mm tree
  2005-08-01  5:12 ` git-net-fixup.patch added to -mm tree David S. Miller
  2005-08-01  5:21   ` Andrew Morton
@ 2005-08-01  6:33   ` Harald Welte
  1 sibling, 0 replies; 5+ messages in thread
From: Harald Welte @ 2005-08-01  6:33 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-kernel, akpm

[-- Attachment #1: Type: text/plain, Size: 1268 bytes --]

On Sun, Jul 31, 2005 at 10:12:46PM -0700, David S. Miller wrote:
> From: akpm@osdl.org
> Date: Sun, 31 Jul 2005 22:03:47 -0700
> 
> > From: Andrew Morton <akpm@osdl.org>
> > 
> > Signed-off-by: Andrew Morton <akpm@osdl.org>
>  ...
> >  /* decrement reference count on a conntrack */
> > -extern void ip_conntrack_put(struct ip_conntrack *ct);
> > +static inline void
> > +ip_conntrack_put(struct ip_conntrack *ct)
> > +{
> > +	IP_NF_ASSERT(ct);
> > +	nf_conntrack_put(&ct->ct_general);
> > +}
> 
> You can instead just kill the EXPORT_SYMBOL_GPL() in
> ip_conntrack_standalone.c as that's the only reference outside of
> ip_conntrack_core.c

for 2.6.13 this should work.  net-2.6.14 contains
ip_conntrack_netlink.c, which needs ip_conntrakc_put (and therefore the
EXPORT_SYMBOL_GPL().  

We also have other code out-of-tree (e.g. ct_sync) that need the symbo.
I know this is no rectification, but I'm merely mentioning it JFYI.

-- 
- Harald Welte <laforge@gnumonks.org>          	        http://gnumonks.org/
============================================================================
"Privacy in residential applications is a desirable marketing option."
                                                  (ETSI EN 300 175-7 Ch. A6)

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-08-01  6:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200508010504.j7154m5B022440@shell0.pdx.osdl.net>
2005-08-01  5:12 ` git-net-fixup.patch added to -mm tree David S. Miller
2005-08-01  5:21   ` Andrew Morton
2005-08-01  5:25     ` David S. Miller
2005-08-01  6:00       ` David S. Miller
2005-08-01  6:33   ` Harald Welte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®