[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191214211725.GG140998@rani.riverdale.lan>
Date: Sat, 14 Dec 2019 16:17:25 -0500
From: Arvind Sankar <nivedita@...m.mit.edu>
To: Ard Biesheuvel <ard.biesheuvel@...aro.org>
Cc: Arvind Sankar <nivedita@...m.mit.edu>,
Ard Biesheuvel <ardb@...nel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
linux-efi <linux-efi@...r.kernel.org>,
Hans de Goede <hdegoede@...hat.com>,
Matthew Garrett <matthewgarrett@...gle.com>,
Ingo Molnar <mingo@...nel.org>,
Andy Lutomirski <luto@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 05/10] efi/libstub: distinguish between native/mixed not
32/64 bit
On Sat, Dec 14, 2019 at 08:27:50PM +0000, Ard Biesheuvel wrote:
> On Sat, 14 Dec 2019 at 21:13, Arvind Sankar <nivedita@...m.mit.edu> wrote:
> >
> > On Sat, Dec 14, 2019 at 07:54:25PM +0000, Ard Biesheuvel wrote:
> > > On Sat, 14 Dec 2019 at 20:49, Arvind Sankar <nivedita@...m.mit.edu> wrote:
> > > >
> > > > On Sat, Dec 14, 2019 at 02:46:27PM -0500, Arvind Sankar wrote:
> > > > > On Sat, Dec 14, 2019 at 06:57:30PM +0100, Ard Biesheuvel wrote:
> > > > > > +
> > > > > > +#define efi_table_attr(table, attr, instance) ({ \
> > > > > > + __typeof__(((table##_t *)0)->attr) __ret; \
> > > > > > + if (efi_is_native()) { \
> > > > > > + __ret = ((table##_t *)instance)->attr; \
> > > > > > + } else { \
> > > > > > + __typeof__(((table##_32_t *)0)->attr) at; \
> > > > > > + at = (((table##_32_t *)(unsigned long)instance)->attr); \
> > > > > > + __ret = (__typeof__(__ret))(unsigned long)at; \
> > > > > > + } \
> > > > > > + __ret; \
> > > > > > +})
> > > > >
> Yes. I'm open to suggestions on how to improve this, but mixed mode is
> somewhat of a maintenance burden, so if new future functionality needs
> to leave mixed mode behind, I'm not too bothered.
>
Maybe just do
if (sizeof(at) < sizeof(__ret))
__ret = (__typeof__(__ret))(uintptr_t)at;
else
__ret = (__typeof__(__ret))at;
That should cover most of the cases.
Powered by blists - more mailing lists