Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts: arch/microblaze/include/asm/socket.h
This commit is contained in:
@ -1066,7 +1066,7 @@ static int __init dccp_init(void)
|
||||
(dccp_hashinfo.ehash_size - 1))
|
||||
dccp_hashinfo.ehash_size--;
|
||||
dccp_hashinfo.ehash = (struct inet_ehash_bucket *)
|
||||
__get_free_pages(GFP_ATOMIC, ehash_order);
|
||||
__get_free_pages(GFP_ATOMIC|__GFP_NOWARN, ehash_order);
|
||||
} while (!dccp_hashinfo.ehash && --ehash_order > 0);
|
||||
|
||||
if (!dccp_hashinfo.ehash) {
|
||||
@ -1091,7 +1091,7 @@ static int __init dccp_init(void)
|
||||
bhash_order > 0)
|
||||
continue;
|
||||
dccp_hashinfo.bhash = (struct inet_bind_hashbucket *)
|
||||
__get_free_pages(GFP_ATOMIC, bhash_order);
|
||||
__get_free_pages(GFP_ATOMIC|__GFP_NOWARN, bhash_order);
|
||||
} while (!dccp_hashinfo.bhash && --bhash_order >= 0);
|
||||
|
||||
if (!dccp_hashinfo.bhash) {
|
||||
@ -1159,6 +1159,7 @@ static void __exit dccp_fini(void)
|
||||
kmem_cache_destroy(dccp_hashinfo.bind_bucket_cachep);
|
||||
dccp_ackvec_exit();
|
||||
dccp_sysctl_exit();
|
||||
percpu_counter_destroy(&dccp_orphan_count);
|
||||
}
|
||||
|
||||
module_init(dccp_init);
|
||||
|
Reference in New Issue
Block a user