Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758679Ab3EWRfl (ORCPT ); Thu, 23 May 2013 13:35:41 -0400 Received: from mta114.f1.k8.com.br ([187.73.32.186]:41635 "EHLO mta114.f1.k8.com.br" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758225Ab3EWRfk (ORCPT ); Thu, 23 May 2013 13:35:40 -0400 X-DKIM: OpenDKIM Filter v2.6.8 smtpz.f1.k8.com.br 4BA9A20101 Message-ID: <1369328974.3123.77.camel@Thor> Subject: [PATCH 1/1] net-next: export skb_splice_bits() From: Michel Machado To: netdev@vger.kernel.org Cc: "David S. Miller" , Eric Dumazet , Pravin B Shelar , linux-kernel@vger.kernel.org Date: Thu, 23 May 2013 13:09:34 -0400 Organization: Digirati Internet Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.6.2-0ubuntu0.1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 832 Lines: 26 skb_splice_bits() is already available in include/linux/skbuff.h, but without EXPORT_SYMBOL it can't be used by kernel modules. Signed-off-by: Michel Machado CC: "David S. Miller" CC: Eric Dumazet CC: Pravin B Shelar --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index af9185d..0976908 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1854,6 +1854,7 @@ done: return ret; } +EXPORT_SYMBOL(skb_splice_bits); /** * skb_store_bits - store bits from kernel buffer to skb -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/