Re: [RFC PATCH 0/5] module: Remove stop_machine from module unloading

2014-09-02 Thread Masami Hiramatsu
Ping? :) (2014/08/25 19:55), Masami Hiramatsu wrote: > Hi, > > Here is a series of patches which remove stop_machine() from > module unloading. > > Currently, each module unloading calls stop_machine()s 2 times. > One is for safely removing module from lists and one is to > check the reference

Re: [RFC PATCH 0/5] module: Remove stop_machine from module unloading

2014-09-02 Thread Masami Hiramatsu
Ping? :) (2014/08/25 19:55), Masami Hiramatsu wrote: Hi, Here is a series of patches which remove stop_machine() from module unloading. Currently, each module unloading calls stop_machine()s 2 times. One is for safely removing module from lists and one is to check the reference counter.

[RFC PATCH 0/5] module: Remove stop_machine from module unloading

2014-08-25 Thread Masami Hiramatsu
Hi, Here is a series of patches which remove stop_machine() from module unloading. Currently, each module unloading calls stop_machine()s 2 times. One is for safely removing module from lists and one is to check the reference counter. However, both are not necessary for those purposes (required

[RFC PATCH 0/5] module: Remove stop_machine from module unloading

2014-08-25 Thread Masami Hiramatsu
Hi, Here is a series of patches which remove stop_machine() from module unloading. Currently, each module unloading calls stop_machine()s 2 times. One is for safely removing module from lists and one is to check the reference counter. However, both are not necessary for those purposes (required