Re: [oi-dev] Panic on using fuse with todays "pkg update"

2022-09-12 Thread Gordon Ross
Or improve its portability (does it really need to look inside proc_t?) On Mon, Sep 12, 2022 at 7:00 PM Gordon Ross wrote: > > We could integrate fuse into illumos to avoid that kind of thing. > > On Mon, Sep 12, 2022 at 5:02 AM Jean-Pierre André > wrote: > > > > IMHO this is the culprit : > >

Re: [oi-dev] Panic on using fuse with todays "pkg update"

2022-09-12 Thread Gordon Ross
We could integrate fuse into illumos to avoid that kind of thing. On Mon, Sep 12, 2022 at 5:02 AM Jean-Pierre André wrote: > > IMHO this is the culprit : > > --- ../oi-include/sys/thread.h 2020-11-19 19:37:31.170054900 +0100 > +++ thread.h.2 2022-09-12 10:48:43.877644300 +0200 > @@ -158,7

Re: [oi-dev] Panic on using fuse with todays "pkg update"

2022-09-12 Thread Jean-Pierre André
IMHO this is the culprit : --- ../oi-include/sys/thread.h 2020-11-19 19:37:31.170054900 +0100 +++ thread.h.2 2022-09-12 10:48:43.877644300 +0200 @@ -158,7 +158,6 @@ struct _kthread *t_intr; /* interrupted (pinned) thread */ uint64_tt_intr_start; /* timestamp when time

Re: [oi-dev] Panic on using fuse with todays "pkg update"

2022-09-12 Thread Jean-Pierre André
This is accessing t_procp->p_pidp, so it looks very much like the kernel has been recompiled after or have been changed, without the fuse kernel module being recompiled (or at least being downloaded). You probably only need to recompile with current headers and download. This has already