Commit cf611a8d authored by Simon Horman's avatar Simon Horman Committed by David S. Miller

[IPVS]: Fix comment typos.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent dc14a93c
...@@ -1003,7 +1003,7 @@ ip_vs_in(unsigned int hooknum, struct sk_buff **pskb, ...@@ -1003,7 +1003,7 @@ ip_vs_in(unsigned int hooknum, struct sk_buff **pskb,
/* Check the server status */ /* Check the server status */
if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) { if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) {
/* the destination server is not availabe */ /* the destination server is not available */
if (sysctl_ip_vs_expire_nodest_conn) { if (sysctl_ip_vs_expire_nodest_conn) {
/* try to expire the connection immediately */ /* try to expire the connection immediately */
......
...@@ -163,7 +163,7 @@ ip_vs_wrr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb) ...@@ -163,7 +163,7 @@ ip_vs_wrr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
if (mark->cw <= 0) { if (mark->cw <= 0) {
mark->cw = mark->mw; mark->cw = mark->mw;
/* /*
* Still zero, which means no availabe servers. * Still zero, which means no available servers.
*/ */
if (mark->cw == 0) { if (mark->cw == 0) {
mark->cl = &svc->destinations; mark->cl = &svc->destinations;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment