x86_64 icon indicating copy to clipboard operation
x86_64 copied to clipboard

Library to program x86_64 hardware.

Results 49 x86_64 issues
Sort by recently updated
recently updated
newest added

Hi guys, first of all thanks for the great work, I'm maintaining a 32bit (aka `i386`, aka `IA-32`, aka `protected mode`) fork of this library my own purposes. It just...

feature request

I'm working on a KVM library and I find myself reimplementing most of the types from this crate. I can't use this crate, however, because of your (legitimate) need for...

feature request

As mentioned in another pull request, the form for this function was preferred over the other implementation. #406

waiting-on-author

Should there be a common abstraction? Some way to traverse the two formats of XSAVE data? (This issue was split out from https://github.com/rust-osdev/x86_64/issues/262#issue-911312861, which will be closed once #446 is...

I'm trying to mimic Linux kernel behavior to shift the physical offset to start from 0xffff888000000000. However I'm trying to do this without the OS knowing this proactively (I have...

Implements the following conversions: - `TryFrom` for `VirtAddr` and `PhysAddr` - `TryFrom` for `VirtAddr` and `PhysAddr` - `From` for `VirtAddr` and `PhysAddr` - `TryFrom` for `VirtAddr` - `TryFrom` for `VirtAddr`...

waiting-on-author

PML5 is an Intel extension to increase addressable space from 256TB to 128PB (see [wikipedia](https://en.wikipedia.org/wiki/Intel_5-level_paging)). I admit it is a niche use case 🙂 But I was still wondering if...

I'm trying to implement multitasking in user mode with the following setup: - Each task has a user-mode and kernel-mode stack - The kernel-mode stack pointer is placed in the...

The current API of `RecursivePageTable`, `OffsetPageTable`, and `MappedPageTable` encourages the creation of `&mut PageTable` references to the active page table hierarchy. This might be problematic because the page tables are...