Commit 6fd8bb881509c6bdc3469b3ed16ec25a3b7cad0e

Authored by Masahide NAKAMURA
Committed by David S. Miller
1 parent 6a2b9ce0a3

[IP] TUNNEL: Fix to be built with user application.

include/linux/if_tunnel.h is broken for user application
because it was changed to use __be32 which is required
to include linux/types.h in advance but didn't.

(This issue is found when building MIPL2 daemon. We are not sure this
is the last header to be fixed about __be32.)

Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org>
Signed-off-by: TAKAMIYA Noriaki <takamiya@po.ntts.co.jp>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

include/linux/if_tunnel.h
1 1 #ifndef _IF_TUNNEL_H_
2 2 #define _IF_TUNNEL_H_
3 3  
  4 +#include <linux/types.h>
  5 +
4 6 #define SIOCGETTUNNEL (SIOCDEVPRIVATE + 0)
5 7 #define SIOCADDTUNNEL (SIOCDEVPRIVATE + 1)
6 8 #define SIOCDELTUNNEL (SIOCDEVPRIVATE + 2)