aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/ipvs/ip_vs_sh.c
diff options
context:
space:
mode:
authorJulian Anastasov <ja@ssi.bg>2012-04-13 16:49:38 +0300
committerPablo Neira Ayuso <pablo@netfilter.org>2012-05-08 19:37:28 +0200
commitd6318f08e8d0b95960f74280cdaa7f0e00fd604c (patch)
treed8153d550fc8894b2e8cbcac3bca36bcbef76b85 /net/netfilter/ipvs/ip_vs_sh.c
parentipvs: LBLCR scheduler does not need GFP_ATOMIC allocation on init (diff)
downloadlinux-dev-d6318f08e8d0b95960f74280cdaa7f0e00fd604c.tar.xz
linux-dev-d6318f08e8d0b95960f74280cdaa7f0e00fd604c.zip
ipvs: SH scheduler does not need GFP_ATOMIC allocation
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>
Diffstat (limited to 'net/netfilter/ipvs/ip_vs_sh.c')
-rw-r--r--net/netfilter/ipvs/ip_vs_sh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_sh.c b/net/netfilter/ipvs/ip_vs_sh.c
index 91e97ee049be..05126521743e 100644
--- a/net/netfilter/ipvs/ip_vs_sh.c
+++ b/net/netfilter/ipvs/ip_vs_sh.c
@@ -162,7 +162,7 @@ static int ip_vs_sh_init_svc(struct ip_vs_service *svc)
/* allocate the SH table for this service */
tbl = kmalloc(sizeof(struct ip_vs_sh_bucket)*IP_VS_SH_TAB_SIZE,
- GFP_ATOMIC);
+ GFP_KERNEL);
if (tbl == NULL)
return -ENOMEM;