Merge branch 'master' of /home/davem/src/GIT/linux-2.6/
This commit is contained in:
+2
-2
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user