Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Julien Grall
On 15/04/2021 15:28, Jan Beulich wrote: On 15.04.2021 16:24, Julien Grall wrote: On 15/04/2021 15:22, Jan Beulich wrote: On 15.04.2021 16:18, Julien Grall wrote: On 15/04/2021 15:16, Jan Beulich wrote: On 15.04.2021 13:58, Julien Grall wrote: On 26/01/2021 09:52, Jan Beulich wrote: -

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Jan Beulich
On 15.04.2021 16:24, Julien Grall wrote: > > > On 15/04/2021 15:22, Jan Beulich wrote: >> On 15.04.2021 16:18, Julien Grall wrote: >>> >>> >>> On 15/04/2021 15:16, Jan Beulich wrote: On 15.04.2021 13:58, Julien Grall wrote: > On 26/01/2021 09:52, Jan Beulich wrote: >> --- a/xen/commo

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Julien Grall
On 15/04/2021 15:22, Jan Beulich wrote: On 15.04.2021 16:18, Julien Grall wrote: On 15/04/2021 15:16, Jan Beulich wrote: On 15.04.2021 13:58, Julien Grall wrote: On 26/01/2021 09:52, Jan Beulich wrote: --- a/xen/common/decompress.h +++ b/xen/common/decompress.h @@ -9,7 +9,6 @@ #

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Jan Beulich
On 15.04.2021 16:18, Julien Grall wrote: > > > On 15/04/2021 15:16, Jan Beulich wrote: >> On 15.04.2021 13:58, Julien Grall wrote: >>> On 26/01/2021 09:52, Jan Beulich wrote: --- a/xen/common/decompress.h +++ b/xen/common/decompress.h @@ -9,7 +9,6 @@ #define STATIC

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Julien Grall
On 15/04/2021 15:16, Jan Beulich wrote: On 15.04.2021 13:58, Julien Grall wrote: On 26/01/2021 09:52, Jan Beulich wrote: --- a/xen/common/decompress.h +++ b/xen/common/decompress.h @@ -9,7 +9,6 @@ #define STATIC static #define INIT __init -#define INITDATA __initdata #defin

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Jan Beulich
On 15.04.2021 13:58, Julien Grall wrote: > On 26/01/2021 09:52, Jan Beulich wrote: >> --- a/xen/common/decompress.h >> +++ b/xen/common/decompress.h >> @@ -9,7 +9,6 @@ >> >> #define STATIC static >> #define INIT __init >> -#define INITDATA __initdata >> >> #define malloc xmalloc_bytes >

Re: [PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-04-15 Thread Julien Grall
Hi Jan, On 26/01/2021 09:52, Jan Beulich wrote: With xen/common/decompress.h now agreeing in both build modes about what STATIC expands to, there's no need for this abstraction anymore. Requested-by: Andrew Cooper Signed-off-by: Jan Beulich --- v3: New. --- a/xen/common/decompress.h +++ b/xe

[PATCH v3 12/15] unxz: replace INIT{,DATA} and STATIC

2021-01-26 Thread Jan Beulich
With xen/common/decompress.h now agreeing in both build modes about what STATIC expands to, there's no need for this abstraction anymore. Requested-by: Andrew Cooper Signed-off-by: Jan Beulich --- v3: New. --- a/xen/common/decompress.h +++ b/xen/common/decompress.h @@ -9,7 +9,6 @@ #define ST