lkml.org 
[lkml]   [2016]   [May]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH 1/2] Create UV efi_call macros
From
On 12 May 2016 at 08:46, Ingo Molnar <mingo@kernel.org> wrote:
>
> * Alex Thorlton <athorlton@sgi.com> wrote:
>
>> +#define efi_call_virt(f, args...) \
>> +({ \
>> + efi_status_t __s; \
>> + unsigned long flags; \
>> + arch_efi_call_virt_setup(); \
>> + local_save_flags(flags); \
>> + __s = arch_efi_call_virt(f, args); \
>> + efi_call_virt_check_flags(flags, __stringify(f)); \
>> + arch_efi_call_virt_teardown(); \
>> + __s; \
>> +})
>> +
>> +#define __efi_call_virt(f, args...) \
>> +({ \
>> + unsigned long flags; \
>> + arch_efi_call_virt_setup(); \
>> + local_save_flags(flags); \
>> + arch_efi_call_virt(f, args); \
>> + efi_call_virt_check_flags(flags, __stringify(f)); \
>> + arch_efi_call_virt_teardown(); \
>> +})
>> +
>> +#define uv_call_virt(f, args...) \
>> +({ \
>> + efi_status_t __s; \
>> + unsigned long flags; \
>> + arch_efi_call_virt_setup(); \
>> + local_save_flags(flags); \
>> + __s = uv_efi_call_virt(f, args); \
>> + efi_call_virt_check_flags(flags, __stringify(f)); \
>> + arch_efi_call_virt_teardown(); \
>> + __s; \
>> +})
>
> Btw., a very (very!) small stylistic nit that caught my eyes, and I realize that
> you just moved code, but could you please improve these macros a bit and make it
> look like regular kernel code? I.e. something like:
>
> #define efi_call_virt(f, args...) \
> ({ \
> efi_status_t __s; \
> unsigned long flags; \
> \
> arch_efi_call_virt_setup(); \
> \
> local_save_flags(flags); \
> __s = arch_efi_call_virt(f, args); \
> efi_call_virt_check_flags(flags, __stringify(f)); \
> arch_efi_call_virt_teardown(); \
> \
> __s; \
> })
>
> This delineates the various blocks of code: variables, setup, the saving/calling
> block plus the return code.
>
> (Assuming the EFI folks like the whole approach.)
>

Fine by me, although having a newline after arch_efi_call_virt_setup()
but not before arch_efi_call_virt_teardown() seems rather arbitrary

--
Ard.

\
 
 \ /
  Last update: 2016-05-12 09:41    [W:0.073 / U:0.040 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site