Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-23 Thread Sergey Senozhatsky
On (10/20/17 15:08), Petr Mladek wrote: > On Thu 2017-10-19 15:42:35, Sergey Senozhatsky wrote: > > Sorry for the delay and thanks for taking a look. > > > > I'll try to re-spin the patch set by the end of this week/early next > > week. > > > > > > On (10/04/17 13:53), Petr Mladek wrote: > >

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-23 Thread Sergey Senozhatsky
On (10/20/17 15:08), Petr Mladek wrote: > On Thu 2017-10-19 15:42:35, Sergey Senozhatsky wrote: > > Sorry for the delay and thanks for taking a look. > > > > I'll try to re-spin the patch set by the end of this week/early next > > week. > > > > > > On (10/04/17 13:53), Petr Mladek wrote: > >

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-20 Thread Petr Mladek
On Thu 2017-10-19 15:42:35, Sergey Senozhatsky wrote: > Sorry for the delay and thanks for taking a look. > > I'll try to re-spin the patch set by the end of this week/early next > week. > > > On (10/04/17 13:53), Petr Mladek wrote: > [..] > > Note that kallsyms_lookup() and

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-20 Thread Petr Mladek
On Thu 2017-10-19 15:42:35, Sergey Senozhatsky wrote: > Sorry for the delay and thanks for taking a look. > > I'll try to re-spin the patch set by the end of this week/early next > week. > > > On (10/04/17 13:53), Petr Mladek wrote: > [..] > > Note that kallsyms_lookup() and

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-19 Thread Sergey Senozhatsky
Sorry for the delay and thanks for taking a look. I'll try to re-spin the patch set by the end of this week/early next week. On (10/04/17 13:53), Petr Mladek wrote: [..] > Note that kallsyms_lookup() and module_address_lookup() is used > in many other situations. we dereference only things

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-19 Thread Sergey Senozhatsky
Sorry for the delay and thanks for taking a look. I'll try to re-spin the patch set by the end of this week/early next week. On (10/04/17 13:53), Petr Mladek wrote: [..] > Note that kallsyms_lookup() and module_address_lookup() is used > in many other situations. we dereference only things

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-04 Thread Petr Mladek
On Sat 2017-09-30 11:53:18, Sergey Senozhatsky wrote: > Call appropriate function descriptor dereference ARCH callbacks: > - dereference_kernel_function_descriptor() if the pointer is a > kernel symbol; > > - dereference_module_function_descriptor() if the pointer is a > module symbol. > >

Re: [PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-10-04 Thread Petr Mladek
On Sat 2017-09-30 11:53:18, Sergey Senozhatsky wrote: > Call appropriate function descriptor dereference ARCH callbacks: > - dereference_kernel_function_descriptor() if the pointer is a > kernel symbol; > > - dereference_module_function_descriptor() if the pointer is a > module symbol. > >

[PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-09-29 Thread Sergey Senozhatsky
Call appropriate function descriptor dereference ARCH callbacks: - dereference_kernel_function_descriptor() if the pointer is a kernel symbol; - dereference_module_function_descriptor() if the pointer is a module symbol. This patch also removes dereference_function_descriptor() from

[PATCHv3 6/7] symbol lookup: use new kernel and module dereference functions

2017-09-29 Thread Sergey Senozhatsky
Call appropriate function descriptor dereference ARCH callbacks: - dereference_kernel_function_descriptor() if the pointer is a kernel symbol; - dereference_module_function_descriptor() if the pointer is a module symbol. This patch also removes dereference_function_descriptor() from