aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Anastasov <ja@ssi.bg>2012-04-13 09:49:41 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2012-05-08 13:37:26 -0400
commit45d4e71a39c3274f982d73688cbee2a4b286c3e3 (patch)
tree629cd0444d2a4ad1042d59a5b01ed4c89f0c714a
parent4f2a94dcb65bcdf20d91d5bffd29b9c836559d17 (diff)
ipvs: LBLCR scheduler does not need GFP_ATOMIC allocation on init
Schedulers are initialized and bound to services only on commands. Signed-off-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Hans Schillstrom <hans@schillstrom.com> Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r--net/netfilter/ipvs/ip_vs_lblcr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c b/net/netfilter/ipvs/ip_vs_lblcr.c
index 9dcd39a48897..570e31ea427a 100644
--- a/net/netfilter/ipvs/ip_vs_lblcr.c
+++ b/net/netfilter/ipvs/ip_vs_lblcr.c
@@ -511,7 +511,7 @@ static int ip_vs_lblcr_init_svc(struct ip_vs_service *svc)
511 /* 511 /*
512 * Allocate the ip_vs_lblcr_table for this service 512 * Allocate the ip_vs_lblcr_table for this service
513 */ 513 */
514 tbl = kmalloc(sizeof(*tbl), GFP_ATOMIC); 514 tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
515 if (tbl == NULL) 515 if (tbl == NULL)
516 return -ENOMEM; 516 return -ENOMEM;
517 517