]> Git Repo - qemu.git/blame - hw/virtio/virtio-balloon.c
Merge remote-tracking branch 'remotes/kraxel/tags/vnc-20180112-pull-request' into...
[qemu.git] / hw / virtio / virtio-balloon.c
CommitLineData
bd322087 1/*
d4443cb6 2 * Virtio Balloon Device
bd322087
AL
3 *
4 * Copyright IBM, Corp. 2008
d4443cb6
AS
5 * Copyright (C) 2011 Red Hat, Inc.
6 * Copyright (C) 2011 Amit Shah <[email protected]>
bd322087
AL
7 *
8 * Authors:
9 * Anthony Liguori <[email protected]>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
14 */
15
9b8bfe21 16#include "qemu/osdep.h"
1de7afc9 17#include "qemu/iov.h"
7e6ccd9c 18#include "qemu/timer.h"
bd322087 19#include "qemu-common.h"
0d09e41a 20#include "hw/virtio/virtio.h"
2070aaeb 21#include "hw/mem/pc-dimm.h"
9c17d615 22#include "sysemu/balloon.h"
0d09e41a 23#include "hw/virtio/virtio-balloon.h"
9c17d615 24#include "sysemu/kvm.h"
022c62cb 25#include "exec/address-spaces.h"
7e6ccd9c 26#include "qapi/visitor.h"
aef9d311 27#include "qapi-event.h"
6adfdc5a 28#include "trace.h"
2ab4b135 29#include "qemu/error-report.h"
bd322087 30
0d09e41a 31#include "hw/virtio/virtio-bus.h"
8609d2a8 32#include "hw/virtio/virtio-access.h"
1ab461b5 33
01310e2a
TH
34#define BALLOON_PAGE_SIZE (1 << VIRTIO_BALLOON_PFN_SHIFT)
35
bd322087
AL
36static void balloon_page(void *addr, int deflate)
37{
371ff5a3
DDAG
38 if (!qemu_balloon_is_inhibited() && (!kvm_enabled() ||
39 kvm_has_sync_mmu())) {
01310e2a 40 qemu_madvise(addr, BALLOON_PAGE_SIZE,
e78815a5 41 deflate ? QEMU_MADV_WILLNEED : QEMU_MADV_DONTNEED);
371ff5a3 42 }
bd322087
AL
43}
44
7e6ccd9c
LC
45static const char *balloon_stat_names[] = {
46 [VIRTIO_BALLOON_S_SWAP_IN] = "stat-swap-in",
47 [VIRTIO_BALLOON_S_SWAP_OUT] = "stat-swap-out",
48 [VIRTIO_BALLOON_S_MAJFLT] = "stat-major-faults",
49 [VIRTIO_BALLOON_S_MINFLT] = "stat-minor-faults",
50 [VIRTIO_BALLOON_S_MEMFREE] = "stat-free-memory",
51 [VIRTIO_BALLOON_S_MEMTOT] = "stat-total-memory",
a0d06486 52 [VIRTIO_BALLOON_S_AVAIL] = "stat-available-memory",
7e6ccd9c
LC
53 [VIRTIO_BALLOON_S_NR] = NULL
54};
55
625a5bef
AL
56/*
57 * reset_stats - Mark all items in the stats array as unset
58 *
52f35022
SW
59 * This function needs to be called at device initialization and before
60 * updating to a set of newly-generated stats. This will ensure that no
625a5bef
AL
61 * stale values stick around in case the guest reports a subset of the supported
62 * statistics.
63 */
64static inline void reset_stats(VirtIOBalloon *dev)
65{
66 int i;
67 for (i = 0; i < VIRTIO_BALLOON_S_NR; dev->stats[i++] = -1);
68}
69
7e6ccd9c
LC
70static bool balloon_stats_supported(const VirtIOBalloon *s)
71{
c96caced 72 VirtIODevice *vdev = VIRTIO_DEVICE(s);
95129d6f 73 return virtio_vdev_has_feature(vdev, VIRTIO_BALLOON_F_STATS_VQ);
7e6ccd9c
LC
74}
75
76static bool balloon_stats_enabled(const VirtIOBalloon *s)
77{
78 return s->stats_poll_interval > 0;
79}
80
81static void balloon_stats_destroy_timer(VirtIOBalloon *s)
82{
83 if (balloon_stats_enabled(s)) {
bc72ad67
AB
84 timer_del(s->stats_timer);
85 timer_free(s->stats_timer);
7e6ccd9c
LC
86 s->stats_timer = NULL;
87 s->stats_poll_interval = 0;
88 }
89}
90
1f9296b5 91static void balloon_stats_change_timer(VirtIOBalloon *s, int64_t secs)
7e6ccd9c 92{
bc72ad67 93 timer_mod(s->stats_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + secs * 1000);
7e6ccd9c
LC
94}
95
96static void balloon_stats_poll_cb(void *opaque)
97{
98 VirtIOBalloon *s = opaque;
c96caced 99 VirtIODevice *vdev = VIRTIO_DEVICE(s);
7e6ccd9c 100
4eae2a65 101 if (s->stats_vq_elem == NULL || !balloon_stats_supported(s)) {
7e6ccd9c
LC
102 /* re-schedule */
103 balloon_stats_change_timer(s, s->stats_poll_interval);
104 return;
105 }
106
51b19ebe 107 virtqueue_push(s->svq, s->stats_vq_elem, s->stats_vq_offset);
c96caced 108 virtio_notify(vdev, s->svq);
51b19ebe
PB
109 g_free(s->stats_vq_elem);
110 s->stats_vq_elem = NULL;
7e6ccd9c
LC
111}
112
d7bce999
EB
113static void balloon_stats_get_all(Object *obj, Visitor *v, const char *name,
114 void *opaque, Error **errp)
7e6ccd9c 115{
2ddb16a9 116 Error *err = NULL;
7e6ccd9c
LC
117 VirtIOBalloon *s = opaque;
118 int i;
119
337283df 120 visit_start_struct(v, name, NULL, 0, &err);
2ddb16a9
MA
121 if (err) {
122 goto out;
123 }
51e72bc1 124 visit_type_int(v, "last-update", &s->stats_last_update, &err);
297a3646
MA
125 if (err) {
126 goto out_end;
127 }
7e6ccd9c 128
337283df 129 visit_start_struct(v, "stats", NULL, 0, &err);
2ddb16a9
MA
130 if (err) {
131 goto out_end;
132 }
9dbb8fa7 133 for (i = 0; i < VIRTIO_BALLOON_S_NR; i++) {
51e72bc1 134 visit_type_uint64(v, balloon_stat_names[i], &s->stats[i], &err);
9dbb8fa7 135 if (err) {
15c2f669 136 goto out_nested;
9dbb8fa7 137 }
7e6ccd9c 138 }
15c2f669
EB
139 visit_check_struct(v, &err);
140out_nested:
1158bb2a 141 visit_end_struct(v, NULL);
2ddb16a9 142
15c2f669
EB
143 if (!err) {
144 visit_check_struct(v, &err);
145 }
2ddb16a9 146out_end:
1158bb2a 147 visit_end_struct(v, NULL);
2ddb16a9
MA
148out:
149 error_propagate(errp, err);
7e6ccd9c
LC
150}
151
4fa45492 152static void balloon_stats_get_poll_interval(Object *obj, Visitor *v,
d7bce999 153 const char *name, void *opaque,
7e6ccd9c
LC
154 Error **errp)
155{
156 VirtIOBalloon *s = opaque;
51e72bc1 157 visit_type_int(v, name, &s->stats_poll_interval, errp);
7e6ccd9c
LC
158}
159
4fa45492 160static void balloon_stats_set_poll_interval(Object *obj, Visitor *v,
d7bce999 161 const char *name, void *opaque,
7e6ccd9c
LC
162 Error **errp)
163{
164 VirtIOBalloon *s = opaque;
65cd9064 165 Error *local_err = NULL;
7e6ccd9c
LC
166 int64_t value;
167
51e72bc1 168 visit_type_int(v, name, &value, &local_err);
65cd9064
MA
169 if (local_err) {
170 error_propagate(errp, local_err);
7e6ccd9c
LC
171 return;
172 }
173
174 if (value < 0) {
175 error_setg(errp, "timer value must be greater than zero");
176 return;
177 }
178
22644cd2 179 if (value > UINT32_MAX) {
1f9296b5
LC
180 error_setg(errp, "timer value is too big");
181 return;
182 }
183
7e6ccd9c
LC
184 if (value == s->stats_poll_interval) {
185 return;
186 }
187
188 if (value == 0) {
189 /* timer=0 disables the timer */
190 balloon_stats_destroy_timer(s);
191 return;
192 }
193
194 if (balloon_stats_enabled(s)) {
195 /* timer interval change */
196 s->stats_poll_interval = value;
197 balloon_stats_change_timer(s, value);
198 return;
199 }
200
201 /* create a new timer */
202 g_assert(s->stats_timer == NULL);
bc72ad67 203 s->stats_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL, balloon_stats_poll_cb, s);
7e6ccd9c
LC
204 s->stats_poll_interval = value;
205 balloon_stats_change_timer(s, 0);
206}
207
bd322087
AL
208static void virtio_balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq)
209{
c96caced 210 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
51b19ebe 211 VirtQueueElement *elem;
b7c28c74 212 MemoryRegionSection section;
bd322087 213
51b19ebe 214 for (;;) {
bd322087
AL
215 size_t offset = 0;
216 uint32_t pfn;
51b19ebe
PB
217 elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
218 if (!elem) {
219 return;
220 }
bd322087 221
51b19ebe 222 while (iov_to_buf(elem->out_sg, elem->out_num, offset, &pfn, 4) == 4) {
c227f099
AL
223 ram_addr_t pa;
224 ram_addr_t addr;
8609d2a8 225 int p = virtio_ldl_p(vdev, &pfn);
bd322087 226
8609d2a8 227 pa = (ram_addr_t) p << VIRTIO_BALLOON_PFN_SHIFT;
bd322087
AL
228 offset += 4;
229
b7c28c74
AK
230 /* FIXME: remove get_system_memory(), but how? */
231 section = memory_region_find(get_system_memory(), pa, 1);
f2fd57db
DDAG
232 if (!int128_nz(section.size) ||
233 !memory_region_is_ram(section.mr) ||
234 memory_region_is_rom(section.mr) ||
235 memory_region_is_romd(section.mr)) {
236 trace_virtio_balloon_bad_addr(pa);
bd322087 237 continue;
f2fd57db 238 }
bd322087 239
6adfdc5a
HZ
240 trace_virtio_balloon_handle_output(memory_region_name(section.mr),
241 pa);
b7c28c74 242 /* Using memory_region_get_ram_ptr is bending the rules a bit, but
5c130f65 243 should be OK because we only want a single page. */
b7c28c74
AK
244 addr = section.offset_within_region;
245 balloon_page(memory_region_get_ram_ptr(section.mr) + addr,
246 !!(vq == s->dvq));
dfde4e6e 247 memory_region_unref(section.mr);
bd322087
AL
248 }
249
51b19ebe 250 virtqueue_push(vq, elem, offset);
bd322087 251 virtio_notify(vdev, vq);
51b19ebe 252 g_free(elem);
bd322087
AL
253 }
254}
255
625a5bef
AL
256static void virtio_balloon_receive_stats(VirtIODevice *vdev, VirtQueue *vq)
257{
c96caced 258 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
51b19ebe 259 VirtQueueElement *elem;
625a5bef
AL
260 VirtIOBalloonStat stat;
261 size_t offset = 0;
7e6ccd9c 262 qemu_timeval tv;
625a5bef 263
4eae2a65 264 elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
51b19ebe 265 if (!elem) {
7e6ccd9c 266 goto out;
625a5bef
AL
267 }
268
4eae2a65
LP
269 if (s->stats_vq_elem != NULL) {
270 /* This should never happen if the driver follows the spec. */
271 virtqueue_push(vq, s->stats_vq_elem, 0);
272 virtio_notify(vdev, vq);
273 g_free(s->stats_vq_elem);
274 }
275
276 s->stats_vq_elem = elem;
277
625a5bef
AL
278 /* Initialize the stats to get rid of any stale values. This is only
279 * needed to handle the case where a guest supports fewer stats than it
280 * used to (ie. it has booted into an old kernel).
281 */
282 reset_stats(s);
283
dcf6f5e1 284 while (iov_to_buf(elem->out_sg, elem->out_num, offset, &stat, sizeof(stat))
fa6111f2 285 == sizeof(stat)) {
8609d2a8
RR
286 uint16_t tag = virtio_tswap16(vdev, stat.tag);
287 uint64_t val = virtio_tswap64(vdev, stat.val);
625a5bef
AL
288
289 offset += sizeof(stat);
290 if (tag < VIRTIO_BALLOON_S_NR)
291 s->stats[tag] = val;
292 }
293 s->stats_vq_offset = offset;
7e6ccd9c
LC
294
295 if (qemu_gettimeofday(&tv) < 0) {
2ab4b135 296 warn_report("%s: failed to get time of day", __func__);
7e6ccd9c
LC
297 goto out;
298 }
299
300 s->stats_last_update = tv.tv_sec;
301
302out:
303 if (balloon_stats_enabled(s)) {
304 balloon_stats_change_timer(s, s->stats_poll_interval);
305 }
625a5bef
AL
306}
307
bd322087
AL
308static void virtio_balloon_get_config(VirtIODevice *vdev, uint8_t *config_data)
309{
c96caced 310 VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
bd322087
AL
311 struct virtio_balloon_config config;
312
313 config.num_pages = cpu_to_le32(dev->num_pages);
314 config.actual = cpu_to_le32(dev->actual);
315
6adfdc5a 316 trace_virtio_balloon_get_config(config.num_pages, config.actual);
e6baf613 317 memcpy(config_data, &config, sizeof(struct virtio_balloon_config));
bd322087
AL
318}
319
2b75f848
VSO
320static int build_dimm_list(Object *obj, void *opaque)
321{
322 GSList **list = opaque;
323
324 if (object_dynamic_cast(obj, TYPE_PC_DIMM)) {
325 DeviceState *dev = DEVICE(obj);
326 if (dev->realized) { /* only realized DIMMs matter */
327 *list = g_slist_prepend(*list, dev);
328 }
329 }
330
331 object_child_foreach(obj, build_dimm_list, opaque);
332 return 0;
333}
334
39de9984
VSO
335static ram_addr_t get_current_ram_size(void)
336{
e8dc06d2 337 GSList *list = NULL, *item;
39de9984
VSO
338 ram_addr_t size = ram_size;
339
2b75f848 340 build_dimm_list(qdev_get_machine(), &list);
e8dc06d2
VSO
341 for (item = list; item; item = g_slist_next(item)) {
342 Object *obj = OBJECT(item->data);
2b75f848
VSO
343 if (!strcmp(object_get_typename(obj), TYPE_PC_DIMM)) {
344 size += object_property_get_int(obj, PC_DIMM_SIZE_PROP,
345 &error_abort);
346 }
39de9984 347 }
e8dc06d2 348 g_slist_free(list);
39de9984
VSO
349
350 return size;
351}
352
bd322087
AL
353static void virtio_balloon_set_config(VirtIODevice *vdev,
354 const uint8_t *config_data)
355{
c96caced 356 VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
bd322087 357 struct virtio_balloon_config config;
973603a8 358 uint32_t oldactual = dev->actual;
463756d0
HZ
359 ram_addr_t vm_ram_size = get_current_ram_size();
360
e6baf613 361 memcpy(&config, config_data, sizeof(struct virtio_balloon_config));
e54f1771 362 dev->actual = le32_to_cpu(config.actual);
973603a8 363 if (dev->actual != oldactual) {
463756d0 364 qapi_event_send_balloon_change(vm_ram_size -
aef9d311
WX
365 ((ram_addr_t) dev->actual << VIRTIO_BALLOON_PFN_SHIFT),
366 &error_abort);
973603a8 367 }
6adfdc5a 368 trace_virtio_balloon_set_config(dev->actual, oldactual);
bd322087
AL
369}
370
9d5b731d
JW
371static uint64_t virtio_balloon_get_features(VirtIODevice *vdev, uint64_t f,
372 Error **errp)
bd322087 373{
e3816255
DL
374 VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
375 f |= dev->host_features;
40de55af 376 virtio_add_feature(&f, VIRTIO_BALLOON_F_STATS_VQ);
8172539d 377 return f;
bd322087
AL
378}
379
96637bcd 380static void virtio_balloon_stat(void *opaque, BalloonInfo *info)
dce911c7
AS
381{
382 VirtIOBalloon *dev = opaque;
463756d0
HZ
383 info->actual = get_current_ram_size() - ((uint64_t) dev->actual <<
384 VIRTIO_BALLOON_PFN_SHIFT);
dce911c7
AS
385}
386
30fb2ca6 387static void virtio_balloon_to_target(void *opaque, ram_addr_t target)
bd322087 388{
c96caced
FK
389 VirtIOBalloon *dev = VIRTIO_BALLOON(opaque);
390 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
463756d0 391 ram_addr_t vm_ram_size = get_current_ram_size();
bd322087 392
463756d0
HZ
393 if (target > vm_ram_size) {
394 target = vm_ram_size;
dce911c7 395 }
bd322087 396 if (target) {
463756d0 397 dev->num_pages = (vm_ram_size - target) >> VIRTIO_BALLOON_PFN_SHIFT;
c96caced 398 virtio_notify_config(vdev);
bd322087 399 }
6adfdc5a 400 trace_virtio_balloon_to_target(target, dev->num_pages);
bd322087
AL
401}
402
019518a8 403static int virtio_balloon_post_load_device(void *opaque, int version_id)
9ea2511c 404{
019518a8 405 VirtIOBalloon *s = VIRTIO_BALLOON(opaque);
fecb48f7
PB
406
407 if (balloon_stats_enabled(s)) {
408 balloon_stats_change_timer(s, s->stats_poll_interval);
409 }
bd322087
AL
410 return 0;
411}
412
019518a8
DDAG
413static const VMStateDescription vmstate_virtio_balloon_device = {
414 .name = "virtio-balloon-device",
415 .version_id = 1,
416 .minimum_version_id = 1,
417 .post_load = virtio_balloon_post_load_device,
418 .fields = (VMStateField[]) {
419 VMSTATE_UINT32(num_pages, VirtIOBalloon),
420 VMSTATE_UINT32(actual, VirtIOBalloon),
421 VMSTATE_END_OF_LIST()
422 },
423};
424
74def47c 425static void virtio_balloon_device_realize(DeviceState *dev, Error **errp)
bd322087 426{
74def47c 427 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
a546fb17 428 VirtIOBalloon *s = VIRTIO_BALLOON(dev);
f76f6655 429 int ret;
bd322087 430
e6baf613
LC
431 virtio_init(vdev, "virtio-balloon", VIRTIO_ID_BALLOON,
432 sizeof(struct virtio_balloon_config));
bd322087 433
f76f6655
AS
434 ret = qemu_add_balloon_handler(virtio_balloon_to_target,
435 virtio_balloon_stat, s);
5c7d0962 436
1ab461b5 437 if (ret < 0) {
46abb812 438 error_setg(errp, "Only one balloon device is supported");
a546fb17 439 virtio_cleanup(vdev);
74def47c 440 return;
1ab461b5 441 }
f76f6655 442
5c7d0962
FK
443 s->ivq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
444 s->dvq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
445 s->svq = virtio_add_queue(vdev, 128, virtio_balloon_receive_stats);
bd322087 446
38dbd48b 447 reset_stats(s);
1ab461b5
FK
448}
449
306ec6c3 450static void virtio_balloon_device_unrealize(DeviceState *dev, Error **errp)
1ab461b5 451{
306ec6c3
AF
452 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
453 VirtIOBalloon *s = VIRTIO_BALLOON(dev);
1ab461b5
FK
454
455 balloon_stats_destroy_timer(s);
456 qemu_remove_balloon_handler(s);
6a1a8cc7 457 virtio_cleanup(vdev);
1ab461b5
FK
458}
459
4eae2a65
LP
460static void virtio_balloon_device_reset(VirtIODevice *vdev)
461{
462 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
463
464 if (s->stats_vq_elem != NULL) {
27e57efe 465 virtqueue_unpop(s->svq, s->stats_vq_elem, 0);
4eae2a65
LP
466 g_free(s->stats_vq_elem);
467 s->stats_vq_elem = NULL;
468 }
469}
470
4a1e48be
LP
471static void virtio_balloon_set_status(VirtIODevice *vdev, uint8_t status)
472{
473 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
474
475 if (!s->stats_vq_elem && vdev->vm_running &&
476 (status & VIRTIO_CONFIG_S_DRIVER_OK) && virtqueue_rewind(s->svq, 1)) {
477 /* poll stats queue for the element we have discarded when the VM
478 * was stopped */
479 virtio_balloon_receive_stats(vdev, s->svq);
480 }
481}
482
1190044e
SZ
483static void virtio_balloon_instance_init(Object *obj)
484{
485 VirtIOBalloon *s = VIRTIO_BALLOON(obj);
486
487 object_property_add(obj, "guest-stats", "guest statistics",
488 balloon_stats_get_all, NULL, NULL, s, NULL);
489
490 object_property_add(obj, "guest-stats-polling-interval", "int",
491 balloon_stats_get_poll_interval,
492 balloon_stats_set_poll_interval,
493 NULL, s, NULL);
494}
495
c5dc16b7
HP
496static const VMStateDescription vmstate_virtio_balloon = {
497 .name = "virtio-balloon",
498 .minimum_version_id = 1,
499 .version_id = 1,
500 .fields = (VMStateField[]) {
501 VMSTATE_VIRTIO_DEVICE,
502 VMSTATE_END_OF_LIST()
503 },
504};
7f1ca9b2 505
1ab461b5 506static Property virtio_balloon_properties[] = {
e3816255
DL
507 DEFINE_PROP_BIT("deflate-on-oom", VirtIOBalloon, host_features,
508 VIRTIO_BALLOON_F_DEFLATE_ON_OOM, false),
1ab461b5
FK
509 DEFINE_PROP_END_OF_LIST(),
510};
511
512static void virtio_balloon_class_init(ObjectClass *klass, void *data)
513{
514 DeviceClass *dc = DEVICE_CLASS(klass);
515 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
74def47c 516
1ab461b5 517 dc->props = virtio_balloon_properties;
7f1ca9b2 518 dc->vmsd = &vmstate_virtio_balloon;
125ee0ed 519 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
74def47c 520 vdc->realize = virtio_balloon_device_realize;
306ec6c3 521 vdc->unrealize = virtio_balloon_device_unrealize;
4eae2a65 522 vdc->reset = virtio_balloon_device_reset;
1ab461b5
FK
523 vdc->get_config = virtio_balloon_get_config;
524 vdc->set_config = virtio_balloon_set_config;
525 vdc->get_features = virtio_balloon_get_features;
4a1e48be 526 vdc->set_status = virtio_balloon_set_status;
019518a8 527 vdc->vmsd = &vmstate_virtio_balloon_device;
1ab461b5
FK
528}
529
530static const TypeInfo virtio_balloon_info = {
531 .name = TYPE_VIRTIO_BALLOON,
532 .parent = TYPE_VIRTIO_DEVICE,
533 .instance_size = sizeof(VirtIOBalloon),
1190044e 534 .instance_init = virtio_balloon_instance_init,
1ab461b5
FK
535 .class_init = virtio_balloon_class_init,
536};
537
538static void virtio_register_types(void)
539{
540 type_register_static(&virtio_balloon_info);
541}
542
543type_init(virtio_register_types)
This page took 0.96842 seconds and 4 git commands to generate.