buildworld errors at outset on fresh svn checkout

2016-10-06 Thread Scott Bennett
I'm running into a problem in updating my 10-STABLE system from source. A "make buildworld" quits immediately. I tried a fresh svn checkout for base/stable/10 and then tried to run buildworld again, but got the same error. I've been scratching my head over this for hours, but must be missing

Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Graham Menhennitt
Let me preface this by saying that I know nothing about this particular bit of code, but... As a general rule, I would question the use of gettimeofday() while panicing. At that stage, everything could have already gone down the plug hole. That said, it already calls sleep(), so maybe that

Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Andy Farkas
With your latest patch applied, I ran through my procedure more than a dozen times and no panics! Any explanation why sleep(STALL_TIMEOUT) as apposed to a bunch of sleep(1)'s tickles the panic? Also, it is definitely not sleeping for 30 seconds. I guess some event interrupts the sleep loop?

11.0-RELEASE Status Update

2016-10-06 Thread Glen Barber
As many of you are aware, 11.0-RELEASE needed to be rebuilt to address several issues that were discovered after the release was built. Extra caution is being taken in testing the rebuilt releases, so at present, the final release announcement is planned for Monday, October 10. Thank you for

Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Konstantin Belousov
On Thu, Oct 06, 2016 at 06:31:59PM +1000, Andy Farkas wrote: > Reverted your patch then changed line 1011 of init.c to _exit(97): > > --- init.c-orig 2016-10-05 18:52:24.02291 +1000 > +++ init.c 2016-10-06 17:02:33.714624000 +1000 > @@ -1008,7 +1008,7 @@ > */ > warning("single user shell

Re: iicsmb

2016-10-06 Thread Mark Saad
On Thu, Oct 6, 2016 at 5:39 AM, Mark Dixon wrote: > If I load the module on my laptop (Lenovo Thinkpad X1 Carbon), I get: > > iicsmb0: on iicbus0 > iicsmb1: on iicbus1 > iicsmb2: on iicbus2 > iicsmb3: on iicbus3 > iicsmb4: on iicbus4 > iicsmb5: on iicbus5 > iicsmb6: on

Re: 11.0 stuck on high network load

2016-10-06 Thread Julien Charbon
Hi, On 9/28/16 1:59 PM, Slawa Olhovchenkov wrote: > On Wed, Sep 28, 2016 at 12:06:47PM +0200, Julien Charbon wrote: >> >> I am still trying to reproduce your issue, without success so far. Thanks for Slawa effort and multiple debug report we start seeing the bottom of this issue and it

Re: 11.0 stuck on high network load

2016-10-06 Thread Slawa Olhovchenkov
On Thu, Oct 06, 2016 at 09:28:06AM +0200, Julien Charbon wrote: > 2. thread1: In tcp_close() the inp is marked with INP_DROPPED flag, the > process continues and calls INP_WUNLOCK() here: > > https://github.com/freebsd/freebsd/blob/releng/11.0/sys/netinet/tcp_subr.c#L1568 Look also to

Re: iicsmb

2016-10-06 Thread Mark Dixon
If I load the module on my laptop (Lenovo Thinkpad X1 Carbon), I get: iicsmb0: on iicbus0 iicsmb1: on iicbus1 iicsmb2: on iicbus2 iicsmb3: on iicbus3 iicsmb4: on iicbus4 iicsmb5: on iicbus5 iicsmb6: on iicbus6 iicsmb7: on iicbus7 iicsmb8: on iicbus8 iicsmb9: on iicbus9 iicsmb10: on

Re: 11.0 stuck on high network load

2016-10-06 Thread Julien Charbon
Hi Hiren, On 10/6/16 9:44 AM, hiren panchasara wrote: > On 10/06/16 at 09:28P, Julien Charbon wrote: >> On 9/28/16 1:59 PM, Slawa Olhovchenkov wrote: >>> On Wed, Sep 28, 2016 at 12:06:47PM +0200, Julien Charbon wrote: I am still trying to reproduce your issue, without success so

Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Peter Jeremy
On 2016-Oct-04 11:14:38 +1000, Andy Farkas wrote: >Is it just me or > >Step 1: boot >Step 2: login as root >Step 3: type "w" * >Step 4: type "shutdown now; logout" >Step 5: press at the 'Enter full pathname of shell or RETURN for >/bin/sh:' prompt >Step 6: type "reboot"

Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Andy Farkas
Reverted your patch then changed line 1011 of init.c to _exit(97): --- init.c-orig 2016-10-05 18:52:24.02291 +1000 +++ init.c 2016-10-06 17:02:33.714624000 +1000 @@ -1008,7 +1008,7 @@ */ warning("single user shell terminated."); sleep(STALL_TIMEOUT); - _exit(0); + _exit(97); } else {

Re: 11.0 stuck on high network load

2016-10-06 Thread hiren panchasara
On 10/06/16 at 09:51P, Julien Charbon wrote: > > Hi Hiren, > > On 10/6/16 9:44 AM, hiren panchasara wrote: > > On 10/06/16 at 09:28P, Julien Charbon wrote: > >> On 9/28/16 1:59 PM, Slawa Olhovchenkov wrote: > >>> On Wed, Sep 28, 2016 at 12:06:47PM +0200, Julien Charbon wrote: > > I

Re: 11.0 stuck on high network load

2016-10-06 Thread hiren panchasara
On 10/06/16 at 09:28P, Julien Charbon wrote: > > Hi, > > On 9/28/16 1:59 PM, Slawa Olhovchenkov wrote: > > On Wed, Sep 28, 2016 at 12:06:47PM +0200, Julien Charbon wrote: > >> > >> I am still trying to reproduce your issue, without success so far. > > Thanks for Slawa effort and multiple