From ff2e95c35eae635990458baf53deb8d3e89e57fe Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Fri, 1 Mar 2024 16:46:51 +0800 Subject: [PATCH] comms: run idle kernel on start-up --- src/runtime/src/comms.rs | 67 ++++++++++++++++++++++++++++++---------- 1 file changed, 50 insertions(+), 17 deletions(-) diff --git a/src/runtime/src/comms.rs b/src/runtime/src/comms.rs index 7747850..08192e2 100644 --- a/src/runtime/src/comms.rs +++ b/src/runtime/src/comms.rs @@ -718,6 +718,32 @@ async fn handle_connection( } } +async fn flash_and_run_idle_kernel( + buffer: &Vec, + control: &Rc>, + up_destinations: &Rc>, + aux_mutex: &Rc>, + routing_table: &drtio_routing::RoutingTable, + timer: GlobalTimer, +) { + info!("Loading idle kernel"); + let res = handle_flash_kernel(buffer, control, up_destinations, aux_mutex, routing_table, timer) + .await; + match res { + #[cfg(has_drtio)] + Err(Error::DestinationDown) => { + let mut countdown = timer.countdown(); + delay(&mut countdown, Milliseconds(500)).await; + } + Err(_) => warn!("error loading idle kernel"), + _ => (), + } + info!("Running idle kernel"); + let _ = handle_run_kernel(None, control, up_destinations, aux_mutex, routing_table, timer) + .await.map_err(|_| warn!("error running idle kernel")); + info!("Idle kernel terminated"); +} + pub fn main(timer: GlobalTimer, cfg: Config) { let net_addresses = net_settings::get_addresses(&cfg); info!("network addresses: {}", net_addresses); @@ -808,8 +834,30 @@ pub fn main(timer: GlobalTimer, cfg: Config) { mgmt::start(cfg); task::spawn(async move { - let connection = Rc::new(Semaphore::new(1, 1)); + let connection = Rc::new(Semaphore::new(0, 1)); let terminate = Rc::new(Semaphore::new(0, 1)); + { + let control = control.clone(); + let idle_kernel = idle_kernel.clone(); + let connection = connection.clone(); + let terminate = terminate.clone(); + let up_destinations = up_destinations.clone(); + let aux_mutex = aux_mutex.clone(); + let routing_table = drtio_routing_table.clone(); + task::spawn(async move { + let routing_table = routing_table.borrow(); + select_biased! { + _ = (async { + if let Some(buffer) = &*idle_kernel { + flash_and_run_idle_kernel(&buffer, &control, &up_destinations, &aux_mutex, &routing_table, timer).await; + } + }).fuse() => (), + _ = terminate.async_wait().fuse() => () + } + connection.signal(); + }); + } + loop { let mut stream = TcpStream::accept(1381, 0x10_000, 0x10_000).await.unwrap(); @@ -837,22 +885,7 @@ pub fn main(timer: GlobalTimer, cfg: Config) { .await .map_err(|e| warn!("connection terminated: {}", e)); if let Some(buffer) = &*idle_kernel { - info!("Loading idle kernel"); - let res = handle_flash_kernel(&buffer, &control, &up_destinations, &aux_mutex, &routing_table, timer) - .await; - match res { - #[cfg(has_drtio)] - Err(Error::DestinationDown) => { - let mut countdown = timer.countdown(); - delay(&mut countdown, Milliseconds(500)).await; - } - Err(_) => warn!("error loading idle kernel"), - _ => (), - } - info!("Running idle kernel"); - let _ = handle_run_kernel(None, &control, &up_destinations, &aux_mutex, &routing_table, timer) - .await.map_err(|_| warn!("error running idle kernel")); - info!("Idle kernel terminated"); + flash_and_run_idle_kernel(&buffer, &control, &up_destinations, &aux_mutex, &routing_table, timer).await; } }).fuse() => (), _ = terminate.async_wait().fuse() => ()