All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/3] Cleanup direct calls into IP stack
@ 2005-08-24 17:17 Ralf Baechle DL5RB
  2005-08-24 18:39 ` David S. Miller
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Ralf Baechle DL5RB @ 2005-08-24 17:17 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, linux-hams

With ip_rcv nowhere outside the IP stack being used anymore it's
EXPORT_SYMBOL is not needed any longer either.

Signed-off-by: Ralf Baechle DL5RB <ralf@linux-mips.org>

 net/ipv4/ip_input.c |    1 -
 1 files changed, 1 deletion(-)

Index: linux-cvs/net/ipv4/ip_input.c
===================================================================
--- linux-cvs.orig/net/ipv4/ip_input.c
+++ linux-cvs/net/ipv4/ip_input.c
@@ -428,5 +428,4 @@ out:
         return NET_RX_DROP;
 }
 
-EXPORT_SYMBOL(ip_rcv);
 EXPORT_SYMBOL(ip_statistics);

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

* [PATCH 3/3] Cleanup direct calls into IP stack
@ 2005-08-24 17:17 Ralf Baechle DL5RB
  0 siblings, 0 replies; 6+ messages in thread
From: Ralf Baechle DL5RB @ 2005-08-24 17:17 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, linux-hams

With ip_rcv nowhere outside the IP stack being used anymore it's
EXPORT_SYMBOL is not needed any longer either.

Signed-off-by: Ralf Baechle DL5RB <ralf@linux-mips.org>

 net/ipv4/ip_input.c |    1 -
 1 files changed, 1 deletion(-)

Index: linux-cvs/net/ipv4/ip_input.c
===================================================================
--- linux-cvs.orig/net/ipv4/ip_input.c
+++ linux-cvs/net/ipv4/ip_input.c
@@ -428,5 +428,4 @@ out:
         return NET_RX_DROP;
 }
 
-EXPORT_SYMBOL(ip_rcv);
 EXPORT_SYMBOL(ip_statistics);

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

* Re: [PATCH 3/3] Cleanup direct calls into IP stack
  2005-08-24 17:17 [PATCH 3/3] Cleanup direct calls into IP stack Ralf Baechle DL5RB
@ 2005-08-24 18:39 ` David S. Miller
  2005-08-24 18:39 ` David S. Miller
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: David S. Miller @ 2005-08-24 18:39 UTC (permalink / raw)
  To: ralf; +Cc: netdev, linux-hams


All 3 patches queued up for 2.6.14, thanks a lot Ralf.

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

* Re: [PATCH 3/3] Cleanup direct calls into IP stack
  2005-08-24 17:17 [PATCH 3/3] Cleanup direct calls into IP stack Ralf Baechle DL5RB
  2005-08-24 18:39 ` David S. Miller
@ 2005-08-24 18:39 ` David S. Miller
  2005-08-28 15:12 ` Jacques Chion
  2005-08-28 15:12 ` Jacques Chion
  3 siblings, 0 replies; 6+ messages in thread
From: David S. Miller @ 2005-08-24 18:39 UTC (permalink / raw)
  To: ralf; +Cc: netdev, linux-hams


All 3 patches queued up for 2.6.14, thanks a lot Ralf.

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

* Re: [PATCH 3/3] Cleanup direct calls into IP stack
  2005-08-24 17:17 [PATCH 3/3] Cleanup direct calls into IP stack Ralf Baechle DL5RB
                   ` (2 preceding siblings ...)
  2005-08-28 15:12 ` Jacques Chion
@ 2005-08-28 15:12 ` Jacques Chion
  3 siblings, 0 replies; 6+ messages in thread
From: Jacques Chion @ 2005-08-28 15:12 UTC (permalink / raw)
  To: Ralf Baechle DL5RB; +Cc: David S. Miller, netdev, linux-hams

I applied all these patches to the kernel 2.6.13-rc7
and i recompile ax25-tools.
All is running fine.
Best 73's

-- 
F6CWO
Quelques HOWTO en français: http://perso.wanadoo.fr/jacques.chion/



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

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

* Re: [PATCH 3/3] Cleanup direct calls into IP stack
  2005-08-24 17:17 [PATCH 3/3] Cleanup direct calls into IP stack Ralf Baechle DL5RB
  2005-08-24 18:39 ` David S. Miller
  2005-08-24 18:39 ` David S. Miller
@ 2005-08-28 15:12 ` Jacques Chion
  2005-08-28 15:12 ` Jacques Chion
  3 siblings, 0 replies; 6+ messages in thread
From: Jacques Chion @ 2005-08-28 15:12 UTC (permalink / raw)
  To: Ralf Baechle DL5RB; +Cc: David S. Miller, netdev, linux-hams

I applied all these patches to the kernel 2.6.13-rc7
and i recompile ax25-tools.
All is running fine.
Best 73's

-- 
F6CWO
Quelques HOWTO en français: http://perso.wanadoo.fr/jacques.chion/

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

end of thread, other threads:[~2005-08-28 15:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-24 17:17 [PATCH 3/3] Cleanup direct calls into IP stack Ralf Baechle DL5RB
2005-08-24 18:39 ` David S. Miller
2005-08-24 18:39 ` David S. Miller
2005-08-28 15:12 ` Jacques Chion
2005-08-28 15:12 ` Jacques Chion
  -- strict thread matches above, loose matches on Subject: below --
2005-08-24 17:17 Ralf Baechle DL5RB

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.