From ff83b2793754bc1370eaf85353c38a4fcde8eadd Mon Sep 17 00:00:00 2001 From: Tushar Khatri Date: Wed, 17 Jun 2026 16:05:02 +0000 Subject: [PATCH] vhost_user_net: reevaluate #[allow] attributes Convert the still-needed #[allow] to #[expect] so it warns if the lint stops firing. Part of #8326. Signed-off-by: Tushar Khatri --- vhost_user_net/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhost_user_net/src/lib.rs b/vhost_user_net/src/lib.rs index ffd711f74..6278e2457 100644 --- a/vhost_user_net/src/lib.rs +++ b/vhost_user_net/src/lib.rs @@ -119,7 +119,7 @@ pub struct VhostUserNetBackend { } impl VhostUserNetBackend { - #[allow(clippy::too_many_arguments)] + #[expect(clippy::too_many_arguments)] fn new( ip_addr: IpAddr, host_mac: MacAddr,