netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] add netdev_alloc_skb
@ 2006-07-26 11:31 Christoph Hellwig
  2006-07-26 22:24 ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2006-07-26 11:31 UTC (permalink / raw)
  To: davem; +Cc: netdev

Add a dev_alloc_skb variant that takes a struct net_device * paramater.
For now that paramater is unused, but I'll use it to allocate the skb
from node-local memory in a follow-up patch.  Also there have been some
other plans mentioned on the list that can use it.


Signed-off-by: Christoph Hellwig <hch@lst.de>

Index: linux-2.6/include/linux/skbuff.h
===================================================================
--- linux-2.6.orig/include/linux/skbuff.h	2006-07-26 10:58:43.000000000 +0200
+++ linux-2.6/include/linux/skbuff.h	2006-07-26 11:10:23.000000000 +0200
@@ -1104,6 +1104,28 @@
 	return __dev_alloc_skb(length, GFP_ATOMIC);
 }
 
+extern struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
+		unsigned int length, gfp_t gfp_mask);
+
+/**
+ *	netdev_alloc_skb - allocate an skbuff for rx on a specific device
+ *	@dev: network device to receive on
+ *	@length: length to allocate
+ *
+ *	Allocate a new &sk_buff and assign it a usage count of one. The
+ *	buffer has unspecified headroom built in. Users should allocate
+ *	the headroom they think they need without accounting for the
+ *	built in space. The built in space is used for optimisations.
+ *
+ *	%NULL is returned in there is no free memory. Although this function
+ *	allocates memory it can be called from an interrupt.
+ */
+static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
+		unsigned int length)
+{
+	return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
+}
+
 /**
  *	skb_cow - copy header of skb when it is required
  *	@skb: buffer to cow
Index: linux-2.6/net/core/skbuff.c
===================================================================
--- linux-2.6.orig/net/core/skbuff.c	2006-07-26 10:58:43.000000000 +0200
+++ linux-2.6/net/core/skbuff.c	2006-07-26 11:10:40.000000000 +0200
@@ -256,6 +256,29 @@
 	goto out;
 }
 
+/**
+ *	__netdev_alloc_skb - allocate an skbuff for rx on a specific device
+ *	@dev: network device to receive on
+ *	@length: length to allocate
+ *	@gfp_mask: get_free_pages mask, passed to alloc_skb
+ *
+ *	Allocate a new &sk_buff and assign it a usage count of one. The
+ *	buffer has unspecified headroom built in. Users should allocate
+ *	the headroom they think they need without accounting for the
+ *	built in space. The built in space is used for optimisations.
+ *
+ *	%NULL is returned in there is no free memory.
+ */
+struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
+		unsigned int length, gfp_t gfp_mask)
+{
+	struct sk_buff *skb;
+
+	skb = alloc_skb(length + NET_SKB_PAD, gfp_mask);
+	if (likely(skb))
+		skb_reserve(skb, NET_SKB_PAD);
+	return skb;
+}
 
 static void skb_drop_list(struct sk_buff **listp)
 {
@@ -2042,6 +2065,7 @@
 EXPORT_SYMBOL(kfree_skb);
 EXPORT_SYMBOL(__pskb_pull_tail);
 EXPORT_SYMBOL(__alloc_skb);
+EXPORT_SYMBOL(__netdev_alloc_skb);
 EXPORT_SYMBOL(pskb_copy);
 EXPORT_SYMBOL(pskb_expand_head);
 EXPORT_SYMBOL(skb_checksum);

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-26 11:31 [PATCH 1/3] add netdev_alloc_skb Christoph Hellwig
@ 2006-07-26 22:24 ` David Miller
  2006-07-28  7:08   ` Christoph Hellwig
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2006-07-26 22:24 UTC (permalink / raw)
  To: hch; +Cc: netdev

From: Christoph Hellwig <hch@lst.de>
Date: Wed, 26 Jul 2006 13:31:36 +0200

> + *	%NULL is returned in there is no free memory. Although this function
> + *	allocates memory it can be called from an interrupt.
 ...
> + *	%NULL is returned in there is no free memory.

Looks like a typo in both cases, I think you mean
"NULL is returned _if_ there" not "in there"

I think I can queue this up for 2.6.19 if you fix
this typo, but I'm not going to slap the deprecated
marker on dev_alloc_skb() until all of the in-tree
cases are being taken care of.  It will just be a
bunch of pointless noise, and at worse it will push
the remaining conversions on some poor soul such as
Andrew :)

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-26 22:24 ` David Miller
@ 2006-07-28  7:08   ` Christoph Hellwig
  2006-07-28  8:24     ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2006-07-28  7:08 UTC (permalink / raw)
  To: David Miller; +Cc: hch, netdev

