diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-12-19 16:01:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-19 16:01:38 -0500 |
commit | 966567b7644b540962d90a0878706f59ae22c7e1 (patch) | |
tree | 8e9507fe1266d63bd43fdc65f61423785556679d | |
parent | 90415477bf1356f72acc34063ff52441fc10a754 (diff) |
net: two vzalloc() cleanups
We can use vzalloc() helper now instead of __vmalloc() trick
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netfilter/nf_conntrack_core.c | 3 | ||||
-rw-r--r-- | net/tipc/ref.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c index 32279dcd03cf..deeef74e775f 100644 --- a/net/netfilter/nf_conntrack_core.c +++ b/net/netfilter/nf_conntrack_core.c | |||
@@ -1342,8 +1342,7 @@ void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls) | |||
1342 | get_order(sz)); | 1342 | get_order(sz)); |
1343 | if (!hash) { | 1343 | if (!hash) { |
1344 | printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n"); | 1344 | printk(KERN_WARNING "nf_conntrack: falling back to vmalloc.\n"); |
1345 | hash = __vmalloc(sz, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO, | 1345 | hash = vzalloc(sz); |
1346 | PAGE_KERNEL); | ||
1347 | } | 1346 | } |
1348 | 1347 | ||
1349 | if (hash && nulls) | 1348 | if (hash && nulls) |
diff --git a/net/tipc/ref.c b/net/tipc/ref.c index 83116892528b..9e37b7812c3c 100644 --- a/net/tipc/ref.c +++ b/net/tipc/ref.c | |||
@@ -110,8 +110,7 @@ int tipc_ref_table_init(u32 requested_size, u32 start) | |||
110 | 110 | ||
111 | /* allocate table & mark all entries as uninitialized */ | 111 | /* allocate table & mark all entries as uninitialized */ |
112 | 112 | ||
113 | table = __vmalloc(actual_size * sizeof(struct reference), | 113 | table = vzalloc(actual_size * sizeof(struct reference)); |
114 | GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO, PAGE_KERNEL); | ||
115 | if (table == NULL) | 114 | if (table == NULL) |
116 | return -ENOMEM; | 115 | return -ENOMEM; |
117 | 116 | ||