blob: ff71fdcf33458954feecbb62d8b9d90534b39334 [file] [log] [blame]
Sasha Levin1e214a52011-11-03 10:20:04 +02001/*
2 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
Rusty Russell6b35e402008-02-04 23:50:12 -05003 * Tosatti's implementations.
4 *
5 * Copyright 2008 Rusty Russell IBM Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Sasha Levin1e214a52011-11-03 10:20:04 +020021
Rusty Russell6b35e402008-02-04 23:50:12 -050022#include <linux/virtio.h>
23#include <linux/virtio_balloon.h>
24#include <linux/swap.h>
25#include <linux/kthread.h>
26#include <linux/freezer.h>
Johann Felix Soden6659a0f2008-02-06 01:40:22 -080027#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040029#include <linux/module.h>
Rafael Aquinie2250422012-12-11 16:02:45 -080030#include <linux/balloon_compaction.h>
Rusty Russell6b35e402008-02-04 23:50:12 -050031
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030032/*
33 * Balloon device works in 4K page units. So each page is pointed to by
34 * multiple balloon pages. All memory counters in this driver are in balloon
35 * page units.
36 */
Rafael Aquinie2250422012-12-11 16:02:45 -080037#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
38#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030039
Rusty Russell6b35e402008-02-04 23:50:12 -050040struct virtio_balloon
41{
42 struct virtio_device *vdev;
Adam Litke9564e132009-11-30 10:14:15 -060043 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq;
Rusty Russell6b35e402008-02-04 23:50:12 -050044
45 /* Where the ballooning thread waits for config to change. */
46 wait_queue_head_t config_change;
47
48 /* The thread servicing the balloon. */
49 struct task_struct *thread;
50
51 /* Waiting for host to ack the pages we released. */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030052 wait_queue_head_t acked;
Rusty Russell6b35e402008-02-04 23:50:12 -050053
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030054 /* Number of balloon pages we've told the Host we're not using. */
Rusty Russell6b35e402008-02-04 23:50:12 -050055 unsigned int num_pages;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030056 /*
Rafael Aquinie2250422012-12-11 16:02:45 -080057 * The pages we've told the Host we're not using are enqueued
58 * at vb_dev_info->pages list.
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030059 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
60 * to num_pages above.
61 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -070062 struct balloon_dev_info vb_dev_info;
Rafael Aquinie2250422012-12-11 16:02:45 -080063
64 /* Synchronize access/update to this struct virtio_balloon elements */
65 struct mutex balloon_lock;
Rusty Russell6b35e402008-02-04 23:50:12 -050066
67 /* The array of pfns we tell the Host about. */
68 unsigned int num_pfns;
Rafael Aquinie2250422012-12-11 16:02:45 -080069 u32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
Adam Litke9564e132009-11-30 10:14:15 -060070
71 /* Memory statistics */
Adam Litke1f34c712009-12-10 16:35:15 -060072 int need_stats_update;
Adam Litke9564e132009-11-30 10:14:15 -060073 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
Rusty Russell6b35e402008-02-04 23:50:12 -050074};
75
76static struct virtio_device_id id_table[] = {
77 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
78 { 0 },
79};
80
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -060081static u32 page_to_balloon_pfn(struct page *page)
82{
83 unsigned long pfn = page_to_pfn(page);
84
85 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
86 /* Convert pfn from Linux page size to balloon page size. */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030087 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
88}
89
90static struct page *balloon_pfn_to_page(u32 pfn)
91{
92 BUG_ON(pfn % VIRTIO_BALLOON_PAGES_PER_PAGE);
93 return pfn_to_page(pfn / VIRTIO_BALLOON_PAGES_PER_PAGE);
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -060094}
95
Rusty Russell6b35e402008-02-04 23:50:12 -050096static void balloon_ack(struct virtqueue *vq)
97{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030098 struct virtio_balloon *vb = vq->vdev->priv;
Rusty Russell6b35e402008-02-04 23:50:12 -050099
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300100 wake_up(&vb->acked);
Rusty Russell6b35e402008-02-04 23:50:12 -0500101}
102
103static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
104{
105 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300106 unsigned int len;
Rusty Russell6b35e402008-02-04 23:50:12 -0500107
108 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
109
Rusty Russell6b35e402008-02-04 23:50:12 -0500110 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell4951cc92014-03-13 11:23:40 +1030111 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300112 virtqueue_kick(vq);
Rusty Russell6b35e402008-02-04 23:50:12 -0500113
114 /* When host has read buffer, this completes via balloon_ack */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300115 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
Rusty Russell6b35e402008-02-04 23:50:12 -0500116}
117
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300118static void set_page_pfns(u32 pfns[], struct page *page)
119{
120 unsigned int i;
121
122 /* Set balloon pfns pointing at this page.
123 * Note that the first pfn points at start of the page. */
124 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
125 pfns[i] = page_to_balloon_pfn(page) + i;
126}
127
Rusty Russell6b35e402008-02-04 23:50:12 -0500128static void fill_balloon(struct virtio_balloon *vb, size_t num)
129{
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700130 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
Rafael Aquinie2250422012-12-11 16:02:45 -0800131
Rusty Russell6b35e402008-02-04 23:50:12 -0500132 /* We can only do one array worth at a time. */
133 num = min(num, ARRAY_SIZE(vb->pfns));
134
Rafael Aquinie2250422012-12-11 16:02:45 -0800135 mutex_lock(&vb->balloon_lock);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300136 for (vb->num_pfns = 0; vb->num_pfns < num;
137 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800138 struct page *page = balloon_page_enqueue(vb_dev_info);
139
Rusty Russell6b35e402008-02-04 23:50:12 -0500140 if (!page) {
Joe Perches800ba5e2012-10-31 09:27:22 +1030141 dev_info_ratelimited(&vb->vdev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800142 "Out of puff! Can't get %u pages\n",
143 VIRTIO_BALLOON_PAGES_PER_PAGE);
Rusty Russell6b35e402008-02-04 23:50:12 -0500144 /* Sleep for at least 1/5 of a second before retry. */
145 msleep(200);
146 break;
147 }
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300148 set_page_pfns(vb->pfns + vb->num_pfns, page);
149 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
Jiang Liu3dcc0572013-07-03 15:03:21 -0700150 adjust_managed_page_count(page, -1);
Rusty Russell6b35e402008-02-04 23:50:12 -0500151 }
152
Rafael Aquinie2250422012-12-11 16:02:45 -0800153 /* Did we get any? */
154 if (vb->num_pfns != 0)
155 tell_host(vb, vb->inflate_vq);
156 mutex_unlock(&vb->balloon_lock);
Rusty Russell6b35e402008-02-04 23:50:12 -0500157}
158
159static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
160{
161 unsigned int i;
162
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300163 /* Find pfns pointing at start of each page, get pages and free them. */
164 for (i = 0; i < num; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Jiang Liu3dcc0572013-07-03 15:03:21 -0700165 struct page *page = balloon_pfn_to_page(pfns[i]);
Jiang Liu3dcc0572013-07-03 15:03:21 -0700166 adjust_managed_page_count(page, 1);
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700167 put_page(page); /* balloon reference */
Rusty Russell6b35e402008-02-04 23:50:12 -0500168 }
169}
170
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030171static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500172{
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030173 unsigned num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500174 struct page *page;
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700175 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
Rusty Russell6b35e402008-02-04 23:50:12 -0500176
177 /* We can only do one array worth at a time. */
178 num = min(num, ARRAY_SIZE(vb->pfns));
179
Rafael Aquinie2250422012-12-11 16:02:45 -0800180 mutex_lock(&vb->balloon_lock);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300181 for (vb->num_pfns = 0; vb->num_pfns < num;
182 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800183 page = balloon_page_dequeue(vb_dev_info);
184 if (!page)
185 break;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300186 set_page_pfns(vb->pfns + vb->num_pfns, page);
187 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500188 }
189
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030190 num_freed_pages = vb->num_pfns;
Dave Hansenbf50e692011-04-07 10:43:25 -0700191 /*
192 * Note that if
193 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
194 * is true, we *have* to do it in this order
195 */
Luiz Capitulino8c6bab42013-07-02 15:35:13 +0930196 if (vb->num_pfns != 0)
197 tell_host(vb, vb->deflate_vq);
Rafael Aquinie2250422012-12-11 16:02:45 -0800198 mutex_unlock(&vb->balloon_lock);
Dave Hansenbf50e692011-04-07 10:43:25 -0700199 release_pages_by_pfn(vb->pfns, vb->num_pfns);
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030200 return num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500201}
202
Adam Litke9564e132009-11-30 10:14:15 -0600203static inline void update_stat(struct virtio_balloon *vb, int idx,
204 u16 tag, u64 val)
205{
206 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
207 vb->stats[idx].tag = tag;
208 vb->stats[idx].val = val;
209}
210
211#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
212
213static void update_balloon_stats(struct virtio_balloon *vb)
214{
215 unsigned long events[NR_VM_EVENT_ITEMS];
216 struct sysinfo i;
217 int idx = 0;
218
219 all_vm_events(events);
220 si_meminfo(&i);
221
222 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
223 pages_to_bytes(events[PSWPIN]));
224 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
225 pages_to_bytes(events[PSWPOUT]));
226 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
227 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
228 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
229 pages_to_bytes(i.freeram));
230 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
231 pages_to_bytes(i.totalram));
232}
233
234/*
235 * While most virtqueues communicate guest-initiated requests to the hypervisor,
236 * the stats queue operates in reverse. The driver initializes the virtqueue
237 * with a single buffer. From that point forward, all conversations consist of
238 * a hypervisor request (a call to this function) which directs us to refill
Adam Litke1f34c712009-12-10 16:35:15 -0600239 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
240 * we notify our kthread which does the actual work via stats_handle_request().
Adam Litke9564e132009-11-30 10:14:15 -0600241 */
Adam Litke1f34c712009-12-10 16:35:15 -0600242static void stats_request(struct virtqueue *vq)
Adam Litke9564e132009-11-30 10:14:15 -0600243{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300244 struct virtio_balloon *vb = vq->vdev->priv;
Adam Litke9564e132009-11-30 10:14:15 -0600245
Adam Litke1f34c712009-12-10 16:35:15 -0600246 vb->need_stats_update = 1;
247 wake_up(&vb->config_change);
248}
Adam Litke9564e132009-11-30 10:14:15 -0600249
Adam Litke1f34c712009-12-10 16:35:15 -0600250static void stats_handle_request(struct virtio_balloon *vb)
251{
252 struct virtqueue *vq;
253 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300254 unsigned int len;
Adam Litke1f34c712009-12-10 16:35:15 -0600255
256 vb->need_stats_update = 0;
Adam Litke9564e132009-11-30 10:14:15 -0600257 update_balloon_stats(vb);
258
Adam Litke1f34c712009-12-10 16:35:15 -0600259 vq = vb->stats_vq;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300260 if (!virtqueue_get_buf(vq, &len))
261 return;
Adam Litke9564e132009-11-30 10:14:15 -0600262 sg_init_one(&sg, vb->stats, sizeof(vb->stats));
Rusty Russell4951cc92014-03-13 11:23:40 +1030263 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300264 virtqueue_kick(vq);
Adam Litke9564e132009-11-30 10:14:15 -0600265}
266
Rusty Russell6b35e402008-02-04 23:50:12 -0500267static void virtballoon_changed(struct virtio_device *vdev)
268{
269 struct virtio_balloon *vb = vdev->priv;
270
271 wake_up(&vb->config_change);
272}
273
Rusty Russellbdc16812008-03-17 22:58:15 -0500274static inline s64 towards_target(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500275{
David Gibson1a872282012-04-12 15:36:34 +1000276 __le32 v;
277 s64 target;
278
Rusty Russell855e0c52013-10-14 18:11:51 +1030279 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages, &v);
280
David Gibson1a872282012-04-12 15:36:34 +1000281 target = le32_to_cpu(v);
282 return target - vb->num_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500283}
284
285static void update_balloon_size(struct virtio_balloon *vb)
286{
287 __le32 actual = cpu_to_le32(vb->num_pages);
288
Luiz Capitulino3459f112013-12-05 13:04:10 +1030289 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
Rusty Russell855e0c52013-10-14 18:11:51 +1030290 &actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500291}
292
293static int balloon(void *_vballoon)
294{
295 struct virtio_balloon *vb = _vballoon;
296
297 set_freezable();
298 while (!kthread_should_stop()) {
Rusty Russellbdc16812008-03-17 22:58:15 -0500299 s64 diff;
Rusty Russell6b35e402008-02-04 23:50:12 -0500300
301 try_to_freeze();
302 wait_event_interruptible(vb->config_change,
303 (diff = towards_target(vb)) != 0
Adam Litke1f34c712009-12-10 16:35:15 -0600304 || vb->need_stats_update
Marcelo Tosatti84a139a2009-04-16 21:14:04 -0300305 || kthread_should_stop()
306 || freezing(current));
Adam Litke1f34c712009-12-10 16:35:15 -0600307 if (vb->need_stats_update)
308 stats_handle_request(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500309 if (diff > 0)
310 fill_balloon(vb, diff);
311 else if (diff < 0)
312 leak_balloon(vb, -diff);
313 update_balloon_size(vb);
Rusty Russell1f74ef02014-03-13 11:23:38 +1030314
315 /*
316 * For large balloon changes, we could spend a lot of time
317 * and always have work to do. Be nice if preempt disabled.
318 */
319 cond_resched();
Rusty Russell6b35e402008-02-04 23:50:12 -0500320 }
321 return 0;
322}
323
Amit Shahbe91c332011-12-22 16:58:34 +0530324static int init_vqs(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500325{
Adam Litke9564e132009-11-30 10:14:15 -0600326 struct virtqueue *vqs[3];
Adam Litke1f34c712009-12-10 16:35:15 -0600327 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack, stats_request };
Adam Litke9564e132009-11-30 10:14:15 -0600328 const char *names[] = { "inflate", "deflate", "stats" };
329 int err, nvqs;
Rusty Russell6b35e402008-02-04 23:50:12 -0500330
Amit Shahbe91c332011-12-22 16:58:34 +0530331 /*
332 * We expect two virtqueues: inflate and deflate, and
333 * optionally stat.
334 */
Adam Litke9564e132009-11-30 10:14:15 -0600335 nvqs = virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ) ? 3 : 2;
Amit Shahbe91c332011-12-22 16:58:34 +0530336 err = vb->vdev->config->find_vqs(vb->vdev, nvqs, vqs, callbacks, names);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600337 if (err)
Amit Shahbe91c332011-12-22 16:58:34 +0530338 return err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500339
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600340 vb->inflate_vq = vqs[0];
341 vb->deflate_vq = vqs[1];
Adam Litke9564e132009-11-30 10:14:15 -0600342 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
343 struct scatterlist sg;
344 vb->stats_vq = vqs[2];
345
346 /*
347 * Prime this virtqueue with one buffer so the hypervisor can
Rusty Russell4951cc92014-03-13 11:23:40 +1030348 * use it to signal us later (it can't be broken yet!).
Adam Litke9564e132009-11-30 10:14:15 -0600349 */
350 sg_init_one(&sg, vb->stats, sizeof vb->stats);
Rusty Russell92549ab2013-03-20 15:44:30 +1030351 if (virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, GFP_KERNEL)
Rusty Russellf96fde42012-01-12 15:44:42 +1030352 < 0)
Adam Litke9564e132009-11-30 10:14:15 -0600353 BUG();
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300354 virtqueue_kick(vb->stats_vq);
Adam Litke9564e132009-11-30 10:14:15 -0600355 }
Amit Shahbe91c332011-12-22 16:58:34 +0530356 return 0;
357}
358
Rafael Aquinie2250422012-12-11 16:02:45 -0800359#ifdef CONFIG_BALLOON_COMPACTION
360/*
361 * virtballoon_migratepage - perform the balloon page migration on behalf of
362 * a compation thread. (called under page lock)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700363 * @vb_dev_info: the balloon device
Rafael Aquinie2250422012-12-11 16:02:45 -0800364 * @newpage: page that will replace the isolated page after migration finishes.
365 * @page : the isolated (old) page that is about to be migrated to newpage.
366 * @mode : compaction mode -- not used for balloon page migration.
367 *
368 * After a ballooned page gets isolated by compaction procedures, this is the
369 * function that performs the page migration on behalf of a compaction thread
370 * The page migration for virtio balloon is done in a simple swap fashion which
371 * follows these two macro steps:
372 * 1) insert newpage into vb->pages list and update the host about it;
373 * 2) update the host about the old page removed from vb->pages list;
374 *
375 * This function preforms the balloon page migration task.
376 * Called through balloon_mapping->a_ops->migratepage
377 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700378static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
Rafael Aquinie2250422012-12-11 16:02:45 -0800379 struct page *newpage, struct page *page, enum migrate_mode mode)
380{
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700381 struct virtio_balloon *vb = container_of(vb_dev_info,
382 struct virtio_balloon, vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800383 unsigned long flags;
384
Rafael Aquinie2250422012-12-11 16:02:45 -0800385 /*
386 * In order to avoid lock contention while migrating pages concurrently
387 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
388 * this turn, as it is easier to retry the page migration later.
389 * This also prevents fill_balloon() getting stuck into a mutex
390 * recursion in the case it ends up triggering memory compaction
391 * while it is attempting to inflate the ballon.
392 */
393 if (!mutex_trylock(&vb->balloon_lock))
394 return -EAGAIN;
395
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700396 get_page(newpage); /* balloon reference */
397
Rafael Aquinie2250422012-12-11 16:02:45 -0800398 /* balloon's page migration 1st step -- inflate "newpage" */
399 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700400 balloon_page_insert(vb_dev_info, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800401 vb_dev_info->isolated_pages--;
Konstantin Khlebnikov09316c02014-10-09 15:29:32 -0700402 __count_vm_event(BALLOON_MIGRATE);
Rafael Aquinie2250422012-12-11 16:02:45 -0800403 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
404 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
405 set_page_pfns(vb->pfns, newpage);
406 tell_host(vb, vb->inflate_vq);
407
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700408 /* balloon's page migration 2nd step -- deflate "page" */
Rafael Aquinie2250422012-12-11 16:02:45 -0800409 balloon_page_delete(page);
410 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
411 set_page_pfns(vb->pfns, page);
412 tell_host(vb, vb->deflate_vq);
413
414 mutex_unlock(&vb->balloon_lock);
415
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700416 put_page(page); /* balloon reference */
417
418 return MIGRATEPAGE_SUCCESS;
Rafael Aquinie2250422012-12-11 16:02:45 -0800419}
Rafael Aquinie2250422012-12-11 16:02:45 -0800420#endif /* CONFIG_BALLOON_COMPACTION */
421
Amit Shahbe91c332011-12-22 16:58:34 +0530422static int virtballoon_probe(struct virtio_device *vdev)
423{
424 struct virtio_balloon *vb;
425 int err;
426
427 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
428 if (!vb) {
429 err = -ENOMEM;
430 goto out;
431 }
432
Amit Shahbe91c332011-12-22 16:58:34 +0530433 vb->num_pages = 0;
Rafael Aquinie2250422012-12-11 16:02:45 -0800434 mutex_init(&vb->balloon_lock);
Amit Shahbe91c332011-12-22 16:58:34 +0530435 init_waitqueue_head(&vb->config_change);
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300436 init_waitqueue_head(&vb->acked);
Amit Shahbe91c332011-12-22 16:58:34 +0530437 vb->vdev = vdev;
438 vb->need_stats_update = 0;
439
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700440 balloon_devinfo_init(&vb->vb_dev_info);
441#ifdef CONFIG_BALLOON_COMPACTION
442 vb->vb_dev_info.migratepage = virtballoon_migratepage;
443#endif
Rafael Aquinie2250422012-12-11 16:02:45 -0800444
Amit Shahbe91c332011-12-22 16:58:34 +0530445 err = init_vqs(vb);
446 if (err)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700447 goto out_free_vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500448
449 vb->thread = kthread_run(balloon, vb, "vballoon");
450 if (IS_ERR(vb->thread)) {
451 err = PTR_ERR(vb->thread);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600452 goto out_del_vqs;
Rusty Russell6b35e402008-02-04 23:50:12 -0500453 }
454
Rusty Russell6b35e402008-02-04 23:50:12 -0500455 return 0;
456
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600457out_del_vqs:
458 vdev->config->del_vqs(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500459out_free_vb:
460 kfree(vb);
461out:
462 return err;
463}
464
Amit Shahc877bab2012-04-27 00:45:57 +0530465static void remove_common(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500466{
Rusty Russell6b35e402008-02-04 23:50:12 -0500467 /* There might be pages left in the balloon: free them. */
468 while (vb->num_pages)
469 leak_balloon(vb, vb->num_pages);
Amit Shahb8ae0eb2012-04-27 00:45:56 +0530470 update_balloon_size(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500471
472 /* Now we reset the device so we can clean up the queues. */
Amit Shahc877bab2012-04-27 00:45:57 +0530473 vb->vdev->config->reset(vb->vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500474
Amit Shahc877bab2012-04-27 00:45:57 +0530475 vb->vdev->config->del_vqs(vb->vdev);
476}
477
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800478static void virtballoon_remove(struct virtio_device *vdev)
Amit Shahc877bab2012-04-27 00:45:57 +0530479{
480 struct virtio_balloon *vb = vdev->priv;
481
482 kthread_stop(vb->thread);
483 remove_common(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500484 kfree(vb);
485}
486
Aaron Lu89107002013-09-17 09:25:23 +0930487#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +0530488static int virtballoon_freeze(struct virtio_device *vdev)
489{
Amit Shah4eb05d52012-02-29 17:42:51 +0530490 struct virtio_balloon *vb = vdev->priv;
491
Amit Shahe5629662011-12-22 16:58:35 +0530492 /*
493 * The kthread is already frozen by the PM core before this
494 * function is called.
495 */
496
Amit Shahc877bab2012-04-27 00:45:57 +0530497 remove_common(vb);
Amit Shahe5629662011-12-22 16:58:35 +0530498 return 0;
499}
500
Amit Shahc45b4162012-04-27 00:45:55 +0530501static int virtballoon_restore(struct virtio_device *vdev)
Amit Shah4eb05d52012-02-29 17:42:51 +0530502{
503 struct virtio_balloon *vb = vdev->priv;
504 int ret;
505
506 ret = init_vqs(vdev->priv);
507 if (ret)
508 return ret;
509
Michael S. Tsirkin486d2e62014-10-15 10:22:33 +1030510 virtio_device_ready(vdev);
511
Amit Shah4eb05d52012-02-29 17:42:51 +0530512 fill_balloon(vb, towards_target(vb));
513 update_balloon_size(vb);
514 return 0;
515}
Amit Shahe5629662011-12-22 16:58:35 +0530516#endif
517
Adam Litke9564e132009-11-30 10:14:15 -0600518static unsigned int features[] = {
519 VIRTIO_BALLOON_F_MUST_TELL_HOST,
520 VIRTIO_BALLOON_F_STATS_VQ,
521};
Rusty Russellc45a6812008-05-02 21:50:50 -0500522
Jeff Mahoneyd817cd52010-01-15 17:01:26 -0800523static struct virtio_driver virtio_balloon_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500524 .feature_table = features,
525 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell6b35e402008-02-04 23:50:12 -0500526 .driver.name = KBUILD_MODNAME,
527 .driver.owner = THIS_MODULE,
528 .id_table = id_table,
529 .probe = virtballoon_probe,
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800530 .remove = virtballoon_remove,
Rusty Russell6b35e402008-02-04 23:50:12 -0500531 .config_changed = virtballoon_changed,
Aaron Lu89107002013-09-17 09:25:23 +0930532#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +0530533 .freeze = virtballoon_freeze,
534 .restore = virtballoon_restore,
Amit Shahe5629662011-12-22 16:58:35 +0530535#endif
Rusty Russell6b35e402008-02-04 23:50:12 -0500536};
537
Rusty Russellb2a17022013-02-13 16:59:28 +1030538module_virtio_driver(virtio_balloon_driver);
Rusty Russell6b35e402008-02-04 23:50:12 -0500539MODULE_DEVICE_TABLE(virtio, id_table);
540MODULE_DESCRIPTION("Virtio balloon driver");
541MODULE_LICENSE("GPL");