Re: [PATCH 2/4] modpost: make updating the symbol namespace explict

2019-10-11 Thread Masahiro Yamada
On Fri, Oct 11, 2019 at 12:16 AM Matthias Maennich wrote: > > Setting the symbol namespace of a symbol within sym_add_exported feels > displaced and lead to issues in the current implementation of symbol > namespaces. This patch makes updating the namespace an explicit call to > decouple it from

Re: [PATCH 2/4] modpost: make updating the symbol namespace explict

2019-10-11 Thread Greg Kroah-Hartman
On Thu, Oct 10, 2019 at 04:14:41PM +0100, Matthias Maennich wrote: > Setting the symbol namespace of a symbol within sym_add_exported feels > displaced and lead to issues in the current implementation of symbol > namespaces. This patch makes updating the namespace an explicit call to > decouple it

Re: [PATCH 2/4] modpost: make updating the symbol namespace explict

2019-10-11 Thread Will Deacon
On Thu, Oct 10, 2019 at 04:14:41PM +0100, Matthias Maennich wrote: > Setting the symbol namespace of a symbol within sym_add_exported feels > displaced and lead to issues in the current implementation of symbol > namespaces. This patch makes updating the namespace an explicit call to > decouple it

[PATCH 2/4] modpost: make updating the symbol namespace explict

2019-10-10 Thread Matthias Maennich
Setting the symbol namespace of a symbol within sym_add_exported feels displaced and lead to issues in the current implementation of symbol namespaces. This patch makes updating the namespace an explicit call to decouple it from adding a symbol to the export list. Signed-off-by: Matthias Maennich