Re: BTF_KIND_FWD enums

2020-07-29 Thread Giuliano Procida
Hi. On Wed, 29 Jul 2020 at 08:09, Yonghong Song wrote: > > > > On 7/28/20 1:56 PM, Giuliano Procida wrote: > > Hi. > > > > Re: > > https://github.com/torvalds/linux/commit/9d5f9f701b1891466fb3dbb1806ad97716f95cc3 > > > > Both GCC and LLVM su

BTF_KIND_FWD enums

2020-07-28 Thread Giuliano Procida
Hi. Re: https://github.com/torvalds/linux/commit/9d5f9f701b1891466fb3dbb1806ad97716f95cc3 Both GCC and LLVM support forward-declared (a.k.a. incomplete) enums as a language extension - https://gcc.gnu.org/onlinedocs/gcc/Incomplete-Enums.html. (C++11 has a different notion of incomplete enum typ

Re: [PATCH x86 for review II] [26/39] i386: fix 32-bit ioctls on x64_32

2007-02-12 Thread Giuliano Procida
This is a nicer version of the MTRR compatibilty ioctl patch, compiles smaller and also tested. Signed-off-by: Giuliano Procida <[EMAIL PROTECTED]> --- linux-source-2.6.19.1.orig/arch/i386/kernel/cpu/mtrr/if.c 2006-12-11 19:32:53.0 + +++ linux-source-2.6.19.1/arch/i386/kern

Re: [PATCH]: MTRR: fix 32-bit ioctls on x64_32

2007-01-23 Thread Giuliano Procida
atcher. Signed-off-by: Giuliano Procida <[EMAIL PROTECTED]> Giuliano. --- linux-source-2.6.19.1.orig/arch/i386/kernel/cpu/mtrr/if.c 2006-12-11 19:32:53.0 + +++ linux-source-2.6.19.1/arch/i386/kernel/cpu/mtrr/if.c2007-01-22 23:34:48.0 + @@ -154,150 +154,166 @

[PATCH]: MTRR: cosmetic fixes

2007-01-16 Thread Giuliano Procida
Subject: [PATCH]: cosmetic fixes [MTRR 2.6.19.1]: cosmetic fixes Signed-off-by: Giuliano Procida <[EMAIL PROTECTED]> --- Fixed incorrect (though identical) types in struct mtrr_gentry32 and tided some badly-indented comments. --- linux-source-2.6.19.1.orig/include/asm-x86_64/

Re: [PATCH]: MTRR: fix 32-bit ioctls on x64_32

2007-01-16 Thread Giuliano Procida
Hi. On 16/01/07, Mikael Pettersson <[EMAIL PROTECTED]> wrote: On Tue, 16 Jan 2007 08:14:30 +, Giuliano Procida wrote: These #ifdefs are too ugly. Agreed that the #ifdefs are rather ugly, but they were the smallest change. Whoever wrote the original compat changes was relying on t

[PATCH]: MTRR: fix 32-bit ioctls on x64_32

2007-01-16 Thread Giuliano Procida
[MTRR] fix 32-bit ioctls on x64_32 Signed-off-by: Giuliano Procida <[EMAIL PROTECTED]> --- Fixed incomplete support for 32-bit compatibility ioctls in 2.6.19.1. They were unhandled in one of three case-statements. Testing using X server before and after change. --- linux-source-2.6.19.