John Millikin

Results 92 comments of John Millikin

This error appears to be caused by padding in `user/initcode.S`. ``` $ clang-12 --target=riscv64 -Wall -Werror -O -fno-omit-frame-pointer -ggdb -MD -mcmodel=medany -ffreestanding -fno-common -nostdlib -mno-relax -I. -fno-stack-protector -march=rv64g -nostdinc -I....

Use cases include: * Archives where multiple files have the same name in different case. On platforms with case-insensitive filesystems (macOS, Windows) these archives can't be extracted as-is, and the...

I have a version of the `proto` module that I'd guess is around 40-50% done -- it handles packages, message types, and enums. Will try to push it to github.com...

I'm also interested in seeing this feature stabilized, and made an attempt at moving the API into `SocketAddrExt`: https://github.com/rust-lang/rust/pull/101967

FYI: The same modules are also being touched as part of the work on supporting abstract socket addresses -- see https://github.com/rust-lang/rust/issues/85410 and https://github.com/rust-lang/rust/pull/101967 for details. I tried to keep the...

I notice the lint was renamed from `arithmetic` to `arithmetic_side_effects` on September 9th (https://github.com/rust-lang/rust-clippy/commit/51d8b6c6643abb048987bd0befdeb6f46db0f6b5). It looks like Clippy v0.1.64 contains the old name: ``` // works #![warn(clippy::arithmetic)] // error: unknown...

Two issues I've noticed with this option: First, it interacts poorly with `hard_tabs`. The `+` lines ought to be tabbed equal to `len` and then space-aligned afterward, but they're being...