Skip to content

cut down comments - #50

Merged
nil0ft merged 41 commits into
developfrom
claude/codebase-comment-cleanup-0kefy6
Aug 18, 2026
Merged

cut down comments#50
nil0ft merged 41 commits into
developfrom
claude/codebase-comment-cleanup-0kefy6

Conversation

@nil0ft

@nil0ft nil0ft commented Aug 18, 2026

Copy link
Copy Markdown
Collaborator

No description provided.

claude added 30 commits August 18, 2026 09:02
Apply the repo's own comment discipline to the three densest files in the
tree: delete banners, restatement, control-flow narration and test scaffolding
prose; compress surviving doc comments to one or two lines.

The load-bearing content is preserved, not lost:

  - mm/src/tlb.rs — the 33-line banner replaying an old SMP hang is gone, but
    the invariant it protected survives on PerCpuTlbState: ack goes true only
    in the handler, false only in an initiator's push, both under queue's
    lock, and wait_for_acks is a pure reader.
  - The Amit et al. EuroSys '20 citation stays (a published technique, and the
    only record of why the local invlpg trails the IPIs); asides naming
    upstream implementation files do not.
  - Every '# Safety' section is byte-for-byte unchanged.

Verified comments-only: a Rust-lexing comment stripper compares the code
token stream against HEAD, so any change to a non-comment byte fails. Its
self-test covers eight cases -- deleted line, altered literal, swapped memory
ordering, dropped visibility, mangled string, and a comma removed inside a
string literal all reject; comment removal and rustfmt's trailing-comma
normalisation accept.

Co-Authored-By: Claude <noreply@anthropic.com>
Sweep of the kernel's comment surface against the discipline CLAUDE.md already
states -- default to no comment, express intent through naming and types, treat
the urge to comment as a smell. Removes banners and section dividers, comments
that restate the line beneath them, control-flow narration, design history and
war stories, and test scaffolding prose. Doc comments are compressed to the
facts a reader cannot recover from the code rather than deleted.

Preserved deliberately: every '# Safety' / '# Panics' / '# Errors' section
byte-for-byte, hardware and errata notes, locking and IRQ-ordering
requirements, and specification citations -- the Linux ABI and RFC references
are interoperability and licensing evidence, so they stay while asides naming
an upstream implementation file do not.

Also drops call-site copies of contracts the callee already documents: the
SafeStack frame-lifetime rationale duplicated at two scheduler sites lives in
run_switch, and AbortOnUnwind's own doc already names the scheduler
context-switch spans as an audited holder.

Every file is verified comments-only, not merely reviewed: a Rust-lexing
stripper compares the code token stream against HEAD, so touching any
non-comment byte fails. String and char literals are placeholder-protected so
their contents compare exactly, while rustfmt's trailing-comma normalisation is
tolerated. Its self-test covers eight cases -- deleted line, altered literal,
swapped memory ordering, dropped visibility, mangled string, and a comma
removed inside a string literal all reject; comment removal and reformatting
accept.

just build passes; check_stack_sizes, check_kernel_softfloat,
check_registry_sections and check_kernel_pml4_writer all unchanged.

Co-Authored-By: Claude <noreply@anthropic.com>
Second batch of the comment cleanup, plus the non-Rust surfaces.

Assembly is deliberately near-untouched: CLAUDE.md exempts register-contract
notes, and in these four files that is most of the comment volume -- the
syscall entry state (RCX/R11/RAX, user RSP intact, SWAPGS not yet performed),
which MSR installs each entry point, and why offsets are const offset_of!
operands rather than hand-mirrored numbers. Only banners and step narration go.

