lwt: Remove unused len field

The field is initialized by ILA and MPLS but never used. Remove it.

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
このコミットが含まれているのは:
Thomas Graf
2016-10-21 16:10:22 +02:00
committed by David S. Miller
コミット f76a9db351
3個のファイルの変更3行の追加9行の削除

ファイルの表示

@@ -24,11 +24,10 @@ enum {
struct lwtunnel_state {
__u16 type;
__u16 flags;
__u16 headroom;
atomic_t refcnt;
int (*orig_output)(struct net *net, struct sock *sk, struct sk_buff *skb);
int (*orig_input)(struct sk_buff *);
int len;
__u16 headroom;
struct rcu_head rcu;
__u8 data[0];
};