From: Pablo Neira Ayuso Date: Wed, 17 Jun 2015 15:28:25 +0000 (-0500) Subject: net: include missing headers in net/net_namespace.h X-Git-Tag: v4.2-rc1~130^2~52^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=04c52dec1473c5dff9d07cd39a68c9b23def6c42;p=karo-tx-linux.git net: include missing headers in net/net_namespace.h Include linux/idr.h and linux/skbuff.h since they are required by objects that are declared in the net structure. struct net { ... struct idr netns_ids; ... struct sk_buff_head wext_nlevents; ... Signed-off-by: Pablo Neira Ayuso Signed-off-by: Eric W. Biederman --- diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index 72eb23723294..e951453e0a23 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h @@ -28,6 +28,8 @@ #include #include #include +#include +#include struct user_namespace; struct proc_dir_entry;