an-owl

Results 3 issues of an-owl

Testing the UEFI boot on my Dell latitude E5510 (firmware A07) I discovered that bootloader will always triple fault, but not while booting with BIOS. After some testing I discovered...

i know its a common issue but I'm stumped. as far as i know i have followed every step correctly, the one think of note is that during the troubleshooting...

`RwLock::try_upgradeable_read()` is ``` pub fn try_upgradeable_read(&self) -> Option { if self.lock.fetch_or(UPGRADED, Ordering::Acquire) & (WRITER | UPGRADED) == 0 { Some(RwLockUpgradableGuard { phantom: PhantomData, inner: self, data: unsafe { &*self.data.get() },...