From d1ac89588c51babed613e8bb500abb31ed621e0a Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Tue, 11 Oct 2022 15:42:45 +0530 Subject: [PATCH] rng: Rename daemon to align with rest of the crate Make daemon name follow what's used for i2c and gpio. Signed-off-by: Viresh Kumar --- rng/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rng/src/main.rs b/rng/src/main.rs index ea4f457..aa7270a 100644 --- a/rng/src/main.rs +++ b/rng/src/main.rs @@ -119,7 +119,7 @@ pub(crate) fn start_backend(config: VuRngConfig) -> Result<()> { )); let mut daemon = VhostUserDaemon::new( - String::from("vhost-user-RNG-daemon"), + String::from("vhost-device-rng-backend"), Arc::clone(&vu_rng_backend), GuestMemoryAtomic::new(GuestMemoryMmap::new()), )