Skip to content

Commit 987faa1

Browse files
committed
host: allow clippy::too_many_arguments on internal evolve helpers
Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent 22f5707 commit 987faa1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

host/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1807,6 +1807,7 @@ impl Sandbox {
18071807
}
18081808

18091809
/// Low-level: boot with an in-memory initrd buffer. Prefer the builder.
1810+
#[allow(clippy::too_many_arguments)]
18101811
pub(crate) fn evolve_inline(
18111812
kernel_path: &Path,
18121813
initrd: Option<&[u8]>,
@@ -1842,6 +1843,7 @@ impl Sandbox {
18421843
}
18431844

18441845
/// Low-level: boot with a zero-copy mapped initrd file. Prefer the builder.
1846+
#[allow(clippy::too_many_arguments)]
18451847
pub(crate) fn evolve_mapped(
18461848
kernel_path: &Path,
18471849
initrd_path: Option<&Path>,

0 commit comments

Comments
 (0)