Re: [PATCH v3 07/12] asm-generic: Define 'func_desc_t' to commonly describe function descriptors

2021-10-18 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of October 18, 2021 5:07 pm: > > > Le 18/10/2021 à 08:29, Nicholas Piggin a écrit : >> Excerpts from Christophe Leroy's message of October 17, 2021 10:38 pm: >>> We have three architectures using function descriptors, each with its >>> own type and name.

Re: [PATCH v3 07/12] asm-generic: Define 'func_desc_t' to commonly describe function descriptors

2021-10-18 Thread Christophe Leroy
Le 18/10/2021 à 08:29, Nicholas Piggin a écrit : Excerpts from Christophe Leroy's message of October 17, 2021 10:38 pm: We have three architectures using function descriptors, each with its own type and name. Add a common typedef that can be used in generic code. Also add a stub typedef

Re: [PATCH v3 07/12] asm-generic: Define 'func_desc_t' to commonly describe function descriptors

2021-10-18 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of October 17, 2021 10:38 pm: > We have three architectures using function descriptors, each with its > own type and name. > > Add a common typedef that can be used in generic code. > > Also add a stub typedef for architecture without function

[PATCH v3 07/12] asm-generic: Define 'func_desc_t' to commonly describe function descriptors

2021-10-17 Thread Christophe Leroy
We have three architectures using function descriptors, each with its own type and name. Add a common typedef that can be used in generic code. Also add a stub typedef for architecture without function descriptors, to avoid a forest of #ifdefs. It replaces the similar 'func_desc_t' previously