lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 10 Jun 2021 08:51:28 +0900
From:   Austin Kim <austinkernel.kim@...il.com>
To:     Sean Quinn <spq@...cla.edu>
Cc:     linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: Reserving memory

Hello,

2021년 6월 9일 (수) 오후 5:33, Sean Quinn <spq@...cla.edu>님이 작성:
>
> Hi,
>
> Kernel newb here, sorry if this is could be sent to a more suitable list.
>
> I have an embedded project using a Zynq based SoM (Enclustra
> MA-ZX2-10-2I-D9 SOM). We have a device using a DMA that writes data
> into system SDRAM shared by the processing system/OS.
>
> [..]
> 8<--- cut here ---
> Unable to handle kernel paging request at virtual address deafe000

It seems that void *fdt contains deafe000, which is not handled by mmu.

https://elixir.bootlin.com/linux/v5.4.124/source/scripts/dtc/libfdt/fdt.c
int fdt_check_header(const void *fdt)
{
size_t hdrsize;

if (fdt_magic(fdt) != FDT_MAGIC)  //<<-- exception point
return -FDT_ERR_BADMAGIC;

Powered by blists - more mailing lists