[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B199518.7090300@gmail.com>
Date: Sat, 05 Dec 2009 00:02:48 +0100
From: Emese Revfy <re.emese@...il.com>
To: davem@...emloft.net, torvalds@...ux-foundation.org,
linux-kernel@...r.kernel.org, netdev@...r.kernel.org
Subject: Re: [PATCH 22/31] Constify struct neigh_ops for 2.6.32 v1
Added netdev@...r.kernel.org to CC.
> From: Emese Revfy <re.emese@...il.com>
>
> Constify struct neigh_ops.
>
> Signed-off-by: Emese Revfy <re.emese@...il.com>
> ---
> 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 3817fda..2c61d38 100644
> --- a/include/net/neighbour.h
> +++ b/include/net/neighbour.h
> @@ -125,12 +125,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
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists