diff options
author | David S. Miller <davem@davemloft.net> | 2015-07-23 03:41:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-23 03:41:16 -0400 |
commit | c5e40ee287db61a79af1746954ee03ebbf1ff8a3 (patch) | |
tree | 007da00e75e9b84766ac4868421705300e1e2e14 /net/openvswitch/flow_table.c | |
parent | 052831879945be0d9fad2216b127147c565ec1b1 (diff) | |
parent | c5dfd654d0ec0a28fe81e7bd4d4fd984a9855e09 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
net/bridge/br_mdb.c
br_mdb.c conflict was a function call being removed to fix a bug in
'net' but whose signature was changed in 'net-next'.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/flow_table.c')
-rw-r--r-- | net/openvswitch/flow_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c index b70d845e7efb..3a9d1dde76ed 100644 --- a/net/openvswitch/flow_table.c +++ b/net/openvswitch/flow_table.c | |||
@@ -754,7 +754,7 @@ int ovs_flow_init(void) | |||
754 | BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long)); | 754 | BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long)); |
755 | 755 | ||
756 | flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow) | 756 | flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow) |
757 | + (num_possible_nodes() | 757 | + (nr_node_ids |
758 | * sizeof(struct flow_stats *)), | 758 | * sizeof(struct flow_stats *)), |
759 | 0, 0, NULL); | 759 | 0, 0, NULL); |
760 | if (flow_cache == NULL) | 760 | if (flow_cache == NULL) |