On Wed, Jul 26, 2006 at 03:24:51PM -0700, David Miller wrote:
> From: Christoph Hellwig <hch@lst.de>
> Date: Wed, 26 Jul 2006 13:31:36 +0200
> 
> > + *	%NULL is returned in there is no free memory. Although this function
> > + *	allocates memory it can be called from an interrupt.
>  ...
> > + *	%NULL is returned in there is no free memory.
> 
> Looks like a typo in both cases, I think you mean
> "NULL is returned _if_ there" not "in there"

Yes, Joe Perches already pointed that out in private.  This typo is copy
and pasted from the dev_alloc_skb kerneldoc, so this patch fixes up all
four occurances:


Signed-off-by: Christoph Hellwig <hch@lst.de>

Index: linux-2.6/include/linux/skbuff.h
===================================================================
--- linux-2.6.orig/include/linux/skbuff.h	2006-07-28 09:06:55.000000000 +0200
+++ linux-2.6/include/linux/skbuff.h	2006-07-28 09:07:35.000000000 +0200
@@ -1076,7 +1076,7 @@
  *	the headroom they think they need without accounting for the
  *	built in space. The built in space is used for optimisations.
  *
- *	%NULL is returned in there is no free memory.
+ *	%NULL is returned if there is no free memory.
  */
 static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
 					      gfp_t gfp_mask)
@@ -1096,7 +1096,7 @@
  *	the headroom they think they need without accounting for the
  *	built in space. The built in space is used for optimisations.
  *
- *	%NULL is returned in there is no free memory. Although this function
+ *	%NULL is returned if there is no free memory. Although this function
  *	allocates memory it can be called from an interrupt.
  */
 static inline struct sk_buff *dev_alloc_skb(unsigned int length)
@@ -1117,7 +1117,7 @@
  *	the headroom they think they need without accounting for the
  *	built in space. The built in space is used for optimisations.
  *
- *	%NULL is returned in there is no free memory. Although this function
+ *	%NULL is returned if there is no free memory. Although this function
  *	allocates memory it can be called from an interrupt.
  */
 static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
Index: linux-2.6/net/core/skbuff.c
===================================================================
--- linux-2.6.orig/net/core/skbuff.c	2006-07-28 09:06:51.000000000 +0200
+++ linux-2.6/net/core/skbuff.c	2006-07-28 09:07:26.000000000 +0200
@@ -267,7 +267,7 @@
  *	the headroom they think they need without accounting for the
  *	built in space. The built in space is used for optimisations.
  *
- *	%NULL is returned in there is no free memory.
+ *	%NULL is returned if there is no free memory.
  */
 struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
 		unsigned int length, gfp_t gfp_mask)

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-28  7:08   ` Christoph Hellwig
@ 2006-07-28  8:24     ` David Miller
  2006-07-28  8:27       ` Christoph Hellwig
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2006-07-28  8:24 UTC (permalink / raw)
  To: hch; +Cc: netdev

From: Christoph Hellwig <hch@lst.de>
Date: Fri, 28 Jul 2006 09:08:51 +0200

> Yes, Joe Perches already pointed that out in private.  This typo is copy
> and pasted from the dev_alloc_skb kerneldoc, so this patch fixes up all
> four occurances:
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Please respin your original patch with this fixup, thanks
a lot Christoph.

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-28  8:24     ` David Miller
@ 2006-07-28  8:27       ` Christoph Hellwig
  2006-07-28  8:28         ` David Miller
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2006-07-28  8:27 UTC (permalink / raw)
  To: David Miller; +Cc: hch, netdev

On Fri, Jul 28, 2006 at 01:24:24AM -0700, David Miller wrote:
> From: Christoph Hellwig <hch@lst.de>
> Date: Fri, 28 Jul 2006 09:08:51 +0200
> 
> > Yes, Joe Perches already pointed that out in private.  This typo is copy
> > and pasted from the dev_alloc_skb kerneldoc, so this patch fixes up all
> > four occurances:
> > 
> > Signed-off-by: Christoph Hellwig <hch@lst.de>
> 
> Please respin your original patch with this fixup, thanks
> a lot Christoph.

