On Tue, Aug 12, 2025 at 10:44:33AM +0200, Andreas Hindborg wrote: > rnull currently only supports direct completion. Add option for completing > requests across CPU nodes via soft IRQ or IPI. > > Signed-off-by: Andreas Hindborg <a.hindborg@xxxxxxxxxx> > + let text = core::str::from_utf8(page)?.trim(); > + let value = text.parse::<u8>().map_err(|_| EINVAL)?; Same comment about kstrtobool here as on the other patch. Alice