blob: d8d9860934fee1e7f59505eeefa094307b2d58c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS: Never Queue scheduling module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Changes:
12 *
13 */
14
15/*
16 * The NQ algorithm adopts a two-speed model. When there is an idle server
17 * available, the job will be sent to the idle server, instead of waiting
18 * for a fast one. When there is no idle server available, the job will be
19 * sent to the server that minimize its expected delay (The Shortest
20 * Expected Delay scheduling algorithm).
21 *
22 * See the following paper for more information:
23 * A. Weinrib and S. Shenker, Greed is not enough: Adaptive load sharing
24 * in large heterogeneous systems. In Proceedings IEEE INFOCOM'88,
25 * pages 986-994, 1988.
26 *
27 * Thanks must go to Marko Buuri <marko@buuri.name> for talking NQ to me.
28 *
29 * The difference between NQ and SED is that NQ can improve overall
30 * system utilization.
31 *
32 */
33
Hannes Eder9aada7a2009-07-30 14:29:44 -070034#define KMSG_COMPONENT "IPVS"
35#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/kernel.h>
39
40#include <net/ip_vs.h>
41
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static inline unsigned int
44ip_vs_nq_dest_overhead(struct ip_vs_dest *dest)
45{
46 /*
47 * We only use the active connection number in the cost
48 * calculation here.
49 */
50 return atomic_read(&dest->activeconns) + 1;
51}
52
53
54/*
55 * Weighted Least Connection scheduling
56 */
57static struct ip_vs_dest *
Julian Anastasovbba54de2013-06-16 09:09:36 +030058ip_vs_nq_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
59 struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct ip_vs_dest *dest, *least = NULL;
62 unsigned int loh = 0, doh;
63
Hannes Eder1e3e2382009-08-02 11:05:41 +000064 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 /*
67 * We calculate the load of each dest server as follows:
68 * (server expected overhead) / dest->weight
69 *
70 * Remember -- no floats in kernel mode!!!
71 * The comparison of h1*w2 > h2*w1 is equivalent to that of
72 * h1/w1 > h2/w2
73 * if every weight is larger than zero.
74 *
75 * The server with weight=0 is quiesced and will not receive any
76 * new connections.
77 */
78
Julian Anastasovf92ea8f2013-03-22 11:46:43 +020079 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (dest->flags & IP_VS_DEST_F_OVERLOAD ||
82 !atomic_read(&dest->weight))
83 continue;
84
85 doh = ip_vs_nq_dest_overhead(dest);
86
87 /* return the server directly if it is idle */
88 if (atomic_read(&dest->activeconns) == 0) {
89 least = dest;
90 loh = doh;
91 goto out;
92 }
93
94 if (!least ||
95 (loh * atomic_read(&dest->weight) >
96 doh * atomic_read(&least->weight))) {
97 least = dest;
98 loh = doh;
99 }
100 }
101
Simon Horman68888d12008-12-29 18:37:36 -0800102 if (!least) {
Patrick Schaaf41ac51e2011-02-11 14:01:12 +0100103 ip_vs_scheduler_err(svc, "no destination available");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return NULL;
Simon Horman68888d12008-12-29 18:37:36 -0800105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 out:
Julius Volzb14198f2008-09-02 15:55:39 +0200108 IP_VS_DBG_BUF(6, "NQ: server %s:%u "
109 "activeconns %d refcnt %d weight %d overhead %d\n",
110 IP_VS_DBG_ADDR(svc->af, &least->addr), ntohs(least->port),
111 atomic_read(&least->activeconns),
112 atomic_read(&least->refcnt),
113 atomic_read(&least->weight), loh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 return least;
116}
117
118
119static struct ip_vs_scheduler ip_vs_nq_scheduler =
120{
121 .name = "nq",
122 .refcnt = ATOMIC_INIT(0),
123 .module = THIS_MODULE,
Sven Wegenerd149ccc2008-08-10 09:18:02 +0000124 .n_list = LIST_HEAD_INIT(ip_vs_nq_scheduler.n_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .schedule = ip_vs_nq_schedule,
126};
127
128
129static int __init ip_vs_nq_init(void)
130{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return register_ip_vs_scheduler(&ip_vs_nq_scheduler);
132}
133
134static void __exit ip_vs_nq_cleanup(void)
135{
136 unregister_ip_vs_scheduler(&ip_vs_nq_scheduler);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200137 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140module_init(ip_vs_nq_init);
141module_exit(ip_vs_nq_cleanup);
142MODULE_LICENSE("GPL");