We need a fixup patch for the existing wrong comments on dev_alloc_skb
anyway - but if you prefer to respin the netdev_alloc_skb and have
another patch to fixup the original comments I can do that aswell.

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-28  8:27       ` Christoph Hellwig
@ 2006-07-28  8:28         ` David Miller
  2006-07-28  8:46           ` Christoph Hellwig
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2006-07-28  8:28 UTC (permalink / raw)
  To: hch; +Cc: netdev

From: Christoph Hellwig <hch@lst.de>
Date: Fri, 28 Jul 2006 10:27:12 +0200

> We need a fixup patch for the existing wrong comments on dev_alloc_skb
> anyway - but if you prefer to respin the netdev_alloc_skb and have
> another patch to fixup the original comments I can do that aswell.

I intend to, for everyone's convenience, put the addition of
netdev_alloc_skb() into 2.6.18.

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

* Re: [PATCH 1/3] add netdev_alloc_skb
  2006-07-28  8:28         ` David Miller
@ 2006-07-28  8:46           ` Christoph Hellwig
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Hellwig @ 2006-07-28  8:46 UTC (permalink / raw)
  To: David Miller; +Cc: hch, netdev

On Fri, Jul 28, 2006 at 01:28:32AM -0700, David Miller wrote:
> From: Christoph Hellwig <hch@lst.de>
> Date: Fri, 28 Jul 2006 10:27:12 +0200
> 
> > We need a fixup patch for the existing wrong comments on dev_alloc_skb
> > anyway - but if you prefer to respin the netdev_alloc_skb and have
> > another patch to fixup the original comments I can do that aswell.
> 
> I intend to, for everyone's convenience, put the addition of
> netdev_alloc_skb() into 2.6.18.

Here is the requested fixed up version:


Index: linux-2.6/include/linux/skbuff.h
===================================================================
--- linux-2.6.orig/include/linux/skbuff.h	2006-07-26 13:27:07.000000000 +0200
+++ linux-2.6/include/linux/skbuff.h	2006-07-28 10:41:00.000000000 +0200
@@ -1104,6 +1104,28 @@
 	return __dev_alloc_skb(length, GFP_ATOMIC);
 }
 
+extern struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
+		unsigned int length, gfp_t gfp_mask);
+
+/**
+ *	netdev_alloc_skb - allocate an skbuff for rx on a specific device
+ *	@dev: network device to receive on
+ *	@length: length to allocate
+ *
+ *	Allocate a new &sk_buff and assign it a usage count of one. The
+ *	buffer has unspecified headroom built in. Users should allocate
+ *	the headroom they think they need without accounting for the
+ *	built in space. The built in space is used for optimisations.
+ *
+ *	%NULL is returned if there is no free memory. Although this function
+ *	allocates memory it can be called from an interrupt.
+ */
+static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
+		unsigned int length)
+{
+	return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
+}
+
 /**
  *	skb_cow - copy header of skb when it is required
  *	@skb: buffer to cow
Index: linux-2.6/net/core/skbuff.c
===================================================================
--- linux-2.6.orig/net/core/skbuff.c	2006-07-26 13:27:07.000000000 +0200
+++ linux-2.6/net/core/skbuff.c	2006-07-28 10:41:09.000000000 +0200
@@ -256,6 +256,29 @@
 	goto out;
 }
 
+/**
+ *	__netdev_alloc_skb - allocate an skbuff for rx on a specific device
+ *	@dev: network device to receive on
+ *	@length: length to allocate
+ *	@gfp_mask: get_free_pages mask, passed to alloc_skb
+ *
+ *	Allocate a new &sk_buff and assign it a usage count of one. The
+ *	buffer has unspecified headroom built in. Users should allocate
+ *	the headroom they think they need without accounting for the
+ *	built in space. The built in space is used for optimisations.
+ *
+ *	%NULL is returned if there is no free memory.
+ */
+struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
+		unsigned int length, gfp_t gfp_mask)
+{
+	struct sk_buff *skb;
+
+	skb = alloc_skb(length + NET_SKB_PAD, gfp_mask);
+	if (likely(skb))
+		skb_reserve(skb, NET_SKB_PAD);
+	return skb;
+}
 
 static void skb_drop_list(struct sk_buff **listp)
 {
@@ -2042,6 +2065,7 @@
 EXPORT_SYMBOL(kfree_skb);
 EXPORT_SYMBOL(__pskb_pull_tail);
 EXPORT_SYMBOL(__alloc_skb);
+EXPORT_SYMBOL(__netdev_alloc_skb);
 EXPORT_SYMBOL(pskb_copy);
 EXPORT_SYMBOL(pskb_expand_head);
 EXPORT_SYMBOL(skb_checksum);

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

end of thread, other threads:[~2006-07-28  8:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-26 11:31 [PATCH 1/3] add netdev_alloc_skb Christoph Hellwig
2006-07-26 22:24 ` David Miller
2006-07-28  7:08   ` Christoph Hellwig
2006-07-28  8:24     ` David Miller
2006-07-28  8:27       ` Christoph Hellwig
2006-07-28  8:28         ` David Miller
2006-07-28  8:46           ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).