Since driver handles page allocation failure, no need for extra warnings. Note: it only allocates single pages so if the system is so tight it can't one page it is probably hosed anyway. Signed-off-by: Stephen Hemminger --- Please apply to 2.6.26 --- a/drivers/net/sky2.c 2008-05-14 16:29:39.000000000 -0700 +++ b/drivers/net/sky2.c 2008-05-14 16:29:44.000000000 -0700 @@ -1223,7 +1223,7 @@ static struct sk_buff *sky2_rx_alloc(str } for (i = 0; i < sky2->rx_nfrags; i++) { - struct page *page = alloc_page(GFP_ATOMIC); + struct page *page = alloc_page(GFP_ATOMIC | __GFP_NOWARN); if (!page) goto free_partial; -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html