public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* Concerns regarding PFMEMALLOC handling in __netdev_alloc_skb
@ 2014-08-28 20:23 Shmulik Ladkani
  2014-08-28 21:34 ` Eric Dumazet
  0 siblings, 1 reply; 2+ messages in thread
From: Shmulik Ladkani @ 2014-08-28 20:23 UTC (permalink / raw)
  To: Mel Gorman; +Cc: Neil Brown, Eric Dumazet, David S. Miller, netdev

Hi,

>From c93bdd0e03 "netvm: allow skb allocation to use PFMEMALLOC reserves":

@@ -366,7 +417,12 @@ struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
 			      SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
 
 	if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
-		void *data = netdev_alloc_frag(fragsz);
+		void *data;
+
+		if (sk_memalloc_socks())
+			gfp_mask |= __GFP_MEMALLOC;
+
+		data = __netdev_alloc_frag(fragsz, gfp_mask);
 
		if (likely(data)) {
			skb = build_skb(data, fragsz);
			if (unlikely(!skb))
				put_page(virt_to_head_page(data));
		}
 	} else {
-		skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
+		skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
+				  SKB_ALLOC_RX, NUMA_NO_NODE);
 	}

In the 'else' part, SKB_ALLOC_RX is provided to '__alloc_skb()'.
Thus '__alloc_skb()' may attempt using the PFMEMALLOC reserve in case
'sk_memalloc_socks()' is true - and 'skb->pfmemalloc' will be set
accordingly. Good.

However, in the 'if' part, in case 'sk_memalloc_socks()' is true,
__GFP_MEMALLOC is passed to '__netdev_alloc_frag()'.

There are two possible issues here:

1. '__netdev_alloc_frag()' might not honour __GFP_MEMALLOC in case the
   frag fits into current netdev_alloc_cache.frag

2. Even if 'nc->frag.page' gets allocated/refilled, and __GFP_MEMALLOC
   is passed to 'alloc_pages()' - in case the new page is from the
   PFMEMALLOC reserve, that notion is not propagated to back to
   skb->pfmemalloc.

Are these of any concern?

Regards,
Shmulik

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

end of thread, other threads:[~2014-08-28 21:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-28 20:23 Concerns regarding PFMEMALLOC handling in __netdev_alloc_skb Shmulik Ladkani
2014-08-28 21:34 ` Eric Dumazet

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