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:	Wed, 12 Jun 2013 10:21:46 -0700
From:	Stephen Boyd <sboyd@...eaurora.org>
To:	Rob Herring <robherring2@...il.com>
Cc:	Russell King <linux@....linux.org.uk>,
	linux-arm-msm <linux-arm-msm@...r.kernel.org>,
	Rob Herring <rob.herring@...xeda.com>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	"linux-arm-kernel@...ts.infradead.org" 
	<linux-arm-kernel@...ts.infradead.org>,
	Stephen Warren <swarren@...dia.com>
Subject: Re: [PATCH] ARM: mmu: Add debug_ll_io_init() mappings to early
 mappings

On 06/11, Rob Herring wrote:
> On Tue, Jun 11, 2013 at 8:30 PM, Stephen Boyd <sboyd@...eaurora.org> wrote:
> 
> > diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c
> > index e0d8565..04fe160 100644
> > --- a/arch/arm/mm/mmu.c
> > +++ b/arch/arm/mm/mmu.c
> > @@ -938,8 +938,12 @@ static void __init pci_reserve_io(void)
> >  #ifdef CONFIG_DEBUG_LL
> >  void __init debug_ll_io_init(void)
> >  {
> > +       struct vm_struct *vm;
> > +       struct static_vm *svm;
> >         struct map_desc map;
> >
> > +       svm = early_alloc_aligned(sizeof(*svm), __alignof__(*svm));
> > +
> >         debug_ll_addr(&map.pfn, &map.virtual);
> >         if (!map.pfn || !map.virtual)
> >                 return;
> > @@ -948,6 +952,15 @@ void __init debug_ll_io_init(void)
> >         map.length = PAGE_SIZE;
> >         map.type = MT_DEVICE;
> >         create_mapping(&map);
> > +
> > +       vm = &svm->vm;
> > +       vm->addr = (void *)map.virtual;
> > +       vm->size = map.length;
> > +       vm->phys_addr = __pfn_to_phys(map.pfn);
> > +       vm->flags = VM_IOREMAP | VM_ARM_STATIC_MAPPING;
> > +       vm->flags |= VM_ARM_MTYPE(map.type);
> > +       vm->caller = debug_ll_io_init;
> > +       add_static_vm_early(svm);
> 
> Can you use vm_reserve_area_early here or perhaps just call
> iotable_init instead of create_mapping directly? I don't recall if
> there was some reason I didn't do that.
> 

I had iotable_init() before but I thought it was better to have
the ->caller argument say debug_ll_io_init() instead of
iotable_init(). Shall I extract out the similar code?

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
--
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