netns: add dummy struct inside "struct net_generic"

This is precursor to fixing "[id - 1]" bloat inside net_generic().

Name "s" is chosen to complement name "u" often used for dummy unions.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Alexey Dobriyan
2016-12-02 04:12:58 +03:00
committed by David S. Miller
parent 1a9a059203
commit 9bfc7b9969
2 changed files with 8 additions and 6 deletions

View File

@@ -25,8 +25,10 @@
*/
struct net_generic {
unsigned int len;
struct rcu_head rcu;
struct {
unsigned int len;
struct rcu_head rcu;
} s;
void *ptr[0];
};