| 
									
										
										
										
											2012-01-18 14:40:40 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU coroutine sleep | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright IBM, Corp. 2011 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *  Stefan Hajnoczi    <stefanha@linux.vnet.ibm.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This work is licensed under the terms of the GNU LGPL, version 2 or later. | 
					
						
							|  |  |  |  * See the COPYING.LIB file in the top-level directory. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 17:49:55 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-01 14:48:02 +01:00
										 |  |  | #include "qemu/coroutine.h"
 | 
					
						
							| 
									
										
										
										
											2017-11-17 22:27:09 -05:00
										 |  |  | #include "qemu/coroutine_int.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/timer.h"
 | 
					
						
							| 
									
										
										
										
											2013-10-24 16:01:14 +09:00
										 |  |  | #include "block/aio.h"
 | 
					
						
							| 
									
										
										
										
											2012-01-18 14:40:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct CoSleepCB { | 
					
						
							|  |  |  |     QEMUTimer *ts; | 
					
						
							|  |  |  |     Coroutine *co; | 
					
						
							|  |  |  | } CoSleepCB; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void co_sleep_cb(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     CoSleepCB *sleep_cb = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 22:27:09 -05:00
										 |  |  |     /* Write of schedule protected by barrier write in aio_co_schedule */ | 
					
						
							|  |  |  |     atomic_set(&sleep_cb->co->scheduled, NULL); | 
					
						
							| 
									
										
										
										
											2017-02-13 14:52:29 +01:00
										 |  |  |     aio_co_wake(sleep_cb->co); | 
					
						
							| 
									
										
										
										
											2012-01-18 14:40:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-09 10:26:52 +00:00
										 |  |  | void coroutine_fn qemu_co_sleep_ns(QEMUClockType type, int64_t ns) | 
					
						
							| 
									
										
										
										
											2013-10-24 16:01:14 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-09 10:26:52 +00:00
										 |  |  |     AioContext *ctx = qemu_get_current_aio_context(); | 
					
						
							| 
									
										
										
										
											2013-10-24 16:01:14 +09:00
										 |  |  |     CoSleepCB sleep_cb = { | 
					
						
							|  |  |  |         .co = qemu_coroutine_self(), | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2017-11-17 22:27:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const char *scheduled = atomic_cmpxchg(&sleep_cb.co->scheduled, NULL, | 
					
						
							|  |  |  |                                            __func__); | 
					
						
							|  |  |  |     if (scheduled) { | 
					
						
							|  |  |  |         fprintf(stderr, | 
					
						
							|  |  |  |                 "%s: Co-routine was already scheduled in '%s'\n", | 
					
						
							|  |  |  |                 __func__, scheduled); | 
					
						
							|  |  |  |         abort(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-10-24 16:01:14 +09:00
										 |  |  |     sleep_cb.ts = aio_timer_new(ctx, type, SCALE_NS, co_sleep_cb, &sleep_cb); | 
					
						
							|  |  |  |     timer_mod(sleep_cb.ts, qemu_clock_get_ns(type) + ns); | 
					
						
							|  |  |  |     qemu_coroutine_yield(); | 
					
						
							|  |  |  |     timer_del(sleep_cb.ts); | 
					
						
							|  |  |  |     timer_free(sleep_cb.ts); | 
					
						
							|  |  |  | } |