Re: [PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Steven Rostedt
On Tue, 10 Jul 2018 10:25:18 +1000 "Tobin C. Harding" wrote: > Recently boot variable 'debug_boot_weak_hash' was added (by me). In a > classic case of cargo cult programming the novice developer added a > macro call to EXPORT_SYMBOL(). This is wrong and was pointed out on > LKML. As pointed

Re: [PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Steven Rostedt
On Tue, 10 Jul 2018 10:25:18 +1000 "Tobin C. Harding" wrote: > Recently boot variable 'debug_boot_weak_hash' was added (by me). In a > classic case of cargo cult programming the novice developer added a > macro call to EXPORT_SYMBOL(). This is wrong and was pointed out on > LKML. As pointed

[PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Tobin C. Harding
Recently boot variable 'debug_boot_weak_hash' was added (by me). In a classic case of cargo cult programming the novice developer added a macro call to EXPORT_SYMBOL(). This is wrong and was pointed out on LKML. As pointed out EXPORT_SYMBOL() cannot be used on static variables. Remove

[PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Tobin C. Harding
Recently boot variable 'debug_boot_weak_hash' was added (by me). In a classic case of cargo cult programming the novice developer added a macro call to EXPORT_SYMBOL(). This is wrong and was pointed out on LKML. As pointed out EXPORT_SYMBOL() cannot be used on static variables. Remove