scripts/*.sh is left alone on purpose. CLAUDE.md cites those headers as the
documentation of each check, and the --self-test paths embed deliberate Rust
comment fixtures that gate_expect_silent asserts the gate stays quiet on;
deleting a "comment" inside one of those heredocs would break a gate self-test,
which the build treats as a failure.

Verification tools are now type-aware -- feeding a .go file to a Rust parser
reported a spurious failure, so parsecheck/codeguard/hygiene skip non-.rs and
Go is checked with gofmt, go vet and go build instead.

just build passes. gofmt clean, go vet and go build pass, just --list parses.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the sweep. Also fixes a false alarm in the verification pipeline.

Removing a comment that sat between `use` or `mod` items unblocks rustfmt's
reorder_imports and reorder_modules, both default-on, so the formatter then
sorts items it previously could not touch. The comments-only checker saw that
as a code change. It is not: the token multiset is identical and item order
carries no meaning in Rust.

The checker now reports three verdicts -- OK (identical token stream), REORDER
(same multiset, rustfmt sort, accepted), CORRUPT (hard failure) -- and proves
the reorder case with a real lexer rather than whitespace splitting, which had
been gluing `TestResult};` into a single token and manufacturing differences.

Verification order also corrected: prove comments-only against HEAD BEFORE
running rustfmt, since formatting legitimately reorders tokens afterwards.

just build passes; all four ELF gates unchanged. Self-test still rejects all
six real violation classes.

Co-Authored-By: Claude <noreply@anthropic.com>
Re-chunked the remaining work into 154 units (median ~500 comment lines each,
down from ~1900) after the pilot critique traced quality variance to oversized
chunks -- agents on very large files were silently ignoring the rubric's own
limits.

Assembly here is comment-only by construction: stripping every '#' comment from
boot/limine_entry.s and slopos-ostd/src/irq/asm/handlers.s leaves an
instruction and directive stream byte-identical to HEAD. The register contracts
CLAUDE.md exempts are untouched; only banners and step narration went.

Go host wrapper passes gofmt, go vet and go build.

just build passes; all four ELF gates unchanged.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
claude added 11 commits August 18, 2026 11:56
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
Continues the tree-wide comment cleanup under the amended rubric. Every file
verified comments-only against HEAD before formatting; just build and the four
ELF gates pass.

Co-Authored-By: Claude <noreply@anthropic.com>
The per-file `rustfmt --edition 2024` used during the sweep mis-sorted imports
in the crates that declare `edition = "2021"` (hermetic, karch, ktesting,
kernel-services, service-core), because rustfmt's import ordering changed in
the 2024 style edition. `cargo fmt --all` reads each crate's own edition and is
what CLAUDE.md mandates, so it is the authority here.

Fifteen files re-sorted. Verified as pure reorderings: thirteen report REORDER
(identical token multiset) and two are comments-only. `cargo fmt --all --check`
is clean, just build passes, and all twenty framekernel gates pass -- including
check_safe_contract_surface at 0 and tcb_ratio unchanged at 0.490 %.

The commit script now runs `cargo fmt --all` so the mismatch cannot recur.

Co-Authored-By: Claude <noreply@anthropic.com>
The one code change in this sweep, made deliberately and recorded here.

early_console.rs read:

    static MOCK_BUFFER: [AtomicU8; MOCK_CAP] = {
        // Inline constant initializer for an array of `AtomicU8`.
        [const { AtomicU8::new(0) }; MOCK_CAP]
    };

The comment restated the expression verbatim, so the sweep removed it. That
left a block whose only purpose had been to hold it. The code still compiled
because rustc's `unused_braces` skips multi-line blocks -- until `cargo fmt
--all` collapsed the block onto one line, at which point the lint fired and
`-D warnings` turned it into a build error.

Removing the braces is what rustc itself suggests and is behaviour-preserving:
a block wrapping a single expression evaluates to that expression.

Two similar single-expression blocks elsewhere (boot/src/tests/gdt_tests.rs,
drivers/src/tty/table.rs) were left alone -- they build clean and the second
scopes a lock guard, so its braces may be deliberate.

just build passes, userland builds, cargo fmt --all --check is clean.

Co-Authored-By: Claude <noreply@anthropic.com>
A five-lens audit re-read the whole 62k-line diff and checked, for every
high-risk deleted line, whether the fact survived anywhere in the tree. The
safety lens came back clean -- every '# Safety', '# Panics' and '# Errors'
section and every doc-test verified byte-identical. The other four found nine
facts that were genuinely gone. All are restored here, compressed rather than
reinstated verbatim.

Concurrency (the two that mattered most):

  - commit_blocked_deschedule documented the lost-wakeup window before
    unschedule_task but not the residual one after: a wake landing between the
    re-check and the caller's schedule() enqueues via its own schedule_task, so
    the task is dispatched later rather than stranded. That half is the reason
    the function's contract is sound and it was nowhere in the tree.
  - AbortOnUnwind's type doc insists every normal exit disarms. The scheduler
    deliberately keeps a guard armed across a context switch, and the note
    saying why (a descheduled frame cannot unwind until its task resumes) had
    gone, leaving the site looking like a bug.

Licensing, per CLAUDE.md: mm/src/elf.rs lost the only naming of the ELF gABI /
System V ABI it reproduces ~20 constants from, and abi/src/quota.rs lost the
clause recording that ABI numbers and struct layouts are interface facts
carrying no copyright -- which is the evidence that the compatibility work is
sound, not merely a citation.

Also restored: the 60 Hz-frame derivation behind VBLANK_TIMEOUT_MS = 25, the
fixed-point rounding algebra that decodes the seven `+ 127` terms in
gfx/blend.rs, the Acquire/Release rationale on Task::fs_base (the cross-CPU
reader is the next prepare_switch_to), the collect-under-lock/dispatch-outside
rule in net/src/timer.rs, and a summary line on an ist_stacks doc that began on
a '# Panics' heading and so rendered headless in rustdoc.

The audit also caught the one place this pass invented prose instead of
shortening it -- a five-line rewrite in limine_entry.s that I had added. Its
content is correct and was verified against the code, but it broke the rule the
rest of the sweep was held to, so it is cut to two lines.

Verified comments-only; just build, all four ELF gates and cargo fmt --all
--check pass.

Co-Authored-By: Claude <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 1054 files, which is 954 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 1ee1e160-9200-4d69-836a-fe0061e1aa2d

📥 Commits

Reviewing files that changed from the base of the PR and between 2cc3d1a and 8bc50e6.

📒 Files selected for processing (1054)
  • abi/src/addr.rs
  • abi/src/alignment.rs
  • abi/src/auxv.rs
  • abi/src/damage.rs
  • abi/src/display.rs
  • abi/src/draw.rs
  • abi/src/errno.rs
  • abi/src/error.rs
  • abi/src/event.rs
  • abi/src/file_ops.rs
  • abi/src/fs.rs
  • abi/src/handle.rs
  • abi/src/input.rs
  • abi/src/input/keycode.rs
  • abi/src/input/layout.rs
  • abi/src/io.rs
  • abi/src/lib.rs
  • abi/src/net.rs
  • abi/src/pixel.rs
  • abi/src/quota.rs
  • abi/src/ring.rs
  • abi/src/signal.rs
  • abi/src/spawn.rs
  • abi/src/surface.rs
  • abi/src/syscall/numbers.rs
  • abi/src/syscall/posix.rs
  • abi/src/syscall/termios.rs
  • abi/src/syscall/test_report.rs
  • abi/src/syscall/types.rs
  • abi/src/task.rs
  • abi/src/tty_error.rs
  • abi/src/unix.rs
  • abi/src/window.rs
  • acpi/src/aml/interp.rs
  • acpi/src/aml/mod.rs
  • acpi/src/aml/object.rs
  • acpi/src/aml/parse.rs
  • acpi/src/aml/resource.rs
  • acpi/src/fadt.rs
  • acpi/src/hpet.rs
  • acpi/src/lib.rs
  • acpi/src/madt.rs
  • acpi/src/mcfg.rs
  • acpi/src/tables.rs
  • appkit/src/constraints.rs
  • appkit/src/event.rs
  • appkit/src/focus.rs
  • appkit/src/input.rs
  • appkit/src/layout.rs
  • appkit/src/lib.rs
  • appkit/src/node.rs
  • appkit/src/overlay.rs
  • appkit/src/paint.rs
  • appkit/src/platform.rs
  • appkit/src/run.rs
  • appkit/src/style.rs
  • appkit/src/tests.rs
  • appkit/src/text/mod.rs
  • appkit/src/traits.rs
  • appkit/src/tree.rs
  • appkit/src/widgets/button.rs
  • appkit/src/widgets/checkbox.rs
  • appkit/src/widgets/dialog.rs
  • appkit/src/widgets/image.rs
  • appkit/src/widgets/label.rs
  • appkit/src/widgets/list_view.rs
  • appkit/src/widgets/menu.rs
  • appkit/src/widgets/popup.rs
  • appkit/src/widgets/scroll_view.rs
  • appkit/src/widgets/separator.rs
  • appkit/src/widgets/tab_bar.rs
  • appkit/src/widgets/table.rs
  • appkit/src/widgets/text_field.rs
  • boot/limine_entry.s
  • boot/src/boot_drivers.rs
  • boot/src/boot_impl.rs
  • boot/src/boot_memory.rs
  • boot/src/boot_services.rs
  • boot/src/cpu_verify.rs
  • boot/src/early_init.rs
  • boot/src/exception.rs
  • boot/src/ffi_boundary.rs
  • boot/src/gdt.rs
  • boot/src/idt.rs
  • boot/src/ist_stacks.rs
  • boot/src/kconsole.rs
  • boot/src/limine_protocol.rs
  • boot/src/panic.rs
  • boot/src/shutdown.rs
  • boot/src/smp.rs
  • boot/src/tests/abort_core_tests.rs
  • boot/src/tests/gdt_tests.rs
  • boot/src/tests/ist_premap_tests.rs
  • boot/src/tests/mod.rs
  • boot/src/tests/panic_recovery_tests.rs
  • boot/src/tests/safestack_dstack_tests.rs
  • boot/src/tests/shutdown_tests.rs
  • boot/src/tests/unwind_index_tests.rs
  • boot/src/tests/watchdog_tests.rs
  • boot/src/uefi_runtime.rs
  • boot/src/user_fault.rs
  • chrome-core/src/glyph.rs
  • chrome-core/src/lib.rs
  • chrome-core/src/netstate.rs
  • chrome-core/src/positioner.rs
  • chrome-core/src/status.rs
  • chrome-core/src/toggle.rs
  • core/src/driver_hooks.rs
  • core/src/exec/grants.rs
  • core/src/exec/mod.rs
  • core/src/exec/tests.rs
  • core/src/exec/utest.rs
  • core/src/irq.rs
  • core/src/kconsole.rs
  • core/src/lib.rs
  • core/src/syscall/args.rs
  • core/src/syscall/common.rs
  • core/src/syscall/context.rs
  • core/src/syscall/core_handlers.rs
  • core/src/syscall/dispatch.rs
  • core/src/syscall/font_handlers.rs
  • core/src/syscall/fs/path_handlers.rs
  • core/src/syscall/fs/poll_ioctl_handlers.rs
  • core/src/syscall/handlers.rs
  • core/src/syscall/keymap_handlers.rs
  • core/src/syscall/macros.rs
  • core/src/syscall/memory_handlers.rs
  • core/src/syscall/net_config_handlers.rs
  • core/src/syscall/net_handlers.rs
  • core/src/syscall/net_query_handlers.rs
  • core/src/syscall/pidfd_handlers.rs
  • core/src/syscall/process_handlers.rs
  • core/src/syscall/result.rs
  • core/src/syscall/ring_handlers.rs
  • core/src/syscall/signal.rs
  • core/src/syscall/signalfd_handlers.rs
  • core/src/syscall/test_handlers.rs
  • core/src/syscall/tests.rs
  • core/src/syscall/ui_handlers.rs
  • core/src/syscall/user_loop.rs
  • core/src/tests/bh_tests.rs
  • core/src/tests/event_bus_tests.rs
  • core/src/tests/heap_allocator_tests.rs
  • core/src/tests/helpers.rs
  • core/src/tests/irq_tests.rs
  • core/src/tests/kconsole_tests.rs
  • core/src/tests/mod.rs
  • core/src/tests/msi_tests.rs
  • core/src/tests/ostd_arc_tests.rs
  • core/src/tests/process_identity_tests.rs
  • core/src/tests/rcu_cb_tests.rs
  • core/src/tests/rcu_qs_tests.rs
  • core/src/utests.rs
  • drivers/src/apic/mod.rs
  • drivers/src/apic/regs.rs
  • drivers/src/apic/timer.rs
  • drivers/src/driver_core/bound.rs
  • drivers/src/driver_core/mod.rs
  • drivers/src/driver_core/msi.rs
  • drivers/src/driver_core/platform_bound.rs
  • drivers/src/hpet.rs
  • drivers/src/i2c/designware.rs
  • drivers/src/i2c/mod.rs
  • drivers/src/i2c/pci.rs
  • drivers/src/input_event.rs
  • drivers/src/ioapic/regs.rs
  • drivers/src/ioapic/tests.rs
  • drivers/src/irq.rs
  • drivers/src/lib.rs
  • drivers/src/msi.rs
  • drivers/src/msi_common.rs
  • drivers/src/msix.rs
  • drivers/src/pci.rs
  • drivers/src/pci_defs.rs
  • drivers/src/pinctrl.rs
  • drivers/src/pit.rs
  • drivers/src/platform_bus/mod.rs
  • drivers/src/ps2/keyboard.rs
  • drivers/src/ps2/mod.rs
  • drivers/src/ps2/mouse.rs
  • drivers/src/ps2/platform.rs
  • drivers/src/random.rs
  • drivers/src/serial.rs
  • drivers/src/syscall_services_init.rs
  • drivers/src/tests/apic_timer_tests.rs
  • drivers/src/tests/devres_tests.rs
  • drivers/src/tests/ecam_tests.rs
  • drivers/src/tests/hpet_tests.rs
  • drivers/src/tests/i8042_tests.rs
  • drivers/src/tests/input_event_tests.rs
  • drivers/src/tests/kconsole_serial_tests.rs
  • drivers/src/tests/keyboard_tests.rs
  • drivers/src/tests/mod.rs
  • drivers/src/tests/msix_tests.rs
  • drivers/src/tests/pci_binding.rs
  • drivers/src/tests/pci_cap_tests.rs
  • drivers/src/tests/platform_acpi_tests.rs
  • drivers/src/tests/platform_binding.rs
  • drivers/src/tests/scanout_arbiter.rs
  • drivers/src/tests/virtio_completion_tests.rs
  • drivers/src/tests/virtio_gpu_tests.rs
  • drivers/src/tests/virtio_msix_tests.rs
  • drivers/src/tests/virtio_net_tests.rs
  • drivers/src/tests/xe_logic_tests.rs
  • drivers/src/touchpad/gesture.rs
  • drivers/src/touchpad/i2c_hid.rs
  • drivers/src/touchpad/mod.rs
  • drivers/src/touchpad/report.rs
  • drivers/src/tty/backing.rs
  • drivers/src/tty/driver.rs
  • drivers/src/tty/io.rs
  • drivers/src/tty/job_control.rs
  • drivers/src/tty/ldisc.rs
  • drivers/src/tty/lifecycle.rs
  • drivers/src/tty/mod.rs
  • drivers/src/tty/output.rs
  • drivers/src/tty/poll.rs
  • drivers/src/tty/pty.rs
  • drivers/src/tty/session.rs
  • drivers/src/tty/table.rs
  • drivers/src/tty/termios.rs
  • drivers/src/tty/vconsole.rs
  • drivers/src/tty_file_ops.rs
  • drivers/src/tty_tests/fixtures.rs
  • drivers/src/tty_tests/mod.rs
  • drivers/src/tty_tests/test_driver.rs
  • drivers/src/tty_tests/test_echo_defer.rs
  • drivers/src/tty_tests/test_integration.rs
  • drivers/src/tty_tests/test_ioctls_ext.rs
  • drivers/src/tty_tests/test_ldisc_core.rs
  • drivers/src/tty_tests/test_ldisc_flags.rs
  • drivers/src/tty_tests/test_ldisc_flow.rs
  • drivers/src/tty_tests/test_ldisc_noncanon.rs
  • drivers/src/tty_tests/test_ldisc_regression.rs
  • drivers/src/tty_tests/test_ldisc_signals.rs
  • drivers/src/tty_tests/test_ldisc_utf8.rs
  • drivers/src/tty_tests/test_pty.rs
  • drivers/src/tty_tests/test_pty_core.rs
  • drivers/src/tty_tests/test_pty_packet.rs
  • drivers/src/tty_tests/test_session.rs
  • drivers/src/tty_tests/test_session_fg.rs
  • drivers/src/tty_tests/test_table.rs
  • drivers/src/tty_tests/test_vconsole.rs
  • drivers/src/tty_tests/test_vtparser.rs
  • drivers/src/virtio/mod.rs
  • drivers/src/virtio/pci.rs
  • drivers/src/virtio/queue.rs
  • drivers/src/virtio_blk.rs
  • drivers/src/virtio_gpu/mod.rs
  • drivers/src/virtio_gpu/protocol.rs
  • drivers/src/virtio_net.rs
  • drivers/src/xe/cursor.rs
  • drivers/src/xe/ddb.rs
  • drivers/src/xe/diag.rs
  • drivers/src/xe/fb_mem.rs
  • drivers/src/xe/ggtt.rs
  • drivers/src/xe/mmio_map.rs
  • drivers/src/xe/mod.rs
  • drivers/src/xe/pipe.rs
  • drivers/src/xe/plane.rs
  • drivers/src/xe/present.rs
  • drivers/src/xe/repoint.rs
  • drivers/src/xe/snapshot.rs
  • drivers/src/xe/watchdog.rs
  • drivers/src/xe_logic/cmdline.rs
  • drivers/src/xe_logic/cursor_config.rs
  • drivers/src/xe_logic/ddb.rs
  • drivers/src/xe_logic/ggtt_pte.rs
  • drivers/src/xe_logic/mod.rs
  • drivers/src/xe_logic/plane_config.rs
  • drivers/src/xe_logic/platform.rs
  • drivers/src/xe_logic/regs.rs
  • font/src/atlas.rs
  • font/src/bitmap.rs
  • font/src/cache.rs
  • font/src/lib.rs
  • font/src/metrics.rs
  • font/src/outline.rs
  • font/src/rasterizer.rs
  • font/src/ttf_parser.rs
  • fs/src/blockdev.rs
  • fs/src/cpio.rs
  • fs/src/devfs/mod.rs
  • fs/src/ext2/alloc.rs
  • fs/src/ext2/blockmap.rs
  • fs/src/ext2/cache.rs
  • fs/src/ext2/dir.rs
  • fs/src/ext2/file.rs
  • fs/src/ext2/inode.rs
  • fs/src/ext2/mod.rs
  • fs/src/ext2/ondisk.rs
  • fs/src/ext2/symlink.rs
  • fs/src/ext2/time.rs
  • fs/src/ext2_vfs.rs
  • fs/src/fileio/fdops.rs
  • fs/src/fileio/fdtable.rs
  • fs/src/fileio/mod.rs
  • fs/src/fileio/poll.rs
  • fs/src/pipe.rs
  • fs/src/pipe_file_ops.rs
  • fs/src/ramfs/mod.rs
  • fs/src/tests.rs
  • fs/src/verity.rs
  • fs/src/vfs/mount.rs
  • fs/src/vfs/ops.rs
  • fs/src/vfs/traits.rs
  • fs/src/vfs_file_ops.rs
  • gfx/src/blend.rs
  • gfx/src/canvas_ops.rs
  • gfx/src/draw_buffer.rs
  • gfx/src/render_surface.rs
  • hermetic/src/boot_ctx.rs
  • hermetic/src/lib.rs
  • hermetic/src/registry.rs
  • hermetic/src/stack_top.rs
  • hermetic/src/trait_def.rs
  • image/src/lib.rs
  • justfile
  • karch/src/lib.rs
  • kernel-services/src/clock.rs
  • kernel-services/src/kernel_vm_space.rs
  • kernel-services/src/ostd_backends/diagnostic_sink.rs
  • kernel-services/src/ostd_backends/local_tlb.rs
  • kernel-services/src/ostd_backends/preempt.rs
  • kernel-services/src/ostd_bridge.rs
  • kernel-services/src/ostd_bridge_tables.rs
  • kernel-services/src/platform.rs
  • kernel-services/src/syscall_services/keymap.rs
  • kernel-services/src/syscall_services/scanout.rs
  • kernel-services/src/syscall_services/video.rs
  • kernel/src/main.rs
  • keymap-core/src/keymap.rs
  • keymap-core/src/layout_table.rs
  • keymap-core/src/lib.rs
  • keymap-core/src/modifiers.rs
  • keymap-core/src/parse.rs
  • keymap-core/src/repeat.rs
  • keymap-core/src/scancode_set1.rs
  • keymap-core/src/sysrq.rs
  • ktesting/src/assertions.rs
  • ktesting/src/bootstrap_tests.rs
  • ktesting/src/capture.rs
  • ktesting/src/config.rs
  • ktesting/src/filter.rs
  • ktesting/src/fpu_tests.rs
  • ktesting/src/harness.rs
  • ktesting/src/kernel_phase_summary.rs
  • ktesting/src/ktap.rs
  • ktesting/src/lib.rs
  • ktesting/src/qemu_signal.rs
  • ktesting/src/registry.rs
  • ktesting/src/result.rs
  • ktesting/src/runner.rs
  • ktesting/src/xsave_tests.rs
  • ktesting/src/zz_lockdep_tests.rs
  • mm/src/aslr.rs
  • mm/src/cow.rs
  • mm/src/demand.rs
  • mm/src/elf.rs
  • mm/src/error.rs
  • mm/src/hhdm.rs
  • mm/src/io_mem_mapper_shim.rs
  • mm/src/kconsole.rs
  • mm/src/kernel_mappings.rs
  • mm/src/kernel_meta.rs
  • mm/src/lib.rs
  • mm/src/memfd.rs
  • mm/src/memory_init.rs
  • mm/src/memory_layout.rs
  • mm/src/memory_layout_defs.rs
  • mm/src/memory_reservations.rs
  • mm/src/mmio.rs
  • mm/src/mmu/asid.rs
  • mm/src/mmu/cr3.rs
  • mm/src/mmu/errata.rs
  • mm/src/mmu/kpti.rs
  • mm/src/mmu/luf.rs
  • mm/src/mmu/luf_hook.rs
  • mm/src/mmu/mod.rs
  • mm/src/mmu/quiesce.rs
  • mm/src/mmu/rar.rs
  • mm/src/mmu/shootdown.rs
  • mm/src/mmu/trampoline.s
  • mm/src/page_alloc/buddy.rs
  • mm/src/page_alloc/mod.rs
  • mm/src/page_alloc/pcp.rs
  • mm/src/page_fault.rs
  • mm/src/paging/mod.rs
  • mm/src/paging/page_table_defs.rs
  • mm/src/paging/tables.rs
  • mm/src/paging/walker.rs
  • mm/src/paging_defs.rs
  • mm/src/pat.rs
  • mm/src/pinned_user_buffer.rs
  • mm/src/process_vm.rs
  • mm/src/slab/allocator.rs
  • mm/src/slab/compat.rs
  • mm/src/slab/large.rs
  • mm/src/slab/magazine.rs
  • mm/src/slab/mod.rs
  • mm/src/slab/page.rs
  • mm/src/slab/poison.rs
  • mm/src/slab/stats.rs
  • mm/src/stack_region.rs
  • mm/src/stack_va.rs
  • mm/src/tests/kernel_mapping_tests.rs
  • mm/src/tests/mod.rs
  • mm/src/tests/quiesce_tests.rs
  • mm/src/tests/test_fixtures.rs
  • mm/src/tests/tests.rs
  • mm/src/tests/tests_cow_edge.rs
  • mm/src/tests/tests_demand.rs
  • mm/src/tests/tests_oom.rs
  • mm/src/tests/tests_quota_heap.rs
  • mm/src/tests/tests_quota_pages.rs
  • mm/src/tests/tests_reclaim.rs
  • mm/src/tests/tlb_tests.rs
  • mm/src/tlb.rs
  • mm/src/user_copy.rs
  • mm/src/user_io_buf.rs
  • mm/src/user_mappings.rs
  • mm/src/user_ptr.rs
  • mm/src/vma_region.rs
  • net-core/src/addr.rs
  • net-core/src/argv.rs
  • net-core/src/cidr.rs
  • net-core/src/columns.rs
  • net-core/src/ip_plan.rs
  • net-core/src/lib.rs
  • net-core/src/mac.rs
  • net-core/src/render.rs
  • net-core/src/ss_filter.rs
  • net/src/arp.rs
  • net/src/checksum.rs
  • net/src/clock.rs
  • net/src/connectivity.rs
  • net/src/dhcp/client.rs
  • net/src/dhcp/codec.rs
  • net/src/dhcp/mod.rs
  • net/src/dhcp/transport.rs
  • net/src/dns.rs
  • net/src/icmp.rs
  • net/src/iface.rs
  • net/src/iface_ctl.rs
  • net/src/ingress.rs
  • net/src/ipv4.rs
  • net/src/kconsole.rs
  • net/src/lib.rs
  • net/src/loopback.rs
  • net/src/napi.rs
  • net/src/napi_waker.rs
  • net/src/neighbor.rs
  • net/src/netdev.rs
  • net/src/netmon.rs
  • net/src/netmon_file_ops.rs
  • net/src/netseq.rs
  • net/src/packetbuf.rs
  • net/src/pool.rs
  • net/src/reassembly.rs
  • net/src/resolver.rs
  • net/src/route.rs
  • net/src/socket.rs
  • net/src/socket_file_ops.rs
  • net/src/tcp/actions.rs
  • net/src/tcp/buffer.rs
  • net/src/tcp/challenge_ack.rs
  • net/src/tcp/checksum.rs
  • net/src/tcp/cong.rs
  • net/src/tcp/header.rs
  • net/src/tcp/isn.rs
  • net/src/tcp/listener.rs
  • net/src/tcp/mod.rs
  • net/src/tcp/pcb/data.rs
  • net/src/tcp/pcb/listen.rs
  • net/src/tcp/pcb/mod.rs
  • net/src/tcp/pcb/syn_recv.rs
  • net/src/tcp/pcb/syn_sent.rs
  • net/src/tcp/pcb/time_wait.rs
  • net/src/tcp/reasm.rs
  • net/src/tcp/retx.rs
  • net/src/tcp/rtt.rs
  • net/src/tcp/segment.rs
  • net/src/tcp/seq.rs
  • net/src/tcp/table.rs
  • net/src/tcp/tuple.rs
  • net/src/tests/checksum_tests.rs
  • net/src/tests/connectivity_tests.rs
  • net/src/tests/dhcp_client_tests.rs
  • net/src/tests/dhcp_transport_tests.rs
  • net/src/tests/dns_tests.rs
  • net/src/tests/icmp_tests.rs
  • net/src/tests/iface_ctl_tests.rs
  • net/src/tests/iface_tests.rs
  • net/src/tests/ingress_tests.rs
  • net/src/tests/loopback_tests.rs
  • net/src/tests/mod.rs
  • net/src/tests/napi_tests.rs
  • net/src/tests/neighbor_tests.rs
  • net/src/tests/net_types_tests.rs
  • net/src/tests/netdev_tests.rs
  • net/src/tests/netmon_producer_tests.rs
  • net/src/tests/netmon_tests.rs
  • net/src/tests/packetbuf_tests.rs
  • net/src/tests/route_tests.rs
  • net/src/tests/socket_framework_tests.rs
  • net/src/tests/socket_option_tests.rs
  • net/src/tests/socket_tests.rs
  • net/src/tests/tcp_common.rs
  • net/src/tests/tcp_cong_cubic_tests.rs
  • net/src/tests/tcp_connid_generation_tests.rs
  • net/src/tests/tcp_data_tests.rs
  • net/src/tests/tcp_demux_concurrent_tests.rs
  • net/src/tests/tcp_keepalive_tests.rs
  • net/src/tests/tcp_live_tests.rs
  • net/src/tests/tcp_pcb_data_tests.rs
  • net/src/tests/tcp_pcb_listen_tests.rs
  • net/src/tests/tcp_pcb_syn_recv_tests.rs
  • net/src/tests/tcp_pcb_syn_sent_tests.rs
  • net/src/tests/tcp_pcb_time_wait_tests.rs
  • net/src/tests/tcp_reasm_tests.rs
  • net/src/tests/tcp_retx_tests.rs
  • net/src/tests/tcp_rst_validation_tests.rs
  • net/src/tests/tcp_rtt_tests.rs
  • net/src/tests/tcp_seq_tests.rs
  • net/src/tests/tcp_socket_tests.rs
  • net/src/tests/tcp_tests.rs
  • net/src/tests/tcp_timestamp_tests.rs
  • net/src/tests/timer_tests.rs
  • net/src/tests/udp_demux_tests.rs
  • net/src/tests/udp_socket_tests.rs
  • net/src/tests/xdp_tests.rs
  • net/src/timer.rs
  • net/src/types.rs
  • net/src/udp.rs
  • net/src/unix_socket/buffer.rs
  • net/src/unix_socket/handle.rs
  • net/src/unix_socket/mod.rs
  • net/src/unix_socket/pair.rs
  • net/src/unix_socket/slot.rs
  • net/src/unix_socket_file_ops.rs
  • net/src/xdp/mod.rs
  • net/src/xdp/packet_view.rs
  • pidfd/src/file_ops.rs
  • pidfd/src/lib.rs
  • ring/src/buffers.rs
  • ring/src/enter.rs
  • ring/src/file_ops.rs
  • ring/src/lib.rs
  • ring/src/net_glue.rs
  • ring/src/opcode.rs
  • ring/src/region.rs
  • ring/src/register.rs
  • ring/src/registry.rs
  • ring/src/ring_obj.rs
  • ring/src/tests.rs
  • sched/src/context_tests.rs
  • sched/src/fate_api.rs
  • sched/src/ffi_boundary.rs
  • sched/src/futex.rs
  • sched/src/kconsole.rs
  • sched/src/lib.rs
  • sched/src/lifecycle.rs
  • sched/src/per_cpu.rs
  • sched/src/quota_console.rs
  • sched/src/runtime.rs
  • sched/src/sched_tests.rs
  • sched/src/scheduler.rs
  • sched/src/sleep.rs
  • sched/src/task/mod.rs
  • sched/src/task/pending_spawn.rs
  • sched/src/task/task_cleanup_hooks.rs
  • sched/src/task/task_family.rs
  • sched/src/task/task_lifecycle.rs
  • sched/src/task/task_ops.rs
  • sched/src/task/task_quota.rs
  • sched/src/task/task_reclaim.rs
  • sched/src/task/task_session.rs
  • sched/src/task/task_state.rs
  • sched/src/task/task_stats.rs
  • sched/src/task/task_table.rs
  • sched/src/task/user_ctx_init.rs
  • sched/src/task_stack.rs
  • sched/src/task_struct.rs
  • sched/src/test_fixture.rs
  • sched/src/test_hermetic.rs
  • sched/src/trap.rs
  • sched/src/work_steal.rs
  • service-core/src/service_cell.rs
  • service-core/src/service_macro.rs
  • shell-core/src/lib.rs
  • shell-core/src/script.rs
  • signalfd/src/file_ops.rs
  • signalfd/src/lib.rs
  • signalfd/src/registry.rs
  • slibc/src/alloc/mod.rs
  • slibc/src/alloc/raw_buffer.rs
  • slibc/src/crt/mod.rs
  • slibc/src/env.rs
  • slibc/src/errno.rs
  • slibc/src/error.rs
  • slibc/src/ffi/shim.rs
  • slibc/src/ffi/syscalls.rs
  • slibc/src/io/misc.rs
  • slibc/src/io/poll.rs
  • slibc/src/io/shim.rs
  • slibc/src/lib.rs
  • slibc/src/mem/dlmalloc.rs
  • slibc/src/net/addr.rs
  • slibc/src/net/dns.rs
  • slibc/src/net/mod.rs
  • slibc/src/net/shim.rs
  • slibc/src/pal/mod.rs
  • slibc/src/pal/raw.rs
  • slibc/src/pal/slopos.rs
  • slibc/src/process/atexit.rs
  • slibc/src/process/mod.rs
  • slibc/src/process/rlimit.rs
  • slibc/src/process/shim.rs
  • slibc/src/process/tests.rs
  • slibc/src/process/wait.rs
  • slibc/src/signal/mod.rs
  • slibc/src/stdio/chars.rs
  • slibc/src/stdio/file.rs
  • slibc/src/stdio/lock.rs
  • slibc/src/stdio/mod.rs
  • slibc/src/stdio/printf.rs
  • slibc/src/stdio/registry.rs
  • slibc/src/stdio/scanf.rs
  • slibc/src/stdio/shim.rs
  • slibc/src/stdio/streams.rs
  • slibc/src/stdio/tests.rs
  • slibc/src/test_harness.rs
  • slibc/src/thread/create.rs
  • slibc/src/thread/keys.rs
  • slibc/src/thread/tcb.rs
  • slibc/src/thread/tls.rs
  • slibc/src/time/mod.rs
  • slibc/src/tty/mod.rs
  • slibc/std_pal/fd/slopos.rs
  • slibc/std_pal/fs/slopos.rs
  • slibc/std_pal/io_error/slopos.rs
  • slibc/std_pal/net/slopos.rs
  • slibc/std_pal/pal/slopos/futex.rs
  • slibc/std_pal/pal/slopos/mod.rs
  • slibc/std_pal/paths/slopos.rs
  • slibc/std_pal/pipe/slopos.rs
  • slibc/std_pal/random/slopos.rs
  • slibc/std_pal/thread/slopos.rs
  • slop-protocol/src/client.rs
  • slop-protocol/src/codec.rs
  • slop-protocol/src/connection.rs
  • slop-protocol/src/lib.rs
  • slop-protocol/src/server.rs
  • slop-protocol/src/types.rs
  • slopos-ostd-derive/src/lib.rs
  • slopos-ostd/build.rs
  • slopos-ostd/src/abi_pod.rs
  • slopos-ostd/src/abi_zeroable.rs
  • slopos-ostd/src/acpi/mod.rs
  • slopos-ostd/src/arch/x86_64/cpuid.rs
  • slopos-ostd/src/arch/x86_64/cr3.rs
  • slopos-ostd/src/arch/x86_64/exception.rs
  • slopos-ostd/src/arch/x86_64/gdt.rs
  • slopos-ostd/src/arch/x86_64/kernel_ptr.rs
  • slopos-ostd/src/arch/x86_64/linker.rs
  • slopos-ostd/src/arch/x86_64/mem_fence.rs
  • slopos-ostd/src/arch/x86_64/msr.rs
  • slopos-ostd/src/arch/x86_64/naked.rs
  • slopos-ostd/src/arch/x86_64/per_cpu_gdt.rs
  • slopos-ostd/src/arch/x86_64/safestack.rs
  • slopos-ostd/src/arch/x86_64/tsc.rs
  • slopos-ostd/src/atomic_bitmap.rs
  • slopos-ostd/src/bitmap.rs
  • slopos-ostd/src/boot/handoff/acpi.rs
  • slopos-ostd/src/boot/handoff/elf.rs
  • slopos-ostd/src/boot/handoff/framebuffer.rs
  • slopos-ostd/src/boot/handoff/memmap.rs
  • slopos-ostd/src/boot/handoff/mod.rs
  • slopos-ostd/src/boot/hhdm.rs
  • slopos-ostd/src/boot/mod.rs
  • slopos-ostd/src/boot/smp.rs
  • slopos-ostd/src/boot_info.rs
  • slopos-ostd/src/cpu/mod.rs
  • slopos-ostd/src/cpu/preempt.rs
  • slopos-ostd/src/cpu/x86_64/apic_msr.rs
  • slopos-ostd/src/cpu/x86_64/control_regs.rs
  • slopos-ostd/src/cpu/x86_64/core.rs
  • slopos-ostd/src/cpu/x86_64/interrupts.rs
  • slopos-ostd/src/cpu/x86_64/pcr.rs
  • slopos-ostd/src/cpu/x86_64/rdrand.rs
  • slopos-ostd/src/cpu/x86_64/security.rs
  • slopos-ostd/src/cpu/x86_64/sse.rs
  • slopos-ostd/src/cpu/x86_64/stack.rs
  • slopos-ostd/src/cpu/x86_64/tlb.rs
  • slopos-ostd/src/cpu/x86_64/xsave.rs
  • slopos-ostd/src/dev/devres.rs
  • slopos-ostd/src/dev/mod.rs
  • slopos-ostd/src/dma/mod.rs
  • slopos-ostd/src/dma/virtqueue.rs
  • slopos-ostd/src/early_console.rs
  • slopos-ostd/src/fblog.rs
  • slopos-ostd/src/ffi/mod.rs
  • slopos-ostd/src/ffi/registry.rs
  • slopos-ostd/src/handle.rs
  • slopos-ostd/src/io/mod.rs
  • slopos-ostd/src/io/pic.rs
  • slopos-ostd/src/io/pit.rs
  • slopos-ostd/src/io/port.rs
  • slopos-ostd/src/io/port_consts.rs
  • slopos-ostd/src/io/power.rs
  • slopos-ostd/src/io/ps2.rs
  • slopos-ostd/src/io/raw_port.rs
  • slopos-ostd/src/io/uart.rs
  • slopos-ostd/src/irq/asm/handlers.s
  • slopos-ostd/src/irq/idt.rs
  • slopos-ostd/src/irq/interrupt_frame.rs
  • slopos-ostd/src/irq/line.rs
  • slopos-ostd/src/irq/mod.rs
  • slopos-ostd/src/kconsole/config.rs
  • slopos-ostd/src/kconsole/mod.rs
  • slopos-ostd/src/kconsole/probe.rs
  • slopos-ostd/src/kdiag.rs
  • slopos-ostd/src/klog.rs
  • slopos-ostd/src/lib.rs
  • slopos-ostd/src/mm/dma.rs
  • slopos-ostd/src/mm/frame.rs
  • slopos-ostd/src/mm/frame_alloc.rs
  • slopos-ostd/src/mm/heap.rs
  • slopos-ostd/src/mm/hhdm_bytes.rs
  • slopos-ostd/src/mm/init.rs
  • slopos-ostd/src/mm/io_mem.rs
  • slopos-ostd/src/mm/page_property.rs
  • slopos-ostd/src/mm/page_size.rs
  • slopos-ostd/src/mm/page_table.rs
  • slopos-ostd/src/mm/phys.rs
  • slopos-ostd/src/mm/pod.rs
  • slopos-ostd/src/mm/reclaim.rs
  • slopos-ostd/src/mm/slab.rs
  • slopos-ostd/src/mm/tlb.rs
  • slopos-ostd/src/mm/uframe.rs
  • slopos-ostd/src/mm/vm_space.rs
  • slopos-ostd/src/mm/vmcursor.rs
  • slopos-ostd/src/numfmt.rs
  • slopos-ostd/src/panic.rs
  • slopos-ostd/src/panic_recovery.rs
  • slopos-ostd/src/pci/mod.rs
  • slopos-ostd/src/process/account.rs
  • slopos-ostd/src/process/mod.rs
  • slopos-ostd/src/process/quota/arena.rs
  • slopos-ostd/src/process/quota/axis.rs
  • slopos-ostd/src/process/quota/charged.rs
  • slopos-ostd/src/process/quota/mod.rs
  • slopos-ostd/src/process/quota/token.rs
  • slopos-ostd/src/process/registry.rs
  • slopos-ostd/src/ring_buffer.rs
  • slopos-ostd/src/stacktrace.rs
  • slopos-ostd/src/string.rs
  • slopos-ostd/src/sync/append_log.rs
  • slopos-ostd/src/sync/atomic_cell.rs
  • slopos-ostd/src/sync/bh.rs
  • slopos-ostd/src/sync/cpu_local.rs
  • slopos-ostd/src/sync/epoch.rs
  • slopos-ostd/src/sync/event_bus.rs
  • slopos-ostd/src/sync/init_flag.rs
  • slopos-ostd/src/sync/init_in_place.rs
  • slopos-ostd/src/sync/intrusive.rs
  • slopos-ostd/src/sync/intrusive_dlist.rs
  • slopos-ostd/src/sync/kernel_io_task.rs
  • slopos-ostd/src/sync/kernel_sync.rs
  • slopos-ostd/src/sync/lock_graph.rs
  • slopos-ostd/src/sync/lock_tracking.rs
  • slopos-ostd/src/sync/mod.rs
  • slopos-ostd/src/sync/mutex.rs
  • slopos-ostd/src/sync/once_lock.rs
  • slopos-ostd/src/sync/panic_recovery.rs
  • slopos-ostd/src/sync/per_cpu_slot.rs
  • slopos-ostd/src/sync/raw_link.rs
  • slopos-ostd/src/sync/raw_table.rs
  • slopos-ostd/src/sync/rcu.rs
  • slopos-ostd/src/sync/seqlock.rs
  • slopos-ostd/src/sync/spin.rs
  • slopos-ostd/src/sync/wait_node.rs
  • slopos-ostd/src/sync/wait_queue.rs
  • slopos-ostd/src/task/abi.rs
  • slopos-ostd/src/task/addr.rs
  • slopos-ostd/src/task/bootstrap.rs
  • slopos-ostd/src/task/borrowed.rs
  • slopos-ostd/src/task/cell.rs
  • slopos-ostd/src/task/diag.rs
  • slopos-ostd/src/task/drop_context.rs
  • slopos-ostd/src/task/exit_info.rs
  • slopos-ostd/src/task/fpu.rs
  • slopos-ostd/src/task/fpu_owner.rs
  • slopos-ostd/src/task/handles.rs
  • slopos-ostd/src/task/job_control.rs
  • slopos-ostd/src/task/kernel_task.rs
  • slopos-ostd/src/task/link_roles.rs
  • slopos-ostd/src/task/mod.rs
  • slopos-ostd/src/task/ops.rs
  • slopos-ostd/src/task/pcr_ty.rs
  • slopos-ostd/src/task/placement.rs
  • slopos-ostd/src/task/spawner.rs
  • slopos-ostd/src/task/state.rs
  • slopos-ostd/src/task/switch.rs
  • slopos-ostd/src/task/task.rs
  • slopos-ostd/src/task/test_reports.rs
  • slopos-ostd/src/test_support/arch.rs
  • slopos-ostd/src/test_support/cpu_state.rs
  • slopos-ostd/src/test_support/gdt.rs
  • slopos-ostd/src/test_support/global_lock.rs
  • slopos-ostd/src/test_support/hermetic/macros.rs
  • slopos-ostd/src/test_support/hermetic/mod.rs
  • slopos-ostd/src/test_support/hermetic/scope.rs
  • slopos-ostd/src/test_support/hermetic/trait_def.rs
  • slopos-ostd/src/test_support/hermetic/vtable.rs
  • slopos-ostd/src/test_support/mod.rs
  • slopos-ostd/src/test_support/page_io.rs
  • slopos-ostd/src/test_support/pcr.rs
  • slopos-ostd/src/test_support/serial.rs
  • slopos-ostd/src/test_support/unwind_index.rs
  • slopos-ostd/src/tx_reclaim.rs
  • slopos-ostd/src/uefi.rs
  • slopos-ostd/src/unwind.rs
  • slopos-ostd/src/user/asm/user_return.s
  • slopos-ostd/src/user/context.rs
  • slopos-ostd/src/user/copy.rs
  • slopos-ostd/src/user/mode.rs
  • slopos-ostd/src/user/ptr.rs
  • slopos-ostd/src/util/byte_view.rs
  • slopos-ostd/src/util/callback_ctx.rs
  • slopos-ostd/src/util/cstr.rs
  • slopos-ostd/src/util/fn_ptr.rs
  • slopos-ostd/src/util/mod.rs
  • slopos-ostd/src/util/packed_view.rs
  • slopos-ostd/src/util/ptr_buf.rs
  • slopos-ostd/src/watchdog.rs
  • slopos-ostd/src/wl_currency.rs
  • slopos-ostd/tests/acpi_table.rs
  • slopos-ostd/tests/boot_handoff.rs
  • slopos-ostd/tests/dma.rs
  • slopos-ostd/tests/early_console.rs
  • slopos-ostd/tests/ecam.rs
  • slopos-ostd/tests/extern_block.rs
  • slopos-ostd/tests/frame_type_tag.rs
  • slopos-ostd/tests/from_raw_ptr.rs
  • slopos-ostd/tests/hermetic_macro.rs
  • slopos-ostd/tests/intrusive_dlist.rs
  • slopos-ostd/tests/intrusive_list.rs
  • slopos-ostd/tests/io_mem.rs
  • slopos-ostd/tests/io_port.rs
  • slopos-ostd/tests/irq_line.rs
  • slopos-ostd/tests/karc.rs
  • slopos-ostd/tests/karc_deferred.rs
  • slopos-ostd/tests/kernel_sync.rs
  • slopos-ostd/tests/linker_symbols.rs
  • slopos-ostd/tests/lock_graph.rs
  • slopos-ostd/tests/panic_recovery.rs
  • slopos-ostd/tests/preempt.rs
  • slopos-ostd/tests/rcu_arc_slot.rs
  • slopos-ostd/tests/safestack_symbol.rs
  • slopos-ostd/tests/task_cells.rs
  • slopos-ostd/tests/task_existence.rs
  • slopos-ostd/tests/uframe_round_trip.rs
  • slopos-ostd/tests/user_mode.rs
  • slopos-ostd/tests/virtqueue.rs
  • slopos-ostd/tests/vm_space.rs
  • slopos-ostd/tests/vmcursor_round_trip.rs
  • slopos-ostd/tests/wait_chain.rs
  • slopos-ostd/tests/wait_queue.rs
  • slopos-ostd/tests/watchdog.rs
  • slopos-ostd/tests/zeroable_derive.rs
  • slopos-rt/src/lib.rs
  • slopos-rt/src/ring.rs
  • slopos-rt/src/slopfut/cross_core.rs
  • slopos-rt/src/slopfut/executor.rs
  • slopos-rt/src/slopfut/io.rs
  • slopos-rt/src/slopfut/mod.rs
  • slopos-rt/src/slopfut/op.rs
  • slopos-rt/src/slopfut/process.rs
  • slopos-rt/src/slopfut/reactor.rs
  • slopos-rt/src/slopfut/select.rs
  • slopos-rt/src/slopfut/signal.rs
  • slopos-rt/src/slopfut/sync.rs
  • slopos-rt/src/slopfut/time.rs
  • slopos-rt/src/slopfut/waker.rs
  • slopos-rt/src/sys/memory.rs
  • slopos-rt/src/sys/mod.rs
  • slopos-rt/src/sys/pidfd.rs
  • slopos-rt/src/sys/process.rs
  • slopos-rt/src/sys/ring.rs
  • slopos-rt/src/sys/signalfd.rs
  • terminal-core/src/damage.rs
  • terminal-core/src/grid.rs
  • terminal-core/src/input.rs
  • terminal-core/src/lib.rs
  • tools/run_tests/cmdline.go
  • tools/run_tests/cmdline_test.go
  • tools/run_tests/colour.go
  • tools/run_tests/driver.go
  • tools/run_tests/jsonl.go
  • tools/run_tests/ktap_re.go
  • tools/run_tests/main.go
  • tools/run_tests/parser.go
  • tools/run_tests/parser_test.go
  • tools/run_tests/recorder.go
  • tools/run_tests/renderer_bar.go
  • tools/run_tests/renderer_raw.go
  • tools/run_tests/renderer_test.go
  • tools/run_tests/verdict.go
  • tools/run_tests/verdict_test.go
  • userland/src/apps/compositor/decorations.rs
  • userland/src/apps/compositor/dock.rs
  • userland/src/apps/compositor/hover.rs
  • userland/src/apps/compositor/input.rs
  • userland/src/apps/compositor/menu_bar.rs
  • userland/src/apps/compositor/mod.rs
  • userland/src/apps/compositor/net_glyph.rs
  • userland/src/apps/compositor/output.rs
  • userland/src/apps/compositor/popover.rs
  • userland/src/apps/compositor/protocol.rs
  • userland/src/apps/compositor/region.rs
  • userland/src/apps/compositor/renderer.rs
  • userland/src/apps/compositor/status_item.rs
  • userland/src/apps/compositor/surface_cache.rs
  • userland/src/apps/curl.rs
  • userland/src/apps/file_manager.rs
  • userland/src/apps/init_process.rs
  • userland/src/apps/ip/addr.rs
  • userland/src/apps/ip/dhcp.rs
  • userland/src/apps/ip/dns.rs
  • userland/src/apps/ip/help.rs
  • userland/src/apps/ip/link.rs
  • userland/src/apps/ip/mod.rs
  • userland/src/apps/ip/monitor.rs
  • userland/src/apps/ip/neigh.rs
  • userland/src/apps/ip/net.rs
  • userland/src/apps/ip/route.rs
  • userland/src/apps/ip/status.rs
  • userland/src/apps/keymap.rs
  • userland/src/apps/nc/mod.rs
  • userland/src/apps/nc/ring_io.rs
  • userland/src/apps/nc/tcp.rs
  • userland/src/apps/nc/udp.rs
  • userland/src/apps/nmap.rs
  • userland/src/apps/ping.rs
  • userland/src/apps/shell/args.rs
  • userland/src/apps/shell/buffers.rs
  • userland/src/apps/shell/builtins/fs.rs
  • userland/src/apps/shell/builtins/mod.rs
  • userland/src/apps/shell/builtins/process.rs
  • userland/src/apps/shell/builtins/system.rs
  • userland/src/apps/shell/builtins/utils.rs
  • userland/src/apps/shell/completion.rs
  • userland/src/apps/shell/display.rs
  • userland/src/apps/shell/exec.rs
  • userland/src/apps/shell/input.rs
  • userland/src/apps/shell/interrupt.rs
  • userland/src/apps/shell/mod.rs
  • userland/src/apps/shell/parser.rs
  • userland/src/apps/shell/script.rs
  • userland/src/apps/ss.rs
  • userland/src/apps/sysmon/format.rs
  • userland/src/apps/sysmon/mod.rs
  • userland/src/apps/sysmon/selection.rs
  • userland/src/apps/sysmon/state.rs
  • userland/src/apps/terminal/grid.rs
  • userland/src/apps/terminal/input.rs
  • userland/src/apps/terminal/mod.rs
  • userland/src/apps/terminal/render.rs
  • userland/src/apps/terminal/surface.rs
  • userland/src/bin/oops_smoke.rs
  • userland/src/bin/tests/appkit_test.rs
  • userland/src/bin/tests/cd_test.rs
  • userland/src/bin/tests/clipboard_test.rs
  • userland/src/bin/tests/ctrlc_flood_test.rs
  • userland/src/bin/tests/curl_e2e_test.rs
  • userland/src/bin/tests/curl_recv_repro_test.rs
  • userland/src/bin/tests/fork_test.rs
  • userland/src/bin/tests/heap_allocator_test.rs
  • userland/src/bin/tests/io_capture_test.rs
  • userland/src/bin/tests/ip_e2e_test.rs
  • userland/src/bin/tests/keymap_test.rs
  • userland/src/bin/tests/mm_stress_test.rs
  • userland/src/bin/tests/multishot_test.rs
  • userland/src/bin/tests/percore_reactor_test.rs
  • userland/src/bin/tests/pidfd_e2e_test.rs
  • userland/src/bin/tests/pty_flow_test.rs
  • userland/src/bin/tests/ring_test.rs
  • userland/src/bin/tests/rlimit_test.rs
  • userland/src/bin/tests/session_smoke_test.rs
  • userland/src/bin/tests/shell_script_test.rs
  • userland/src/bin/tests/signal_handler_test.rs
  • userland/src/bin/tests/signalfd_test.rs
  • userland/src/bin/tests/sigwinch_default_test.rs
  • userland/src/bin/tests/slopfut_test.rs
  • userland/src/bin/tests/spawn_privilege_test.rs
  • userland/src/bin/tests/spin_signal_test.rs
  • userland/src/bin/tests/stdio_stream_test.rs
  • userland/src/bin/tests/sysmon_selection_test.rs
  • userland/src/bin/tests/terminal_grid_test.rs
  • userland/src/bin/tests/tls_independence_test.rs
  • userland/src/gfx/font.rs
  • userland/src/gfx/mod.rs
  • userland/src/keymap.rs
  • userland/src/lib.rs
  • userland/src/net.rs
  • userland/src/net_query.rs
  • userland/src/program_registry.rs
  • userland/src/readiness.rs
  • userland/src/syscall/core.rs
  • userland/src/syscall/fs.rs
  • userland/src/syscall/input.rs
  • userland/src/syscall/keymap.rs
  • userland/src/syscall/memory.rs
  • userland/src/syscall/mod.rs
  • userland/src/syscall/net.rs
  • userland/src/syscall/numbers.rs
  • userland/src/syscall/pidfd.rs
  • userland/src/syscall/process.rs
  • userland/src/syscall/ring.rs
  • userland/src/syscall/signalfd.rs
  • userland/src/syscall/window.rs
  • userland/src/syscall/wrappers/memfd_buf.rs
  • userland/src/theme.rs
  • verification/proofs/frame_refcount.rs
  • verification/proofs/resource_ledger.rs
  • verification/proofs/ring_bufpool.rs
  • verification/proofs/ring_cursor.rs
  • verification/proofs/ring_layout.rs
  • verification/proofs/slab_lifetime.rs
  • verification/proofs/task_ownership.rs
  • verification/proofs/tcp_zc_pin.rs
  • verification/proofs/vm_space_cursor.rs
  • verification/proofs/vmcursor.rs
  • verification/src/lib.rs
  • video/src/fblog.rs
  • video/src/framebuffer.rs
  • video/src/graphics.rs
  • video/src/kernel_font.rs
  • video/src/lib.rs
  • video/src/panic_screen.rs
  • video/src/roulette_core.rs
  • video/src/splash.rs
  • vt/src/lib.rs
  • vt/src/tests.rs
  • windowing/src/app.rs
  • windowing/src/connection.rs
  • windowing/src/event.rs
  • windowing/src/lib.rs
  • windowing/src/memfd_buf.rs
  • windowing/src/soft_surface.rs
  • windowing/src/surface.rs
  • windowing/src/sys.rs
  • windowing/src/window.rs

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@nil0ft
nil0ft merged commit 22fa5d9 into develop Aug 18, 2026
6 checks passed
@nil0ft
nil0ft deleted the claude/codebase-comment-cleanup-0kefy6 branch August 18, 2026 13:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants