On 02/08/2017 18:49, John Baldwin wrote:
> sysctl nodes are created explicitly via linker_file_register_sysctls, not via
> SYSINITs, so you can't order them with respect to other init functions.
>
> I think Andriy's suggestion of doing sysctls "inside" sysinits (so they are
> registered last and u
On Wednesday, August 02, 2017 06:53:54 PM Hans Petter Selasky wrote:
> On 08/02/17 17:49, John Baldwin wrote:
> > On Wednesday, August 02, 2017 12:39:36 PM Hans Petter Selasky wrote:
> >> On 08/02/17 12:13, Andriy Gapon wrote:
> >>>
> >>> As far as I understand a module initialization routine is ex
On 08/02/17 17:49, John Baldwin wrote:
On Wednesday, August 02, 2017 12:39:36 PM Hans Petter Selasky wrote:
On 08/02/17 12:13, Andriy Gapon wrote:
As far as I understand a module initialization routine is executed via the
sysinit mechanism. Specifically, module_register_init is set up as the
On Wed, 2017-08-02 at 08:49 -0700, John Baldwin wrote:
> On Wednesday, August 02, 2017 12:39:36 PM Hans Petter Selasky wrote:
> >
> > On 08/02/17 12:13, Andriy Gapon wrote:
> > >
> > >
> > > As far as I understand a module initialization routine is
> > > executed via the
> > > sysinit mechanism.
On Wednesday, August 02, 2017 10:14:01 AM Andriy Gapon wrote:
> On 02/08/2017 04:00, Ngie Cooper (yaneurabeya) wrote:
> >
> >> On Aug 1, 2017, at 09:21, John Baldwin wrote:
> >>
> >> On Tuesday, August 01, 2017 09:47:41 AM Andriy Gapon wrote:
> >>> On 01/08/2017 02:31, Ngie Cooper wrote:
> H
On Wednesday, August 02, 2017 12:39:36 PM Hans Petter Selasky wrote:
> On 08/02/17 12:13, Andriy Gapon wrote:
> >
> > As far as I understand a module initialization routine is executed via the
> > sysinit mechanism. Specifically, module_register_init is set up as the
> > sysinit
> > function for
On 08/02/17 12:13, Andriy Gapon wrote:
As far as I understand a module initialization routine is executed via the
sysinit mechanism. Specifically, module_register_init is set up as the sysinit
function for every module and it calls MOD_EVENT(mod, MOD_LOAD) to invoke the
module event handler.
I
As far as I understand a module initialization routine is executed via the
sysinit mechanism. Specifically, module_register_init is set up as the sysinit
function for every module and it calls MOD_EVENT(mod, MOD_LOAD) to invoke the
module event handler.
In linker_load_file() I see the following
On 02/08/2017 04:00, Ngie Cooper (yaneurabeya) wrote:
>
>> On Aug 1, 2017, at 09:21, John Baldwin wrote:
>>
>> On Tuesday, August 01, 2017 09:47:41 AM Andriy Gapon wrote:
>>> On 01/08/2017 02:31, Ngie Cooper wrote:
Hi,
I tried upgrading my host from 11.1-STABLE to 12.0-CURRENT, and i