[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v5 2/2] efi: Free malloc regions on exit
From: |
Daniel Kiper |
Subject: |
Re: [PATCH v5 2/2] efi: Free malloc regions on exit |
Date: |
Thu, 31 Aug 2017 16:26:46 +0200 |
User-agent: |
Mutt/1.3.28i |
On Wed, Aug 30, 2017 at 02:03:52PM +0100, Leif Lindholm wrote:
> On Wed, Aug 30, 2017 at 02:11:59PM +0200, Daniel Kiper wrote:
> > On Tue, Aug 29, 2017 at 09:26:48PM +0200, Alexander Graf wrote:
> > > +{
> > > + grub_efi_boot_services_t *b;
> > > + struct efi_allocation *alloc;
> > > + grub_efi_status_t status;
> > > +
> > > + b = grub_efi_system_table->boot_services;
> > > + status = efi_call_3 (b->allocate_pool, GRUB_EFI_LOADER_DATA,
> > > + sizeof(*alloc), (void**)&alloc);
> > > + if (status == GRUB_EFI_SUCCESS)
> > > + {
> > > + alloc->next = efi_allocated_memory;
> > > + alloc->start_addr = address;
> > > + alloc->pages = pages;
> > > + efi_allocated_memory = alloc;
> > > + }
> > > + else
> > > + grub_printf ("Could not malloc memory to remember EFI allocation. "
> > > + "Exiting grub2 won't free all memory.\n");
> >
> > s/grub2/GRUB2/
>
> Well, GRUB. Grub2 is a distro-ism.
> We shouldn't have to update individual message strings when we bump
> revisions.
I am OK with GRUB too.
Daniel
[PATCH v5 1/2] efi: Move grub_reboot() into kernel, Alexander Graf, 2017/08/29
Re: [PATCH v5 0/2] efi: Free memory on exit, Daniel Kiper, 2017/08/29