From patchwork Tue Jul 20 09:51:38 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Dichtel X-Patchwork-Id: 59295 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 27EE9B6F04 for ; Tue, 20 Jul 2010 19:51:47 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761098Ab0GTJvn (ORCPT ); Tue, 20 Jul 2010 05:51:43 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:58679 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758545Ab0GTJvm (ORCPT ); Tue, 20 Jul 2010 05:51:42 -0400 Received: by ewy23 with SMTP id 23so1567047ewy.19 for ; Tue, 20 Jul 2010 02:51:41 -0700 (PDT) Received: by 10.213.10.147 with SMTP id p19mr5879589ebp.66.1279619500891; Tue, 20 Jul 2010 02:51:40 -0700 (PDT) Received: from [192.168.1.1] (schneckos.n1c0.com [88.182.61.195]) by mx.google.com with ESMTPS id a48sm51235490eei.18.2010.07.20.02.51.39 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 20 Jul 2010 02:51:40 -0700 (PDT) Message-ID: <4C4571AA.5060107@6wind.com> Date: Tue, 20 Jul 2010 11:51:38 +0200 From: Nicolas Dichtel Reply-To: nicolas.dichtel@6wind.com Organization: 6WIND User-Agent: Thunderbird 2.0.0.24 (X11/20100317) MIME-Version: 1.0 To: netdev Subject: [PATCH] __dst_free(): put EXPORT_SYMBOLS after the fct Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi, this patch is just cosmetic: EXPORT_SYMBOLS(__dst_free) has been put after ___dst_free() function instead of __dst_free(). Regards, From f96851b4d7e6125d8c0e5f4da7b6fffffd21b642 Mon Sep 17 00:00:00 2001 From: Nicolas Dichtel Date: Tue, 20 Jul 2010 11:38:20 +0200 Subject: [PATCH] __dst_free(): put EXPORT_SYMBOLS after the fct Signed-off-by: Nicolas Dichtel --- net/core/dst.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/core/dst.c b/net/core/dst.c index 9920722..6c41b1f 100644 --- a/net/core/dst.c +++ b/net/core/dst.c @@ -197,7 +197,6 @@ static void ___dst_free(struct dst_entry *dst) dst->input = dst->output = dst_discard; dst->obsolete = 2; } -EXPORT_SYMBOL(__dst_free); void __dst_free(struct dst_entry *dst) { @@ -213,6 +212,7 @@ void __dst_free(struct dst_entry *dst) } spin_unlock_bh(&dst_garbage.lock); } +EXPORT_SYMBOL(__dst_free); struct dst_entry *dst_destroy(struct dst_entry * dst) { -- 1.5.4.5