Re: (subset) [PATCH 0/9] treewide: eliminate anonymous module_init & module_exit

2022-03-17 Thread Jens Axboe
On Wed, 16 Mar 2022 12:20:01 -0700, Randy Dunlap wrote: > There are a number of drivers that use "module_init(init)" and > "module_exit(exit)", which are anonymous names and can lead to > confusion or ambiguity when reading System.map, crashes/oops/bugs, > or an initcall_debug log. > > Give each o

Re: [PATCH 0/9] treewide: eliminate anonymous module_init & module_exit

2022-03-16 Thread Ira Weiny
On Wed, Mar 16, 2022 at 12:20:01PM -0700, Randy Dunlap wrote: > There are a number of drivers that use "module_init(init)" and > "module_exit(exit)", which are anonymous names and can lead to > confusion or ambiguity when reading System.map, crashes/oops/bugs, > or an initcall_debug log. > > Give

[PATCH 0/9] treewide: eliminate anonymous module_init & module_exit

2022-03-16 Thread Randy Dunlap
There are a number of drivers that use "module_init(init)" and "module_exit(exit)", which are anonymous names and can lead to confusion or ambiguity when reading System.map, crashes/oops/bugs, or an initcall_debug log. Give each of these init and exit functions unique driver-specific names to elim