mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2026-09-08 23:57:59 +08:00
* feat(virtio): support virtio pmem block device Signed-off-by: longjin <longjin@dragonos.org> * fs: honor root mount command line options Signed-off-by: longjin <longjin@dragonos.org> * fix(kernel): use contains() instead of iter().any() in cmdline Clippy flagged a manual_contains lint: names.iter().any(|name| *name == option) should be names.contains(&option) which is more idiomatic and efficient. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * fix(virtio_pmem): use Arc<KSet> instead of Arc<dyn KSet> KSet is a struct, not a trait, so it cannot be used as a trait object with `dyn`. This fixes the clippy build error in make fmt. Signed-off-by: longjin <longjin@dragonos.org> * fix(vfs): parse common root mount flags Signed-off-by: longjin <longjin@dragonos.org> --------- Signed-off-by: longjin <longjin@dragonos.org>