Skip to content

Commit

Permalink
netns: add dummy struct inside "struct net_generic"
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Alexey Dobriyan authored and davem330 committed Dec 3, 2016
1 parent 1a9a059 commit 9bfc7b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions include/net/netns/generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
};
Expand Down
8 changes: 4 additions & 4 deletions net/core/net_namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static struct net_generic *net_alloc_generic(void)

ng = kzalloc(generic_size, GFP_KERNEL);
if (ng)
ng->len = max_gen_ptrs;
ng->s.len = max_gen_ptrs;

return ng;
}
Expand All @@ -64,7 +64,7 @@ static int net_assign_generic(struct net *net, unsigned int id, void *data)

old_ng = rcu_dereference_protected(net->gen,
lockdep_is_held(&net_mutex));
if (old_ng->len >= id) {
if (old_ng->s.len >= id) {
old_ng->ptr[id - 1] = data;
return 0;
}
Expand All @@ -84,11 +84,11 @@ static int net_assign_generic(struct net *net, unsigned int id, void *data)
* the old copy for kfree after a grace period.
*/

memcpy(&ng->ptr, &old_ng->ptr, old_ng->len * sizeof(void*));
memcpy(&ng->ptr, &old_ng->ptr, old_ng->s.len * sizeof(void*));
ng->ptr[id - 1] = data;

rcu_assign_pointer(net->gen, ng);
kfree_rcu(old_ng, rcu);
kfree_rcu(old_ng, s.rcu);
return 0;
}

Expand Down

0 comments on commit 9bfc7b9

Please sign in to comment.