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] [day] [month] [year] [list]
Date:	Thu, 14 Sep 2006 17:03:50 -0700
From:	keith mannthey <kmannth@...ibm.com>
To:	Vivek goyal <vgoyal@...ibm.com>
Cc:	dave hansen <haveblue@...ibm.com>,
	lkml <linux-kernel@...r.kernel.org>, ebiederm@...ssion.com,
	andrew <akpm@...l.org>
Subject: Re: [Bug] 2.6.18-rc6-mm2 i386 trouble finding RSDT in
	get_memcfg_from_srat

On Thu, 2006-09-14 at 19:59 -0400, Vivek Goyal wrote:
> On Thu, Sep 14, 2006 at 04:43:33PM -0700, keith mannthey wrote:
> > On Thu, 2006-09-14 at 16:21 -0700, Dave Hansen wrote:
> > > On Thu, 2006-09-14 at 19:04 -0400, Vivek Goyal wrote:
> > > > I think I know what is going on wrong here. boot_ioremap() is assuming 
> > > > that only first 8MB of physical memory is being mapped and while
> > > > calculating the index into page table (boot_pte_index) we will truncate
> > > > any higher address bits. 
> > > 
> > > Vivek, are those pte pages still all contiguous?
> > > 
> > > Yeah, that's probably it.  Keith, I'm trying to think of reasons why we
> > > need the mask here:
> > > 
> > > #define boot_pte_index(address) \
> > >              (((address) >> PAGE_SHIFT) & (BOOT_PTE_PTRS - 1))
> > > 
> > > and I can't think of any other than just masking out the top of the
> > > virtual address.  You could do this a bunch of other ways, like __pa().
> > > 
> > > This might just work:
> > > 
> > > static unsigned long boot_pte_index(unsigned long vaddr)
> > > {
> > > 	return __pa(vaddr) >> PAGE_SHIFT;
> > > }
> > With 
> > CONFIG_KEXEC=y
> > CONFIG_CRASH_DUMP=y
> > CONFIG_PHYSICAL_START=0x1000000
> > and the above __pa(vaddr) >> PAGE_SHIFT changed things worked for me but
> > I am still confused as to why the pte we set is c1686f6c and we flush
> > and return c13db000. 
> 
> I think c13db000 is the virtual address of symbol boot_ioremap_space,
> and we are remapping this virtual address to physical addres eff9c063,
> that's why we flush tlb for this virtual address.
> 
> I guess c1686f6c is virtual address of PTE (somewhere between pg0 to pg5).
> It is independent of actual virtual address (boot_ioremap_space) being
> remapped.  

Yup thanks.

Dave do you want to send out a patch?

Thanks,
  Keith 


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