Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755157AbZLMX6e (ORCPT ); Sun, 13 Dec 2009 18:58:34 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754958AbZLMX61 (ORCPT ); Sun, 13 Dec 2009 18:58:27 -0500 Received: from mx2.mail.elte.hu ([157.181.151.9]:34464 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754951AbZLMX6Z (ORCPT ); Sun, 13 Dec 2009 18:58:25 -0500 From: re.emese@gmail.com To: linux-kernel@vger.kernel.org Cc: Emese Revfy , netdev@vger.kernel.org, davem@davemloft.net, shemminger@vyatta.com Subject: [PATCH 1/1] Constify struct neigh_ops for 2.6.32-git-053fe57ac v2 Date: Mon, 14 Dec 2009 01:00:15 +0100 Message-Id: X-Mailer: git-send-email 1.6.5.3 In-Reply-To: References: X-ELTE-SpamScore: 0.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=0.0 required=5.9 tests=none autolearn=no SpamAssassin version=3.2.5 _SUMMARY_ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1314 Lines: 39 From: Emese Revfy Signed-off-by: Emese Revfy --- include/net/neighbour.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/net/neighbour.h b/include/net/neighbour.h index 0302f31..ac37ed6 100644 --- a/include/net/neighbour.h +++ b/include/net/neighbour.h @@ -121,12 +121,12 @@ struct neighbour { struct neigh_ops { int family; - void (*solicit)(struct neighbour *, struct sk_buff*); - void (*error_report)(struct neighbour *, struct sk_buff*); - int (*output)(struct sk_buff*); - int (*connected_output)(struct sk_buff*); - int (*hh_output)(struct sk_buff*); - int (*queue_xmit)(struct sk_buff*); + void (* const solicit)(struct neighbour *, struct sk_buff*); + void (* const error_report)(struct neighbour *, struct sk_buff*); + int (* const output)(struct sk_buff*); + int (* const connected_output)(struct sk_buff*); + int (* const hh_output)(struct sk_buff*); + int (* const queue_xmit)(struct sk_buff*); }; struct pneigh_entry { -- 1.6.5.3 -- 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/