From owner-freebsd-stable@FreeBSD.ORG Wed Jan 1 01:53:26 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0299210 for ; Wed, 1 Jan 2014 01:53:26 +0000 (UTC) Received: from maildrop2.v6ds.occnc.com (maildrop2.v6ds.occnc.com [IPv6:2001:470:88e6:3::232]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6433B1293 for ; Wed, 1 Jan 2014 01:53:26 +0000 (UTC) Received: from harbor3.ipv6.occnc.com (harbor3.v6ds.occnc.com [IPv6:2001:470:88e6:3::239]) (authenticated bits=128) by maildrop2.v6ds.occnc.com (8.14.7/8.14.7) with ESMTP id s011rNcm082703; Tue, 31 Dec 2013 20:53:23 -0500 (EST) (envelope-from curtis@ipv6.occnc.com) Message-Id: <201401010153.s011rNcm082703@maildrop2.v6ds.occnc.com> To: Yonghyeon PYUN Subject: regression: msk0 watchdog timeout and interrupt storm From: Curtis Villamizar Date: Tue, 31 Dec 2013 20:53:23 -0500 Cc: freebsd-stable@freebsd.org, curtis@ipv6.occnc.com X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: curtis@ipv6.occnc.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 01:53:26 -0000 I'm getting an interrupt storm from mskc running with the latest if_msk.c code. The OS is built from source (259540): FreeBSD 10.0-PRERELEASE (GENERIC) #0 r259540: Sat Dec 21 00:05:39 EST 2013 While not the latest, the point is that sys/dev/msk is up to date wrt stable_9 and also wrt head. The odd thing is that the machine seemed to run fine for a day or two and then started exhibiting this behaviour and has become useless. This is now highly reproducible (it happens within seconds when trying to do a long file transfer between two machines with GbE) so if there is anything I can do to instrument this, please make suggestions. What I know so far is: 1. When the watchdog occurs, Y2_IS_STAT_BMU is set in the prior interrupt mask. 2. This would put us in from msk_intr into msk_handle_events, with msk_handle_events returning 0. 3. msk_handle_events reads in sc->msk_stat_cons. The last recorded value of sc->msk_stat_cons is alway 1024. 4. The only way to exit msk_handle_events with sc->msk_stat_cons greater than zero yet not do anything is hit the top of loop conditional and fall out: sd = &sc->msk_stat_ring[cons]; control = le32toh(sd->msk_control); if ((control & HW_OWNER) == 0) break; 5. The code after the loop can return zero if the ring buffer pointer hasn't moved. That code is: sc->msk_stat_cons = cons; bus_dmamap_sync(sc->msk_stat_tag, sc->msk_stat_map, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); if (rxput[MSK_PORT_A] > 0) msk_rxput(sc->msk_if[MSK_PORT_A]); if (rxput[MSK_PORT_B] > 0) msk_rxput(sc->msk_if[MSK_PORT_B]); return (sc->msk_stat_cons != CSR_READ_2(sc, STAT_PUT_IDX)); 6. If the return value is zero, the interrupt isn't cleared. That was suspect. The code in msk_intr is: domore = msk_handle_events(sc); if ((status & Y2_IS_STAT_BMU) != 0 && domore == 0) CSR_WRITE_4(sc, STAT_CTRL, SC_STAT_CLR_IRQ); 7. This code before the return in msk_handle_events should force the clear but doesn't fix anything. if ((control & HW_OWNER) == 0) return; This looks like some sort of fall off the end of a ring buffer type of problem (since it always points to entry 0x400) but since I haven't done driver work in ages, that is mostly just a wild guess and I really have no idea yet at to what is going wrong. Also please keep me on the Cc since I'm not subscribed to the list, though I will check the archives from time to time. Thanks, Curtis reference: http://lists.freebsd.org/pipermail/freebsd-stable/2013-November/075699.html From owner-freebsd-stable@FreeBSD.ORG Wed Jan 1 18:53:41 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41952261; Wed, 1 Jan 2014 18:53:41 +0000 (UTC) Received: from worker01.tb.des.no (worker01.tb.des.no [41.154.2.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E45D1B40; Wed, 1 Jan 2014 18:53:39 +0000 (UTC) Received: from worker01.tb.des.no (localhost [127.0.0.1]) by worker01.tb.des.no (8.14.5/8.14.5) with ESMTP id s01IrTUc049475; Wed, 1 Jan 2014 20:53:29 +0200 (SAST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by worker01.tb.des.no (8.14.5/8.14.5/Submit) id s01IrSPV049474; Wed, 1 Jan 2014 18:53:28 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 1 Jan 2014 18:53:28 GMT Message-Id: <201401011853.s01IrSPV049474@worker01.tb.des.no> X-Authentication-Warning: worker01.tb.des.no: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_10 tinderbox] failure on mips64/mips Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 18:53:41 -0000 TB --- 2014-01-01 18:50:39 - tinderbox 2.20 running on worker01.tb.des.no TB --- 2014-01-01 18:50:39 - FreeBSD worker01.tb.des.no 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-01 18:50:39 - starting RELENG_10 tinderbox run for mips64/mips TB --- 2014-01-01 18:50:39 - cleaning the object tree TB --- 2014-01-01 18:50:39 - /usr/local/bin/svn stat --no-ignore /src TB --- 2014-01-01 18:51:31 - At svn revision 260159 TB --- 2014-01-01 18:51:32 - building world TB --- 2014-01-01 18:51:32 - CROSS_BUILD_TESTING=YES TB --- 2014-01-01 18:51:32 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-01 18:51:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-01 18:51:32 - SRCCONF=/dev/null TB --- 2014-01-01 18:51:32 - TARGET=mips TB --- 2014-01-01 18:51:32 - TARGET_ARCH=mips64 TB --- 2014-01-01 18:51:32 - TZ=UTC TB --- 2014-01-01 18:51:32 - __MAKE_CONF=/dev/null TB --- 2014-01-01 18:51:32 - cd /src TB --- 2014-01-01 18:51:32 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Jan 1 18:51:42 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools [...] c++ -O2 -pipe -I/obj/mips.mips64/src/tmp/legacy/usr/include -c /src/usr.bin/dtc/string.cc c++ -O2 -pipe -I/obj/mips.mips64/src/tmp/legacy/usr/include -c /src/usr.bin/dtc/dtb.cc c++ -O2 -pipe -I/obj/mips.mips64/src/tmp/legacy/usr/include -c /src/usr.bin/dtc/fdt.cc /usr/include/c++/4.2/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_insert_aux(__gnu_cxx::__normal_iterator::_Tp_alloc_type::pointer, std::vector<_Tp, _Alloc> >, const _Tp&) [with _Tp = dtc::fdt::property_value, _Alloc = std::allocator]': /usr/include/c++/4.2/bits/vector.tcc:245: internal compiler error: in var_ann, at tree-flow-inline.h:128 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop. bmake[2]: stopped in /src/usr.bin/dtc *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** [buildworld] Error code 1 Stop in /src. TB --- 2014-01-01 18:53:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-01 18:53:28 - ERROR: failed to build world TB --- 2014-01-01 18:53:28 - 86.72 user 84.30 system 168.17 real http://tinderbox.des.no/tinderbox-freebsd10-build-RELENG_10-mips64-mips.full From owner-freebsd-stable@FreeBSD.ORG Wed Jan 1 21:45:00 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCF5E4C0 for ; Wed, 1 Jan 2014 21:45:00 +0000 (UTC) Received: from maildrop2.v6ds.occnc.com (maildrop2.v6ds.occnc.com [IPv6:2001:470:88e6:3::232]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6CAA417AF for ; Wed, 1 Jan 2014 21:45:00 +0000 (UTC) Received: from harbor3.ipv6.occnc.com (harbor3.v6ds.occnc.com [IPv6:2001:470:88e6:3::239]) (authenticated bits=128) by maildrop2.v6ds.occnc.com (8.14.7/8.14.7) with ESMTP id s01LivSi099164; Wed, 1 Jan 2014 16:44:57 -0500 (EST) (envelope-from curtis@ipv6.occnc.com) Message-Id: <201401012144.s01LivSi099164@maildrop2.v6ds.occnc.com> To: curtis@ipv6.occnc.com From: Curtis Villamizar Subject: Re: regression: msk0 watchdog timeout and interrupt storm In-reply-to: Your message of "Tue, 31 Dec 2013 20:53:23 -0500." <201401010153.s011rNcm082703@maildrop2.v6ds.occnc.com> Date: Wed, 01 Jan 2014 16:44:57 -0500 Cc: Yonghyeon PYUN , freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: curtis@ipv6.occnc.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 21:45:00 -0000 Replying to self (and top posting). I'm not sure if the problem is fixed or masked. The symptom (watchdog and interrupt storm) has gone away with the following change in if_mskreg.h: @@ -2329,8 +2329,13 @@ */ #if (BUS_SPACE_MAXADDR > 0xFFFFFFFF) #define MSK_64BIT_DMA +#if 1 +#define MSK_TX_RING_CNT 256 +#define MSK_RX_RING_CNT 256 +#else #define MSK_TX_RING_CNT 384 #define MSK_RX_RING_CNT 512 +#endif #else #undef MSK_64BIT_DMA #define MSK_TX_RING_CNT 256 This backs out a very small part of the change made to if_mskreg.h in revision 227582. The following is what I think is affected by this change: count = imin(4096, roundup2(count, 1024)); sc->msk_stat_count = count; stat_sz = count * sizeof(struct msk_stat_desc); The change makes count end up being 1024 (and stat_sz 8192). For me the problem is fixed/masked but I would also consider putting the increase to MSK_TX_RING_CNT and MSK_RX_RING_CNT back and forcing count above to be no greater than 1024 if that would help someone else debug the problem. I'm not sure where the 4096 came from but replacing that with 1024 is equivalent to "count = 1024" with no math involved. This does seem to me like a regression in 10.0 caused by the change to if_mskreg.h (Nov 16). The workaround so far has been fine for me. Curtis In message <201401010153.s011rNcm082703@maildrop2.v6ds.occnc.com> Curtis Villamizar writes: > > I'm getting an interrupt storm from mskc running with the latest > if_msk.c code. The OS is built from source (259540): > > FreeBSD 10.0-PRERELEASE (GENERIC) #0 r259540: Sat Dec 21 00:05:39 EST 2013 > > While not the latest, the point is that sys/dev/msk is up to date wrt > stable_9 and also wrt head. > > The odd thing is that the machine seemed to run fine for a day or two > and then started exhibiting this behaviour and has become useless. > > This is now highly reproducible (it happens within seconds when trying > to do a long file transfer between two machines with GbE) so if there > is anything I can do to instrument this, please make suggestions. > > What I know so far is: > > 1. When the watchdog occurs, Y2_IS_STAT_BMU is set in the prior > interrupt mask. > > 2. This would put us in from msk_intr into msk_handle_events, with > msk_handle_events returning 0. > > 3. msk_handle_events reads in sc->msk_stat_cons. The last recorded > value of sc->msk_stat_cons is alway 1024. > > 4. The only way to exit msk_handle_events with sc->msk_stat_cons > greater than zero yet not do anything is hit the top of loop > conditional and fall out: > > sd = &sc->msk_stat_ring[cons]; > control = le32toh(sd->msk_control); > if ((control & HW_OWNER) == 0) > break; > > 5. The code after the loop can return zero if the ring buffer > pointer hasn't moved. That code is: > > sc->msk_stat_cons = cons; > bus_dmamap_sync(sc->msk_stat_tag, sc->msk_stat_map, > BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); > > if (rxput[MSK_PORT_A] > 0) > msk_rxput(sc->msk_if[MSK_PORT_A]); > if (rxput[MSK_PORT_B] > 0) > msk_rxput(sc->msk_if[MSK_PORT_B]); > > return (sc->msk_stat_cons != CSR_READ_2(sc, STAT_PUT_IDX)); > > 6. If the return value is zero, the interrupt isn't cleared. That > was suspect. The code in msk_intr is: > > domore = msk_handle_events(sc); > if ((status & Y2_IS_STAT_BMU) != 0 && domore == 0) > CSR_WRITE_4(sc, STAT_CTRL, SC_STAT_CLR_IRQ); > > 7. This code before the return in msk_handle_events should force > the clear but doesn't fix anything. > > if ((control & HW_OWNER) == 0) > return; > > This looks like some sort of fall off the end of a ring buffer type of > problem (since it always points to entry 0x400) but since I haven't > done driver work in ages, that is mostly just a wild guess and I > really have no idea yet at to what is going wrong. > > Also please keep me on the Cc since I'm not subscribed to the list, > though I will check the archives from time to time. > > Thanks, > > Curtis > > > reference: > http://lists.freebsd.org/pipermail/freebsd-stable/2013-November/075699.html From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 02:06:06 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8230DF4E for ; Thu, 2 Jan 2014 02:06:06 +0000 (UTC) Received: from mail-pd0-x22e.google.com (mail-pd0-x22e.google.com [IPv6:2607:f8b0:400e:c02::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53EA7182D for ; Thu, 2 Jan 2014 02:06:06 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id x10so13530343pdj.19 for ; Wed, 01 Jan 2014 18:06:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=stqIvJROySS6Yntdat+shaKEb2c85oiBKKDfvdhy+Sk=; b=yw3MGwBm6m3KYUGVvwtQNlWmbxrz8erHlyCQ2iIVz3cSurn/dNUhc1lTYYXppSXYZg Hkvcu+aFbGt0vqKGFptC5vMzPoqcLzNIx60Ung/G5N7nDDzQQHF3TSgrMCgRONjHFrDU KCu5ov2funRmoRYFogPPIbkV4DmUpamGoALyF7f6k5U2OoQZAJ16S3defxEG3wKuMFZ1 Q7QB4/Ku70R1x0ZCQz0fRxkpN+lw3WMFjzCkGE7HZv9GKSMNhETotfRNOyYnZkuYWvdd u6gSjW+8SBtnx0YvqoX5zePnZtHb0BjbIqN7mhVkCC3kn3nnfPine+QCmqfDjRqhEKpb dIfw== X-Received: by 10.66.197.135 with SMTP id iu7mr19950240pac.149.1388628364367; Wed, 01 Jan 2014 18:06:04 -0800 (PST) Received: from pyunyh@gmail.com (lpe4.p59-icn.cdngp.net. [114.111.62.249]) by mx.google.com with ESMTPSA id ae5sm128431772pac.18.2014.01.01.18.06.01 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 01 Jan 2014 18:06:03 -0800 (PST) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Thu, 02 Jan 2014 11:05:59 +0900 From: Yonghyeon PYUN Date: Thu, 2 Jan 2014 11:05:59 +0900 To: Curtis Villamizar Subject: Re: regression: msk0 watchdog timeout and interrupt storm Message-ID: <20140102020559.GA5756@michelle.cdnetworks.com> References: <201401010153.s011rNcm082703@maildrop2.v6ds.occnc.com> <201401012144.s01LivSi099164@maildrop2.v6ds.occnc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401012144.s01LivSi099164@maildrop2.v6ds.occnc.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:06:06 -0000 On Wed, Jan 01, 2014 at 04:44:57PM -0500, Curtis Villamizar wrote: > > Replying to self (and top posting). > > I'm not sure if the problem is fixed or masked. > > The symptom (watchdog and interrupt storm) has gone away with the > following change in if_mskreg.h: > > @@ -2329,8 +2329,13 @@ > */ > #if (BUS_SPACE_MAXADDR > 0xFFFFFFFF) > #define MSK_64BIT_DMA > +#if 1 > +#define MSK_TX_RING_CNT 256 > +#define MSK_RX_RING_CNT 256 > +#else > #define MSK_TX_RING_CNT 384 > #define MSK_RX_RING_CNT 512 > +#endif > #else > #undef MSK_64BIT_DMA > #define MSK_TX_RING_CNT 256 > > This backs out a very small part of the change made to if_mskreg.h in > revision 227582. > > The following is what I think is affected by this change: > > count = imin(4096, roundup2(count, 1024)); > sc->msk_stat_count = count; > stat_sz = count * sizeof(struct msk_stat_desc); > > The change makes count end up being 1024 (and stat_sz 8192). > > For me the problem is fixed/masked but I would also consider putting > the increase to MSK_TX_RING_CNT and MSK_RX_RING_CNT back and forcing > count above to be no greater than 1024 if that would help someone else > debug the problem. I'm not sure where the 4096 came from but > replacing that with 1024 is equivalent to "count = 1024" with no math > involved. Marvell calls DMA descriptors as LEs. The maximum number of status LEs supported by controller is 4096 and it should be large enough to hold status LE update(for dual-port controllers, the status DMA block is shared between each port). > > This does seem to me like a regression in 10.0 caused by the change to > if_mskreg.h (Nov 16). The workaround so far has been fine for me. > If you revert the change made in r258790, does the issue go away? Are you running amd64? Because you touched #if (BUS_SPACE_MAXADDR > 0xFFFFFFFF) block in if_mskreg.h I guess you're running amd64 but I need confirmation. If your system have more than 4GB memory on amd64, could you reduce amount of available memory to be less than 4GB?(i.e. set hw.physmem in loader.conf) Also would you show me dmesg(8) output(msk(4) and e1000phy(4) only) to know exact Yukon controller model? > Curtis > > > In message <201401010153.s011rNcm082703@maildrop2.v6ds.occnc.com> > Curtis Villamizar writes: > > > > I'm getting an interrupt storm from mskc running with the latest > > if_msk.c code. The OS is built from source (259540): > > > > FreeBSD 10.0-PRERELEASE (GENERIC) #0 r259540: Sat Dec 21 00:05:39 EST 2013 > > > > While not the latest, the point is that sys/dev/msk is up to date wrt > > stable_9 and also wrt head. > > > > The odd thing is that the machine seemed to run fine for a day or two > > and then started exhibiting this behaviour and has become useless. > > > > This is now highly reproducible (it happens within seconds when trying > > to do a long file transfer between two machines with GbE) so if there > > is anything I can do to instrument this, please make suggestions. > > > > What I know so far is: > > > > 1. When the watchdog occurs, Y2_IS_STAT_BMU is set in the prior > > interrupt mask. > > > > 2. This would put us in from msk_intr into msk_handle_events, with > > msk_handle_events returning 0. > > > > 3. msk_handle_events reads in sc->msk_stat_cons. The last recorded > > value of sc->msk_stat_cons is alway 1024. > > > > 4. The only way to exit msk_handle_events with sc->msk_stat_cons > > greater than zero yet not do anything is hit the top of loop > > conditional and fall out: > > > > sd = &sc->msk_stat_ring[cons]; > > control = le32toh(sd->msk_control); > > if ((control & HW_OWNER) == 0) > > break; > > > > 5. The code after the loop can return zero if the ring buffer > > pointer hasn't moved. That code is: > > > > sc->msk_stat_cons = cons; > > bus_dmamap_sync(sc->msk_stat_tag, sc->msk_stat_map, > > BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); > > > > if (rxput[MSK_PORT_A] > 0) > > msk_rxput(sc->msk_if[MSK_PORT_A]); > > if (rxput[MSK_PORT_B] > 0) > > msk_rxput(sc->msk_if[MSK_PORT_B]); > > > > return (sc->msk_stat_cons != CSR_READ_2(sc, STAT_PUT_IDX)); > > > > 6. If the return value is zero, the interrupt isn't cleared. That > > was suspect. The code in msk_intr is: > > > > domore = msk_handle_events(sc); > > if ((status & Y2_IS_STAT_BMU) != 0 && domore == 0) > > CSR_WRITE_4(sc, STAT_CTRL, SC_STAT_CLR_IRQ); > > > > 7. This code before the return in msk_handle_events should force > > the clear but doesn't fix anything. > > > > if ((control & HW_OWNER) == 0) > > return; > > > > This looks like some sort of fall off the end of a ring buffer type of > > problem (since it always points to entry 0x400) but since I haven't > > done driver work in ages, that is mostly just a wild guess and I > > really have no idea yet at to what is going wrong. > > > > Also please keep me on the Cc since I'm not subscribed to the list, > > though I will check the archives from time to time. > > > > Thanks, > > > > Curtis > > > > > > reference: > > http://lists.freebsd.org/pipermail/freebsd-stable/2013-November/075699.html From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 11:27:23 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B357F9 for ; Thu, 2 Jan 2014 11:27:23 +0000 (UTC) Received: from spike.grumly.eu.org (spike.grumly.eu.org [188.121.252.241]) by mx1.freebsd.org (Postfix) with ESMTP id 5C7361E6B for ; Thu, 2 Jan 2014 11:27:22 +0000 (UTC) Received: by spike.grumly.eu.org (Postfix, from userid 1000) id C56156006BF4; Thu, 2 Jan 2014 12:27:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=grumly.eu.org; s=lotxhnsjev; t=1388662034; bh=z2HdhroT5RXPoz4q10WR4kT9kz1WU72FAghnegBPSV0=; h=Date:From:To:Subject:From; b=AnKKRAZQrAeMc3vTEF1faYPnJirVus6y5i0u6uuzZJDFY2jC5eYcvGbC7u94U6c8U cli9ILvmpAcHvNzFdxhFJQ156sfadIFK0lNWWZmBJgilO6r0qQ3DNa/pIMKRrIyv5m Sg1rSJ0Yxfg2tXkJdsMqk/9ALR5mMu6NOO78SY+0= Date: Thu, 2 Jan 2014 12:27:14 +0100 From: Cedric Tabary To: freebsd-stable@freebsd.org Subject: possible netgraph regression on freebsd 10.0-RC3 Message-ID: <20140102112714.GB16947@spike.grumly.eu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:27:23 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I upgraded several FreeBSD servers from 9.2-STABLE to 10.0-RC3 and I now have strange behavior of mpd-5.7. Symptoms : - mpd stops accepting connections (PPTP VPN), and stops accepting control connectiosn also (on telnet and http). - The only way to kill mpd is a SIGKILL - after killing mpd, all ng interfaces are still up and forwarding trafic - the only way to revert to normal operation is a server power-cycle, software reboot just freeze the kernel. dmesg shows a lot of : sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance however I can't find pcb 0xfffff80006f61930 in netstat and there is no flood, did I miss something ? netstat -naA shows pptp control connections with non null Recv-Q netstat -naA shows netgraph control sockets with non null Send-Q In normal operation conditions, all Send-Q/Recv-Q are 0 on all those control sockets. Attached : - dmesg - netstat -naA (anonymized) - lsof -n (anonymized) FreeBSD xxx 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 All this is reproduced once every 2-3 days on 4 different servers. C=E9dric --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.txt" cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1772) packets dropped, disabling node 0xfffff80043755300! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 ng_mppc_decompress: too many (1410) packets dropped, disabling node 0xfffff80043764100! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1367) packets dropped, disabling node 0xfffff8004390b100! ng_mppc_decompress: too many (1040) packets dropped, disabling node 0xfffff8002c9ea500! ng_mppc_decompress: too many (1203) packets dropped, disabling node 0xfffff80043a53500! ng_mppc_decompress: too many (1548) packets dropped, disabling node 0xfffff80043afb400! ng_mppc_decompress: too many (1313) packets dropped, disabling node 0xfffff8002c58de00! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (4094) packets dropped, disabling node 0xfffff800437db200! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 ng_mppc_decompress: too many (1188) packets dropped, disabling node 0xfffff800439f5a00! ng_mppc_decompress: too many (2208) packets dropped, disabling node 0xfffff8000641f700! ng_mppc_decompress: too many (1066) packets dropped, disabling node 0xfffff80043810900! ng_mppc_decompress: too many (1307) packets dropped, disabling node 0xfffff800439e6800! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1088) packets dropped, disabling node 0xfffff8002c80ab00! ng_mppc_decompress: too many (1672) packets dropped, disabling node 0xfffff80043656200! ng_mppc_decompress: too many (2492) packets dropped, disabling node 0xfffff800438a1e00! ng_mppc_decompress: too many (4092) packets dropped, disabling node 0xfffff80043979300! ng_mppc_decompress: too many (1177) packets dropped, disabling node 0xfffff8002ca09100! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1315) packets dropped, disabling node 0xfffff80043ae3200! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (2382) packets dropped, disabling node 0xfffff80043881e00! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 ng_mppc_decompress: too many (1706) packets dropped, disabling node 0xfffff800438a0200! ng_mppc_decompress: too many (1140) packets dropped, disabling node 0xfffff8002c684b00! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1644) packets dropped, disabling node 0xfffff8002c786500! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1046) packets dropped, disabling node 0xfffff8002c6b3200! ng_mppc_decompress: too many (4094) packets dropped, disabling node 0xfffff80043810300! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 ng_mppc_decompress: too many (1130) packets dropped, disabling node 0xfffff8002ccb4e00! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif ng71 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif ng53 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 ng_mppc_decompress: too many (4094) packets dropped, disabling node 0xfffff8002c9f5500! cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:51:4b0:c9a7:36d9:e644, nxt 6, rcvif bce1, outif ng51 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:9:885f:e175:4e50:ab69, nxt 6, rcvif bce1, outif ng9 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:71:b89d:519e:47ff:6278, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 cannot forward src fe80:2::225:90ff:fe96:3646, dst 2a02:xxx:xxxx:53:b843:13b1:d094:65b2, nxt 6, rcvif bce1, outif lo0 ng_mppc_decompress: too many (1120) packets dropped, disabling node 0xfffff8002c9eac00! sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in queue awaiting acceptance --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="netstat-naA.txt" Active Internet connections (including servers) Tcpcb Proto Recv-Q Send-Q Local Address Foreign Address (state) fffff8004368bc00 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.405 CLOSE_WAIT fffff800438f9c00 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.405 CLOSE_WAIT fffff800430df400 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.405 CLOSE_WAIT fffff8004303c800 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.383 CLOSE_WAIT fffff8004305a800 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.383 CLOSE_WAIT fffff8002cbda400 tcp4 0 0 188.xxx.xxx.xxx.50 188.xxx.xxx.xx.383 CLOSE_WAIT fffff800439e3800 tcp4 188 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.211.441 CLOSE_WAIT fffff8002cac6c00 tcp4 156 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.62.1082 CLOSED fffff8002c505800 tcp4 156 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.37.1217 CLOSED fffff80043bab800 tcp4 188 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.211.439 CLOSE_WAIT fffff8002c663400 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.211.439 CLOSE_WAIT fffff80006f63400 tcp4 72 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.15.19451 CLOSE_WAIT fffff8004367c000 tcp4 144 0 188.xxx.xxx.xxx.17 xxxxxxxxxx76.49328 ESTABLISHED fffff80043ba8000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx88.50811 ESTABLISHED fffff8004367d800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx4.6.51090 ESTABLISHED fffff800430e0400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx0.55.3913 ESTABLISHED fffff80043b1c000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx8.114.520 ESTABLISHED fffff80043749400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx220.49197 ESTABLISHED fffff8002cbdac00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx53.125.23 ESTABLISHED fffff8002c662400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.220.4924 ESTABLISHED fffff800439e3000 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.201.5121 ESTABLISHED fffff8002cbd9400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.195.4919 ESTABLISHED fffff800430df800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx8.37.5536 ESTABLISHED fffff800438ea400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.153.1002 ESTABLISHED fffff8002c9bdc00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.188.276 ESTABLISHED fffff8004304cc00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx6.40.5732 ESTABLISHED fffff80043059400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.128.5027 ESTABLISHED fffff8004368a800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.236.4925 ESTABLISHED fffff8002c663000 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx6.42.5973 ESTABLISHED fffff8002c504400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx2.100.505 ESTABLISHED fffff80043749000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.48.49247 ESTABLISHED fffff80006f8ec00 tcp4 296 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.64.49740 CLOSED fffff8002cc82000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx8.7.58039 ESTABLISHED fffff8002cc86000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.84.5994 ESTABLISHED fffff800437bd800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.99.53255 ESTABLISHED fffff8002ca20800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx2.45.4921 ESTABLISHED fffff8002ca22000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx222.49160 ESTABLISHED fffff80043059000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx03.49207 ESTABLISHED fffff800439e4000 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.177.4382 CLOSE_WAIT fffff80043b1cc00 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.172.4941 ESTABLISHED fffff800439e4c00 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx100.49250 ESTABLISHED fffff80043800c00 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx210.57446 CLOSE_WAIT fffff8002cbd8800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx5.214.491 ESTABLISHED fffff8002c503000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx160.49271 ESTABLISHED fffff8002ca21800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx0.166.529 ESTABLISHED fffff800438e2c00 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx6.162.559 ESTABLISHED fffff8004368a400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.58.55408 ESTABLISHED fffff800438ea000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.187.5205 ESTABLISHED fffff8002ca23c00 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx0.128.211 ESTABLISHED fffff8002cac7400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.160.5334 ESTABLISHED fffff8002cac5400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.1.52620 ESTABLISHED fffff80006f8e400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx82.59827 ESTABLISHED fffff8002c503400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.73.56072 ESTABLISHED fffff80043689800 tcp4 160 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.155.535 CLOSED fffff80043b1d800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.249.5837 ESTABLISHED fffff8002c662000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx2.33.6189 ESTABLISHED fffff8002ca22800 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx1.23.5027 ESTABLISHED fffff80043bab400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.51.56243 ESTABLISHED fffff8002ca23800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.146.4924 ESTABLISHED fffff80043049000 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx3.152.339 CLOSE_WAIT fffff8002cc86400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.201.494 ESTABLISHED fffff80043803000 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.227.5637 ESTABLISHED fffff80043803800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx27.55321 ESTABLISHED fffff8002c664400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.6.50488 ESTABLISHED fffff80043689c00 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx4.59.3357 CLOSE_WAIT fffff8002cbda000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx4.38.4930 ESTABLISHED fffff8004305a400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.59.1246 ESTABLISHED fffff8002cac6800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx6.61.4920 ESTABLISHED fffff80043baa000 tcp4 0 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.60.49842 ESTABLISHED fffff8004367dc00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx56.52654 ESTABLISHED fffff80043689000 tcp4 368 0 188.xxx.xxx.xxx.17 xxxxxxxxxx5.216.492 ESTABLISHED fffff800439e2800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx65.113.60 ESTABLISHED fffff8002c662800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx8.126.493 ESTABLISHED fffff8002cbd9000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx4.96.5889 ESTABLISHED fffff800430de400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx5.28.4989 ESTABLISHED fffff80043ba8800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx2.114.501 ESTABLISHED fffff80006f63000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.215.6172 ESTABLISHED fffff8004368ac00 tcp4 32 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.211.3807 CLOSE_WAIT fffff8004385c000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.142.5561 ESTABLISHED fffff80006f5dc00 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx0.58713 ESTABLISHED fffff800439e2400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx3.134.540 ESTABLISHED fffff800439e2c00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.251.5959 ESTABLISHED fffff800438f9800 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.152.5914 ESTABLISHED fffff8002c505000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx7.58.5924 ESTABLISHED fffff80043b1b400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx6.65.4924 ESTABLISHED fffff80006f8c000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.10.51514 ESTABLISHED fffff800438f9000 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx8.252.640 ESTABLISHED fffff8002c663800 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx3.35.4982 ESTABLISHED fffff800439e4400 tcp4 336 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.188.4954 ESTABLISHED fffff800437bd000 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.22.3979 CLOSE_WAIT fffff80043baa400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.40.52925 ESTABLISHED fffff8002c664800 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.103.5425 CLOSE_WAIT fffff800430ddc00 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx25.43213 CLOSE_WAIT fffff80043749c00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx9.117.479 ESTABLISHED fffff80043058000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx0.129.104 ESTABLISHED fffff80043ba9400 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.250.5466 ESTABLISHED fffff8004368a000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx4.181.210 ESTABLISHED fffff80043b1d400 tcp4 48 0 188.xxx.xxx.xxx.17 xxxxxxxxxx10.209.39 CLOSE_WAIT fffff80043748000 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.59.49418 ESTABLISHED fffff8004385cc00 tcp4 352 0 188.xxx.xxx.xxx.17 xxxxxxxxxx.115.5227 ESTABLISHED fffff80006f8dc00 tcp4 0 0 188.xxx.xxx.xxx.22 188.xxx.xxx.xxx.387 ESTABLISHED fffff80043049400 tcp4 0 0 127.0.0.1.25 *.* LISTEN fffff80043049800 tcp4 0 0 *.22 *.* LISTEN fffff80043049c00 tcp6 0 0 *.22 *.* LISTEN fffff80006f5c000 tcp4 0 0 188.xxx.xxx.xxx.53 *.* LISTEN fffff80006f5c400 tcp4 0 0 188.xxx.xxx.xxx.53 *.* LISTEN fffff80006f5c800 tcp4 0 0 *.1723 *.* LISTEN fffff80006f5cc00 tcp4 0 0 *.5006 *.* LISTEN fffff80006f5d000 tcp4 0 0 *.5005 *.* LISTEN fffff8002c7b27a8 udp4 0 0 *.48950 *.* fffff80043940c40 udp6 0 0 2a02:xxx:xxxx:57.1 *.* fffff800067b5000 udp6 0 0 2a02:xxx:xxxx:46.1 *.* fffff8004377f188 udp6 0 0 2a02:xxx:xxxx:5:.1 *.* fffff8002c7e5c40 udp6 0 0 2a02:xxx:xxxx:50.1 *.* fffff8002c7e4310 udp6 0 0 2a02:xxx:xxxx:29.1 *.* fffff800436ebab8 udp6 0 0 2a02:xxx:xxxx:6:.1 *.* fffff80043405000 udp6 0 0 2a02:xxx:xxxx:22.1 *.* fffff80006cd4c40 udp6 0 0 2a02:xxx:xxxx:55.1 *.* fffff8000678b930 udp6 0 0 2a02:xxx:xxxx:19.1 *.* fffff80043913498 udp6 0 0 2a02:xxx:xxxx:71.1 *.* fffff80006cf1310 udp6 0 0 2a02:xxx:xxxx:66.1 *.* fffff80043913620 udp6 0 0 2a02:xxx:xxxx:68.1 *.* fffff80043b4b620 udp6 0 0 2a02:xxx:xxxx:61.1 *.* fffff80043940930 udp6 0 0 2a02:xxx:xxxx:64.1 *.* fffff8002ca4f620 udp6 0 0 2a02:xxx:xxxx:53.1 *.* fffff8002c7b2c40 udp6 0 0 2a02:xxx:xxxx:33.1 *.* fffff80006cd4000 udp6 0 0 2a02:xxx:xxxx:43.1 *.* fffff800436ea310 udp6 0 0 2a02:xxx:xxxx:52.1 *.* fffff80006cf1000 udp6 0 0 2a02:xxx:xxxx:45.1 *.* fffff800434067a8 udp6 0 0 2a02:xxx:xxxx:42.1 *.* fffff80006cd3188 udp6 0 0 2a02:xxx:xxxx:41.1 *.* fffff800436e0ab8 udp6 0 0 2a02:xxx:xxxx:36.1 *.* fffff80043b7a498 udp6 0 0 2a02:xxx:xxxx:34.1 *.* fffff8000676f188 udp6 0 0 2a02:xxx:xxxx:35.1 *.* fffff8002c7e6498 udp6 0 0 2a02:xxx:xxxx:16.1 *.* fffff8002ca4f000 udp6 0 0 2a02:xxx:xxxx:62.1 *.* fffff8002c7e67a8 udp6 0 0 2a02:xxx:xxxx:51.1 *.* fffff80043913dc8 udp6 0 0 2a02:xxx:xxxx:44.1 *.* fffff8002c7b2620 udp6 0 0 2a02:xxx:xxxx:4:.1 *.* fffff80006f8fab8 udp6 0 0 2a02:xxx:xxxx:2:.1 *.* fffff800067b4310 udp6 0 0 2a02:xxx:xxxx:48.1 *.* fffff80043405188 udp6 0 0 2a02:xxx:xxxx:39.1 *.* fffff80006f58188 udp6 0 0 2a02:xxx:xxxx:38.1 *.* fffff8004380c188 udp6 0 0 2a02:xxx:xxxx:26.1 *.* fffff80043b7a930 udp6 0 0 2a02:xxx:xxxx:10.1 *.* fffff800437e7000 udp6 0 0 2a02:xxx:xxxx:25.1 *.* fffff80006cf1930 udp6 0 0 2a02:xxx:xxxx:30.1 *.* fffff800067b57a8 udp6 0 0 2a02:xxx:xxxx:28.1 *.* fffff800067b4620 udp6 0 0 2a02:xxx:xxxx:8:.1 *.* fffff80043b7b188 udp6 0 0 2a02:xxx:xxxx:24.1 *.* fffff8002c7e4188 udp6 0 0 2a02:xxx:xxxx:13.1 *.* fffff8004377e620 udp6 0 0 2a02:xxx:xxxx:3:.1 *.* fffff80006cd3498 udp6 0 0 2a02:xxx:xxxx:21.1 *.* fffff800067b4ab8 udp6 0 0 2a02:xxx:xxxx:18.1 *.* fffff800067eaab8 udp6 0 0 2a02:xxx:xxxx:47.1 *.* fffff80006cf8930 udp6 0 0 2a02:xxx:xxxx:98.1 *.* fffff800067ea620 udp6 0 0 2a02:xxx:xxxx:79.1 *.* fffff80043b7a000 udp6 0 0 2a02:xxx:xxxx:54.1 *.* fffff8004380c7a8 udp6 0 0 2a02:xxx:xxxx:58.1 *.* fffff80043688620 udp6 0 0 2a02:xxx:xxxx:10.1 *.* fffff80006f8f188 udp6 0 0 2a02:xxx:xxxx:14.1 *.* fffff80006f59dc8 udp6 0 0 2a02:xxx:xxxx:11.1 *.* fffff800067257a8 udp6 0 0 2a02:xxx:xxxx:70.1 *.* fffff80006cf1620 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff800067ea188 udp6 0 0 2a02:xxx:xxxx:11.1 *.* fffff8002ca4f930 udp6 0 0 2a02:xxx:xxxx:14.1 *.* fffff8004377fdc8 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff80043406620 udp6 0 0 2a02:xxx:xxxx:27.1 *.* fffff800436e0498 udp6 0 0 2a02:xxx:xxxx:65.1 *.* fffff8000676f498 udp6 0 0 2a02:xxx:xxxx:31.1 *.* fffff8004376f498 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff80006725620 udp6 0 0 2a02:xxx:xxxx:60.1 *.* fffff800437e7188 udp6 0 0 2a02:xxx:xxxx:10.1 *.* fffff80043404dc8 udp6 0 0 2a02:xxx:xxxx:89.1 *.* fffff80006770ab8 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff800067c8dc8 udp6 0 0 2a02:xxx:xxxx:9:.1 *.* fffff80043b4b000 udp6 0 0 2a02:xxx:xxxx:11.1 *.* fffff80043404930 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff800436eb930 udp6 0 0 2a02:xxx:xxxx:12.1 *.* fffff800067b4000 udp6 0 0 2a02:xxx:xxxx:40.1 *.* fffff8002c7e4000 udp6 0 0 2a02:xxx:xxxx:92.1 *.* fffff800436e0c40 udp6 0 0 2a02:xxx:xxxx:7:.1 *.* fffff800437e7dc8 udp6 0 0 2a02:xxx:xxxx:59.1 *.* fffff80043688dc8 udp6 0 0 2a02:xxx:xxxx:75.1 *.* fffff8004377e188 udp6 0 0 2a02:xxx:xxxx:1:.1 *.* fffff80006cf8c40 udp6 0 0 2a02:xxx:xxxx:63.1 *.* fffff80043b7adc8 udp6 0 0 2a02:xxx:xxxx:56.1 *.* fffff800067e9620 udp6 0 0 2a02:xxx:xxxx:96.1 *.* fffff80043405930 udp6 0 0 2a02:xxx:xxxx:17.1 *.* fffff800067e9c40 udp6 0 0 2a02:xxx:xxxx:49.1 *.* fffff80006cd4dc8 udp6 0 0 2a02:xxx:xxxx:84.1 *.* fffff8002c7e4930 udp6 0 0 2a02:xxx:xxxx:14.1 *.* fffff8004380d310 udp6 0 0 2a02:xxx:xxxx:32.1 *.* fffff800067eb930 udp6 0 0 2a02:xxx:xxxx:90.1 *.* fffff80006771930 udp6 0 0 2a02:xxx:xxxx:23.1 *.* fffff80006cccdc8 udp6 0 0 2a02:xxx:xxxx:37.1 *.* fffff80043404498 udp6 0 0 2a02:xxx:xxxx:20.1 *.* fffff80006cd4ab8 udp6 0 0 2a02:xxx:xxxx:15.1 *.* fffff80043406310 udp6 0 0 2a02:xxx:xxxx::.12 *.* fffff80006cd2498 udp6 0 0 fe80::be30:5bff:.1 *.* fffff800067eb310 udp4 0 0 188.xxx.xxx.xxx.12 *.* fffff800067eb498 udp4 0 0 188.xxx.xxx.xxx.53 *.* fffff800067eb620 udp4 0 0 188.xxx.xxx.xxx.53 *.* fffff800067eb7a8 udp4 0 0 *.1701 *.* fffff80006f58310 udp4 0 0 188.xxx.xxx.xxx.12 *.* fffff80006f58498 udp4 0 0 188.xxx.xxx.xxx.12 *.* fffff80006f58620 udp4 0 0 127.0.0.1.123 *.* fffff80006f587a8 udp6 0 0 fe80::1%lo0.123 *.* fffff80006f58930 udp6 0 0 ::1.123 *.* fffff80006f58ab8 udp6 0 0 2a02:xxx:xxx:130.1 *.* fffff80006f58c40 udp6 0 0 fe80::be30:5bff:.1 *.* fffff80006f58dc8 udp4 0 0 188.xxx.xxx.xxx.12 *.* fffff80006f59000 udp6 0 0 *.123 *.* fffff80006f59188 udp4 0 0 *.123 *.* fffff80006771ab8 udp4 0 0 *.514 *.* fffff80006771c40 udp6 0 0 *.514 *.* Netgraph sockets PCB Type Recv-Q Send-Q Node Address #Hooks fffff80006463dc0 ctrl 0 0 mpd833-stats: 0 fffff800064642c0 ctrl 0 0 mpd833-eso: 0 fffff80006464480 ctrl 0 0 mpd833-cso: 0 fffff800064644c0 ctrl 0 0 mpd833-lso: 90 fffff80006464280 data 0 0 mpd833-eso: 0 fffff80006464380 data 0 0 mpd833-cso: 0 fffff80006464580 data 658 0 mpd833-lso: 90 Active UNIX domain sockets Address Type Recv-Q Send-Q Inode Conn Refs Nextref Addr fffff80043019960 stream 0 0 0 fffff80043019870 0 0 fffff80043019870 stream 0 0 0 fffff80043019960 0 0 fffff800067820f0 stream 0 0 0 fffff80006782000 0 0 fffff80006782000 stream 0 0 0 fffff800067820f0 0 0 fffff800067822d0 stream 0 0 fffff8000674e3b0 0 0 0 /var/run/devd.pipe fffff80006cf7d20 dgram 0 0 0 fffff80006e85b40 0 fffff80006cea960 fffff80006cf7e10 dgram 0 0 0 fffff80006e85c30 0 0 fffff80006cea960 dgram 0 0 0 fffff80006e85b40 0 fffff80006cee870 fffff80006cee870 dgram 0 0 0 fffff80006e85b40 0 fffff800067821e0 fffff800067821e0 dgram 0 0 0 fffff80006e85b40 0 fffff80006ceab40 fffff80006ceab40 dgram 0 0 0 fffff80006e85b40 0 fffff80006e85a50 fffff80006e85a50 dgram 0 0 0 fffff80006e85b40 0 0 fffff80006e85b40 dgram 0 0 fffff800065a7760 0 fffff80006cf7d20 0 /var/run/logpriv fffff80006e85c30 dgram 0 0 fffff800065a7938 0 fffff80006cf7e10 0 /var/run/log --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="lsof-n.txt" COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME kernel 0 root cwd VDIR 0,90 1024 2 / kernel 0 root rtd VDIR 0,90 1024 2 / init 1 root cwd VDIR 0,90 1024 2 / init 1 root rtd VDIR 0,90 1024 2 / init 1 root txt VREG 0,90 938256 1444694 /sbin/init adjkerntz 112 root cwd VDIR 0,90 1024 2 / adjkerntz 112 root rtd VDIR 0,90 1024 2 / adjkerntz 112 root txt VREG 0,90 9160 1444609 /sbin/adjkerntz adjkerntz 112 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 adjkerntz 112 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 adjkerntz 112 root 0u VCHR 0,15 0t0 15 /dev/null adjkerntz 112 root 1u VCHR 0,15 0t0 15 /dev/null adjkerntz 112 root 2u VCHR 0,15 0t0 15 /dev/null devd 630 root cwd VDIR 0,90 1024 2 / devd 630 root rtd VDIR 0,90 1024 2 / devd 630 root txt VREG 0,90 1062424 1444620 /sbin/devd devd 630 root 0u VCHR 0,15 0t0 15 /dev/null devd 630 root 1u VCHR 0,15 0t0 15 /dev/null devd 630 root 2u VCHR 0,15 0t0 15 /dev/null devd 630 root 3r VCHR 0,5 0t386382 5 /dev/devctl devd 630 root 4u unix 0xfffff800067e82b8 0t0 /var/run/devd.pipe devd 630 root 5w VREG 0,90 3 1043373 /var/run/devd.pid devd 630 root 6u unix 0xfffff80006724000 0t0 ->0xfffff80006cf02b8 syslogd 770 root cwd VDIR 0,90 1024 2 / syslogd 770 root rtd VDIR 0,90 1024 2 / syslogd 770 root txt VREG 0,90 39632 84493 /usr/sbin/syslogd syslogd 770 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 syslogd 770 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 syslogd 770 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 syslogd 770 root 1u VCHR 0,15 0t0 15 /dev/null syslogd 770 root 2u VCHR 0,15 0t0 15 /dev/null syslogd 770 root 3w VREG 0,90 3 1043379 /var/run/syslog.pid syslogd 770 root 4u unix 0xfffff80006cf0570 0t0 /var/run/log syslogd 770 root 5u unix 0xfffff80006cf02b8 0t0 /var/run/logpriv syslogd 770 root 6u IPv6 0xfffff800067727c0 0t0 UDP *:syslog syslogd 770 root 7u IPv4 0xfffff800067727b0 0t0 UDP *:syslog syslogd 770 root 8r VCHR 0,31 0t1008588 31 /dev/klog syslogd 770 root 9w VCHR 0,6 0t0 6 /dev/console syslogd 770 root 10w VREG 0,90 24603 1043433 /var/log/messages syslogd 770 root 11w VREG 0,90 65 1043570 /var/log/security syslogd 770 root 12w VREG 0,90 49378 1043388 /var/log/auth.log syslogd 770 root 13w VREG 0,90 212085 1043383 /var/log/maillog syslogd 770 root 14w VREG 0,90 65 1043542 /var/log/lpd-errs syslogd 770 root 15w VREG 0,90 65 1043583 /var/log/xferlog syslogd 770 root 16w VREG 0,90 23905 1043375 /var/log/cron syslogd 770 root 17w VREG 0,90 77432 1043367 /var/log/debug.log syslogd 770 root 18w VREG 0,90 65 1043569 /var/log/ppp.log mpd5 833 root cwd VDIR 0,90 512 174194 /usr/local/etc/mpd5 mpd5 833 root rtd VDIR 0,90 1024 2 / mpd5 833 root txt VREG 0,90 634456 163073 /usr/local/sbin/mpd5 mpd5 833 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 mpd5 833 root txt VREG 0,90 37496 85255 /usr/lib/libwrap.so.6 mpd5 833 root txt VREG 0,90 49376 84868 /usr/lib/libpam.so.5 mpd5 833 root txt VREG 0,90 61952 1203875 /lib/libcrypt.so.5 mpd5 833 root txt VREG 0,90 17664 84751 /usr/lib/libnetgraph.so.4 mpd5 833 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 mpd5 833 root txt VREG 0,90 24712 84888 /usr/lib/libradius.so.4 mpd5 833 root txt VREG 0,90 430328 85129 /usr/lib/libssl.so.7 mpd5 833 root txt VREG 0,90 266440 1203900 /lib/libpcap.so.8 mpd5 833 root txt VREG 0,90 68872 83752 /usr/lib/libfetch.so.6 mpd5 833 root txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 mpd5 833 root txt VREG 0,90 105096 1203904 /lib/libthr.so.3 mpd5 833 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 mpd5 833 root 0u VCHR 0,15 0t0 15 /dev/null mpd5 833 root 1u VCHR 0,15 0t0 15 /dev/null mpd5 833 root 2u VCHR 0,15 0t0 15 /dev/null mpd5 833 root 3u unix 0xfffff80006cf0000 0t0 ->0xfffff80006cf02b8 mpd5 833 root 4u VREG 0,90 4 1043419 /var/run/mpd5.pid mpd5 833 root 5u sock 0t0 no further information on family 0x20 mpd5 833 root 6u sock 0t0 no further information on family 0x20 mpd5 833 root 7u PIPE 0xfffff800066d68b8 16384 ->0xfffff800066d6a18, cnt=1, in=1 mpd5 833 root 8u PIPE 0xfffff800066d6a18 0 ->0xfffff800066d68b8 mpd5 833 root 9u sock 0t0 no further information on family 0x20 mpd5 833 root 10u sock 0t0 no further information on family 0x20 mpd5 833 root 11u sock 0t0 no further information on family 0x20 mpd5 833 root 12u sock 0t0 no further information on family 0x20 mpd5 833 root 13u PIPE 0xfffff800066d6ba0 16384 ->0xfffff800066d6d00 mpd5 833 root 14u PIPE 0xfffff800066d6d00 0 ->0xfffff800066d6ba0 mpd5 833 root 15u IPv4 0xfffff80006f8c000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx10:51514 (ESTABLISHED) mpd5 833 root 16u IPv4 0xfffff80006f5d000 0t0 TCP *:5005 (LISTEN) mpd5 833 root 17u PIPE 0xfffff800065372e8 16384 ->0xfffff80006537448 mpd5 833 root 18u PIPE 0xfffff80006537448 0 ->0xfffff800065372e8 mpd5 833 root 19u IPv4 0xfffff80006f5cc00 0t0 TCP *:5006 (LISTEN) mpd5 833 root 20u IPv4 0xfffff80043ba9400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx250:54664 (ESTABLISHED) mpd5 833 root 21u PIPE 0xfffff80006537000 16384 ->0xfffff80006537160 mpd5 833 root 22u PIPE 0xfffff80006537160 0 ->0xfffff80006537000 mpd5 833 root 23u IPv4 0xfffff80006f5c800 0t0 TCP *:pptp (LISTEN) mpd5 833 root 24u IPv4 0xfffff800067b6f80 0t0 UDP *:l2f mpd5 833 root 25u IPv4 0xfffff8004385cc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx115:52275 (ESTABLISHED) mpd5 833 root 26u IPv4 0xfffff800439e4c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx00:49250 (ESTABLISHED) mpd5 833 root 27u IPv4 0xfffff80006f8e400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx2:59827 (ESTABLISHED) mpd5 833 root 28u sock 0t0 no further information on family 0x20 mpd5 833 root 29u IPv4 0xfffff80043b1d400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx0.209:39749 (CLOSE_WAIT) mpd5 833 root 30u IPv4 0xfffff8002c503000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx60:49271 (ESTABLISHED) mpd5 833 root 31u IPv4 0xfffff800438f9800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx152:59142 (ESTABLISHED) mpd5 833 root 32u IPv4 0xfffff80006f63000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx215:61726 (ESTABLISHED) mpd5 833 root 33u IPv4 0xfffff80043b1c000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.114:52042 (ESTABLISHED) mpd5 833 root 34u IPv4 0xfffff8002c503400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx73:56072 (ESTABLISHED) mpd5 833 root 35u IPv4 0xfffff8002cc86000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.84:59946 (ESTABLISHED) mpd5 833 root 36u IPv4 0xfffff80043b1cc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx172:49412 (ESTABLISHED) mpd5 833 root 37u IPv4 0xfffff80043748000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx59:49418 (ESTABLISHED) mpd5 833 root 38u IPv4 0xfffff8002ca20800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.45:49215 (ESTABLISHED) mpd5 833 root 39u IPv4 0xfffff800438e2c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.162:55983 (ESTABLISHED) mpd5 833 root 40u IPv4 0xfffff8002c663800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.35:49825 (ESTABLISHED) mpd5 833 root 41u IPv4 0xfffff800437bd000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.22:39793 (CLOSE_WAIT) mpd5 833 root 42u IPv4 0xfffff80043ba8000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx8:50811 (ESTABLISHED) mpd5 833 root 43u IPv4 0xfffff800437bd800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx99:53255 (ESTABLISHED) mpd5 833 root 44u IPv4 0xfffff8002cc82000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.7:58039 (ESTABLISHED) mpd5 833 root 45u IPv4 0xfffff8002ca21800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.166:52922 (ESTABLISHED) mpd5 833 root 46u IPv4 0xfffff80043b1d800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx249:58378 (ESTABLISHED) mpd5 833 root 47u IPv4 0xfffff80043689800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.155:53530 (CLOSED) mpd5 833 root 48u IPv4 0xfffff8002c662400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx220:49249 (ESTABLISHED) mpd5 833 root 49u IPv4 0xfffff8002cac7400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx160:53344 (ESTABLISHED) mpd5 833 root 50u IPv4 0xfffff80043ba8800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.114:50112 (ESTABLISHED) mpd5 833 root 51u IPv4 0xfffff8002cac5400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx1:52620 (ESTABLISHED) mpd5 833 root 52u IPv4 0xfffff80043800c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx10:57446 (CLOSE_WAIT) mpd5 833 root 53u IPv4 0xfffff8004368a000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.181:21051 (ESTABLISHED) mpd5 833 root 54u IPv4 0xfffff80043059000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx3:49207 (ESTABLISHED) mpd5 833 root 55u IPv4 0xfffff8002ca23c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.128:21186 (ESTABLISHED) mpd5 833 root 56u IPv4 0xfffff8004368a400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx58:55408 (ESTABLISHED) mpd5 833 root 57u IPv4 0xfffff800438ea000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx187:52050 (ESTABLISHED) mpd5 833 root 58u IPv4 0xfffff80043059400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx128:50273 (ESTABLISHED) mpd5 833 root 59u IPv4 0xfffff80043749c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.117:47928 (ESTABLISHED) mpd5 833 root 60u IPv4 0xfffff80006f8ec00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx64:49740 (CLOSED) mpd5 833 root 61u IPv4 0xfffff80043749000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx48:49247 (ESTABLISHED) mpd5 833 root 62u IPv4 0xfffff8004368a800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx236:49255 (ESTABLISHED) mpd5 833 root 63u IPv4 0xfffff8004367c000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx6:49328 (ESTABLISHED) mpd5 833 root 64u IPv4 0xfffff8002cbd8800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.214:49186 (ESTABLISHED) mpd5 833 root 65u IPv4 0xfffff80043749400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx20:49197 (ESTABLISHED) mpd5 833 root 66u IPv4 0xfffff8002c504400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.100:50500 (ESTABLISHED) mpd5 833 root 67u IPv4 0xfffff8002c662000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.33:61897 (ESTABLISHED) mpd5 833 root 68u IPv4 0xfffff8002ca23800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx146:49247 (ESTABLISHED) mpd5 833 root 69u IPv4 0xfffff800439e4000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx177:43822 (CLOSE_WAIT) mpd5 833 root 70u IPv4 0xfffff800430e0400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.55:3913 (ESTABLISHED) mpd5 833 root 71u IPv4 0xfffff8004367d800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.6:51090 (ESTABLISHED) mpd5 833 root 72u IPv4 0xfffff8002ca22000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx22:49160 (ESTABLISHED) mpd5 833 root 73u IPv4 0xfffff8002c663000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.42:59731 (ESTABLISHED) mpd5 833 root 74u IPv4 0xfffff800439e2400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.134:54036 (ESTABLISHED) mpd5 833 root 75u IPv4 0xfffff8004304cc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.40:57325 (ESTABLISHED) mpd5 833 root 76u IPv4 0xfffff8002cbdac00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx3.125:2360 (ESTABLISHED) mpd5 833 root 77u IPv4 0xfffff80006f63400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx15:19451 (CLOSE_WAIT) mpd5 833 root 78u IPv4 0xfffff80043baa400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx40:52925 (ESTABLISHED) mpd5 833 root 79u IPv4 0xfffff800438ea400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx153:10028 (ESTABLISHED) mpd5 833 root 80u IPv4 0xfffff8002c505000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.58:59241 (ESTABLISHED) mpd5 833 root 81u IPv4 0xfffff8002c9bdc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.188:2763 (ESTABLISHED) mpd5 833 root 82u IPv4 0xfffff8002cbd9400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx195:49191 (ESTABLISHED) mpd5 833 root 83u IPv4 0xfffff8002c662800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.126:49332 (ESTABLISHED) mpd5 833 root 84u IPv4 0xfffff8002c663400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.211:43965 (CLOSE_WAIT) mpd5 833 root 85u IPv4 0xfffff800430df800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.37:55361 (ESTABLISHED) mpd5 833 root 86u IPv4 0xfffff80043bab400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx51:56243 (ESTABLISHED) mpd5 833 root 87u IPv4 0xfffff8002cbda400 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:38346 (CLOSE_WAIT) mpd5 833 root 88u IPv4 0xfffff8004305a800 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:38373 (CLOSE_WAIT) mpd5 833 root 89u IPv4 0xfffff800439e3000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx201:51218 (ESTABLISHED) mpd5 833 root 90u IPv4 0xfffff8004367dc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx6:52654 (ESTABLISHED) mpd5 833 root 91u IPv4 0xfffff8004303c800 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:38398 (CLOSE_WAIT) mpd5 833 root 92u IPv4 0xfffff800430df400 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:40537 (CLOSE_WAIT) mpd5 833 root 93u IPv4 0xfffff800438f9c00 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:40569 (CLOSE_WAIT) mpd5 833 root 94u IPv4 0xfffff8004368bc00 0t0 TCP 188.xxx.xxx.xxx:5006->188.xxx.xxx.xx:40583 (CLOSE_WAIT) mpd5 833 root 98u IPv4 0xfffff80043b1b400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.65:49243 (ESTABLISHED) mpd5 833 root 102u IPv4 0xfffff80043689c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.59:33575 (CLOSE_WAIT) mpd5 833 root 105u IPv4 0xfffff8004305a400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx59:1246 (ESTABLISHED) mpd5 833 root 107u IPv4 0xfffff80043049000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.152:33987 (CLOSE_WAIT) mpd5 833 root 108u IPv4 0xfffff8002c664800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx103:54257 (CLOSE_WAIT) mpd5 833 root 109u IPv4 0xfffff800430de400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.28:49892 (ESTABLISHED) mpd5 833 root 110u IPv4 0xfffff800430ddc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx5:43213 (CLOSE_WAIT) mpd5 833 root 111u IPv4 0xfffff800439e2c00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx251:59595 (ESTABLISHED) mpd5 833 root 117u IPv4 0xfffff80043058000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.129:1046 (ESTABLISHED) mpd5 833 root 119u IPv4 0xfffff8002ca22800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.23:50277 (ESTABLISHED) mpd5 833 root 120u IPv4 0xfffff800439e4400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx188:49543 (ESTABLISHED) mpd5 833 root 121u IPv4 0xfffff8002cbda000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.38:49300 (ESTABLISHED) mpd5 833 root 122u IPv4 0xfffff8004368ac00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx211:38077 (CLOSE_WAIT) mpd5 833 root 123u IPv4 0xfffff8002cbd9000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.96:58899 (ESTABLISHED) mpd5 833 root 128u IPv4 0xfffff800438f9000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.252:64082 (ESTABLISHED) mpd5 833 root 135u IPv4 0xfffff80043803800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx7:55321 (ESTABLISHED) mpd5 833 root 138u IPv4 0xfffff80043689000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.216:49279 (ESTABLISHED) mpd5 833 root 142u IPv4 0xfffff8002c664400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx6:50488 (ESTABLISHED) mpd5 833 root 143u IPv4 0xfffff8002cc86400 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.201:49453 (ESTABLISHED) mpd5 833 root 145u IPv4 0xfffff800439e2800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx5.113:60664 (ESTABLISHED) mpd5 833 root 146u IPv4 0xfffff80006f5dc00 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx:58713 (ESTABLISHED) mpd5 833 root 149u IPv4 0xfffff8004385c000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx142:55614 (ESTABLISHED) mpd5 833 root 154u IPv4 0xfffff80043baa000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx60:49842 (ESTABLISHED) mpd5 833 root 160u IPv4 0xfffff8002cac6800 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx.61:49205 (ESTABLISHED) mpd5 833 root 172u IPv4 0xfffff80043803000 0t0 TCP 188.xxx.xxx.xxx:pptp->xxxxxxxxxx227:56375 (ESTABLISHED) ng_queue 841 root cwd VDIR 0,90 1024 2 / ng_queue 841 root rtd VDIR 0,90 1024 2 / sh 842 root cwd VDIR 0,90 1024 2 / sh 842 root rtd VDIR 0,90 1024 2 / sh 842 root txt VREG 0,90 141600 246275 /bin/sh sh 842 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sh 842 root txt VREG 0,90 163032 1203884 /lib/libedit.so.7 sh 842 root txt VREG 0,90 309968 1203894 /lib/libncurses.so.8 sh 842 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sh 842 root 0r VCHR 0,15 0t0 15 /dev/null sh 842 root 1u VBAD (revoked) sh 842 root 2u VBAD (revoked) sh 842 root 10r VREG 0,90 196 346906 /usr/local/etc/unbound/rns1/run sh 843 root cwd VDIR 0,90 1024 2 / sh 843 root rtd VDIR 0,90 1024 2 / sh 843 root txt VREG 0,90 141600 246275 /bin/sh sh 843 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sh 843 root txt VREG 0,90 163032 1203884 /lib/libedit.so.7 sh 843 root txt VREG 0,90 309968 1203894 /lib/libncurses.so.8 sh 843 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sh 843 root 0r VCHR 0,15 0t0 15 /dev/null sh 843 root 1u VBAD (revoked) sh 843 root 2u VBAD (revoked) sh 843 root 10r VREG 0,90 196 346908 /usr/local/etc/unbound/rns2/run unbound 849 nobody cwd VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 849 nobody rtd VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 849 nobody jld VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 849 nobody txt VREG 0,90 621845 163084 /usr/local/sbin/unbound unbound 849 nobody txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 unbound 849 nobody txt VREG 0,90 430328 85129 /usr/lib/libssl.so.7 unbound 849 nobody txt VREG 0,90 382554 222245 /usr/local/lib/libldns.so.1 unbound 849 nobody txt VREG 0,90 70152 1203908 /lib/libutil.so.9 unbound 849 nobody txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 unbound 849 nobody txt VREG 0,90 105096 1203904 /lib/libthr.so.3 unbound 849 nobody txt VREG 0,90 1565144 1203873 /lib/libc.so.7 unbound 849 nobody 0r VCHR 0,15 0t0 15 /dev/null unbound 849 nobody 1u VBAD (revoked) unbound 849 nobody 2u VBAD (revoked) unbound 849 nobody 3u IPv4 0xfffff800067b6f60 0t0 UDP 188.xxx.xxx.xxx:domain unbound 849 nobody 4u IPv4 0xfffff80006f5c000 0t0 TCP 188.xxx.xxx.xxx:domain (LISTEN) unbound 849 nobody 5u unix 0xfffff8000678a828 0t0 ->0xfffff80006cf02b8 unbound 849 nobody 6u unix 0xfffff80006cd1570 0t0 ->0xfffff80006776ae0 unbound 849 nobody 7u unix 0xfffff80006776ae0 0t0 ->0xfffff80006cd1570 unbound 849 nobody 8u IPv4 0xfffff80006cd5150 0t0 UDP *:57111 unbound 849 nobody 9u IPv4 0xfffff80006cce3c0 0t0 UDP *:21238 unbound 850 nobody cwd VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 850 nobody rtd VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 850 nobody jld VDIR 0,90 512 346902 /usr/local/etc/unbound unbound 850 nobody txt VREG 0,90 621845 163084 /usr/local/sbin/unbound unbound 850 nobody txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 unbound 850 nobody txt VREG 0,90 430328 85129 /usr/lib/libssl.so.7 unbound 850 nobody txt VREG 0,90 382554 222245 /usr/local/lib/libldns.so.1 unbound 850 nobody txt VREG 0,90 70152 1203908 /lib/libutil.so.9 unbound 850 nobody txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 unbound 850 nobody txt VREG 0,90 105096 1203904 /lib/libthr.so.3 unbound 850 nobody txt VREG 0,90 1565144 1203873 /lib/libc.so.7 unbound 850 nobody 0r VCHR 0,15 0t0 15 /dev/null unbound 850 nobody 1u VBAD (revoked) unbound 850 nobody 2u VBAD (revoked) unbound 850 nobody 3u IPv4 0xfffff800067b6f70 0t0 UDP 188.xxx.xxx.xxx:domain unbound 850 nobody 4u IPv4 0xfffff80006f5c400 0t0 TCP 188.xxx.xxx.xxx:domain (LISTEN) unbound 850 nobody 5u unix 0xfffff800067e2570 0t0 ->0xfffff80006cf02b8 unbound 850 nobody 6u unix 0xfffff800067e2000 0t0 ->0xfffff800067e22b8 unbound 850 nobody 7u unix 0xfffff800067e22b8 0t0 ->0xfffff800067e2000 unbound 850 nobody 10u IPv4 0xfffff80043b10ac0 0t0 UDP *:19995 unbound 850 nobody 11u IPv4 0xfffff800437bb020 0t0 UDP *:48607 ntpd 867 root cwd VDIR 0,90 1024 2 / ntpd 867 root rtd VDIR 0,90 1024 2 / ntpd 867 root txt VREG 0,90 420680 84259 /usr/sbin/ntpd ntpd 867 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 ntpd 867 root txt VREG 0,90 172096 1203892 /lib/libm.so.5 ntpd 867 root txt VREG 0,90 66416 1203893 /lib/libmd.so.6 ntpd 867 root txt VREG 0,90 23760 84990 /usr/lib/librt.so.1 ntpd 867 root txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 ntpd 867 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 ntpd 867 root txt VREG 0,90 105096 1203904 /lib/libthr.so.3 ntpd 867 root 0u VCHR 0,15 0t0 15 /dev/null ntpd 867 root 1u VCHR 0,15 0t0 15 /dev/null ntpd 867 root 2u VCHR 0,15 0t0 15 /dev/null ntpd 867 root 3u unix 0xfffff8000676cae0 0t0 ->0xfffff80006cf02b8 ntpd 867 root 20u IPv4 0xfffff80006cd5f60 0t0 UDP *:ntp ntpd 867 root 21u IPv6 0xfffff80006cd5f50 0t0 UDP *:ntp ntpd 867 root 22u IPv4 0xfffff80006cd5f40 0t0 UDP 188.xxx.xxx.xxx:ntp ntpd 867 root 23u IPv6 0xfffff80006cd5f30 0t0 UDP [fe80:2::be30:5bff:fee2:95b1]:ntp ntpd 867 root 24u IPv6 0xfffff80006cd5f20 0t0 UDP [2a02:xxx.xxx:1307::2]:ntp ntpd 867 root 25u IPv6 0xfffff80006cd5f10 0t0 UDP [::1]:ntp ntpd 867 root 26u IPv6 0xfffff80006cd5f00 0t0 UDP [fe80:3::1]:ntp ntpd 867 root 27u IPv4 0xfffff80006cd5ef0 0t0 UDP 127.0.0.1:ntp ntpd 867 root 28u IPv4 0xfffff80006cd5ee0 0t0 UDP 188.xxx.xxx.xxx:ntp ntpd 867 root 29u IPv4 0xfffff80006cd5ed0 0t0 UDP 188.xxx.xxx.xxx:ntp ntpd 867 root 30u rte 0xfffff8000645d6c0 0t0 ntpd 867 root 31u IPv4 0xfffff800067b6f50 0t0 UDP 188.xxx.xxx.xxx:ntp ntpd 867 root 32u IPv6 0xfffff80006cd5d70 0t0 UDP [2a02:xxx:xxxx::]:ntp ntpd 867 root 33u IPv6 0xfffff80043b10a30 0t0 UDP [2a02:xxx:xxxx:1::]:ntp ntpd 867 root 34u IPv6 0xfffff80006772f10 0t0 UDP [2a02:xxx:xxxx:2::]:ntp ntpd 867 root 35u IPv6 0xfffff80043b102b0 0t0 UDP [2a02:xxx:xxxx:3::]:ntp ntpd 867 root 36u IPv6 0xfffff80006ccec30 0t0 UDP [2a02:xxx:xxxx:4::]:ntp ntpd 867 root 37u IPv6 0xfffff80006cd5660 0t0 UDP [fe80:8::be30:5bff:fee2:95b0]:ntp ntpd 867 root 38u IPv6 0xfffff800437bb710 0t0 UDP [2a02:xxx:xxxx:5::]:ntp ntpd 867 root 39u IPv6 0xfffff80006cd5000 0t0 UDP [2a02:xxx:xxxx:6::]:ntp ntpd 867 root 40u IPv6 0xfffff800437bb7a0 0t0 UDP [2a02:xxx:xxxx:7::]:ntp ntpd 867 root 41u IPv6 0xfffff8004376dd40 0t0 UDP [2a02:xxx:xxxx:8::]:ntp ntpd 867 root 42u IPv6 0xfffff800437bb4f0 0t0 UDP [2a02:xxx:xxxx:9::]:ntp ntpd 867 root 43u IPv6 0xfffff8004376d790 0t0 UDP [2a02:xxx:xxxx:10::]:ntp ntpd 867 root 44u IPv6 0xfffff800067b6650 0t0 UDP [2a02:xxx:xxxx:11::]:ntp ntpd 867 root 45u IPv6 0xfffff80043b10870 0t0 UDP [2a02:xxx:xxxx:12::]:ntp ntpd 867 root 46u IPv6 0xfffff80043b10230 0t0 UDP [2a02:xxx:xxxx:13::]:ntp ntpd 867 root 47u IPv6 0xfffff80043b10320 0t0 UDP [2a02:xxx:xxxx:14::]:ntp ntpd 867 root 48u IPv6 0xfffff80006cce2b0 0t0 UDP [2a02:xxx:xxxx:15::]:ntp ntpd 867 root 49u IPv6 0xfffff80006cd53a0 0t0 UDP [2a02:xxx:xxxx:16::]:ntp ntpd 867 root 50u IPv6 0xfffff800437bbd00 0t0 UDP [2a02:xxx:xxxx:17::]:ntp ntpd 867 root 51u IPv6 0xfffff800067b6e80 0t0 UDP [2a02:xxx:xxxx:18::]:ntp ntpd 867 root 52u IPv6 0xfffff800437bb550 0t0 UDP [2a02:xxx:xxxx:19::]:ntp ntpd 867 root 53u IPv6 0xfffff80006cce410 0t0 UDP [2a02:xxx:xxxx:20::]:ntp ntpd 867 root 54u IPv6 0xfffff80006772a30 0t0 UDP [2a02:xxx:xxxx:21::]:ntp ntpd 867 root 55u IPv6 0xfffff80006cd5fa0 0t0 UDP [2a02:xxx:xxxx:22::]:ntp ntpd 867 root 56u IPv6 0xfffff8004376d2e0 0t0 UDP [2a02:xxx:xxxx:23::]:ntp ntpd 867 root 57u IPv6 0xfffff800437bbc40 0t0 UDP [2a02:xxx:xxxx:24::]:ntp ntpd 867 root 58u IPv6 0xfffff8004376da10 0t0 UDP [2a02:xxx:xxxx:25::]:ntp ntpd 867 root 59u IPv6 0xfffff80006772f00 0t0 UDP [2a02:xxx:xxxx:26::]:ntp ntpd 867 root 60u IPv6 0xfffff800067b6e70 0t0 UDP [2a02:xxx:xxxx:27::]:ntp ntpd 867 root 61u IPv6 0xfffff8004376da00 0t0 UDP [2a02:xxx:xxxx:28::]:ntp ntpd 867 root 62u IPv6 0xfffff800437bb9b0 0t0 UDP [2a02:xxx:xxxx:29::]:ntp ntpd 867 root 63u IPv6 0xfffff8004376df10 0t0 UDP [2a02:xxx:xxxx:30::]:ntp ntpd 867 root 64u IPv6 0xfffff800437bb0a0 0t0 UDP [2a02:xxx:xxxx:31::]:ntp ntpd 867 root 65u IPv6 0xfffff80006ccea90 0t0 UDP [2a02:xxx:xxxx:32::]:ntp ntpd 867 root 66u IPv6 0xfffff80006cd5100 0t0 UDP [2a02:xxx:xxxx:33::]:ntp ntpd 867 root 67u IPv6 0xfffff8004376db50 0t0 UDP [2a02:xxx:xxxx:34::]:ntp ntpd 867 root 68u IPv6 0xfffff800067b6910 0t0 UDP [2a02:xxx:xxxx:35::]:ntp ntpd 867 root 69u IPv6 0xfffff800437bb860 0t0 UDP [2a02:xxx:xxxx:36::]:ntp ntpd 867 root 70u IPv6 0xfffff80006cce6f0 0t0 UDP [2a02:xxx:xxxx:37::]:ntp ntpd 867 root 71u IPv6 0xfffff80006cd5550 0t0 UDP [2a02:xxx:xxxx:38::]:ntp ntpd 867 root 72u IPv6 0xfffff80006cd5330 0t0 UDP [2a02:xxx:xxxx:39::]:ntp ntpd 867 root 73u IPv6 0xfffff8004376de80 0t0 UDP [2a02:xxx:xxxx:40::]:ntp ntpd 867 root 74u IPv6 0xfffff80006cce540 0t0 UDP [2a02:xxx:xxxx:41::]:ntp ntpd 867 root 75u IPv6 0xfffff80006cd54c0 0t0 UDP [2a02:xxx:xxxx:42::]:ntp ntpd 867 root 76u IPv6 0xfffff8004376db80 0t0 UDP [2a02:xxx:xxxx:43::]:ntp ntpd 867 root 77u IPv6 0xfffff8004376d0d0 0t0 UDP [2a02:xxx:xxxx:44::]:ntp ntpd 867 root 78u IPv6 0xfffff800067b6770 0t0 UDP [2a02:xxx:xxxx:45::]:ntp ntpd 867 root 79u IPv6 0xfffff800067721c0 0t0 UDP [2a02:xxx:xxxx:46::]:ntp ntpd 867 root 80u IPv6 0xfffff800437bb2b0 0t0 UDP [2a02:xxx:xxxx:47::]:ntp ntpd 867 root 81u IPv6 0xfffff800067b6e10 0t0 UDP [2a02:xxx:xxxx:48::]:ntp ntpd 867 root 82u IPv6 0xfffff80043b10c70 0t0 UDP [2a02:xxx:xxxx:49::]:ntp ntpd 867 root 83u IPv6 0xfffff80043b102c0 0t0 UDP [2a02:xxx:xxxx:50::]:ntp ntpd 867 root 84u IPv6 0xfffff80006772290 0t0 UDP [2a02:xxx:xxxx:51::]:ntp ntpd 867 root 85u IPv6 0xfffff80006772060 0t0 UDP [2a02:xxx:xxxx:52::]:ntp ntpd 867 root 86u IPv6 0xfffff80006cce360 0t0 UDP [2a02:xxx:xxxx:53::]:ntp ntpd 867 root 87u IPv6 0xfffff80006772e30 0t0 UDP [2a02:xxx:xxxx:54::]:ntp ntpd 867 root 88u IPv6 0xfffff80006cd5560 0t0 UDP [2a02:xxx:xxxx:55::]:ntp ntpd 867 root 89u IPv6 0xfffff8004376d1f0 0t0 UDP [2a02:xxx:xxxx:56::]:ntp ntpd 867 root 90u IPv6 0xfffff80043b10b00 0t0 UDP [2a02:xxx:xxxx:57::]:ntp ntpd 867 root 91u IPv6 0xfffff80006ccec00 0t0 UDP [2a02:xxx:xxxx:58::]:ntp ntpd 867 root 92u IPv6 0xfffff80043b105d0 0t0 UDP [2a02:xxx:xxxx:59::]:ntp ntpd 867 root 93u IPv6 0xfffff80006cd52d0 0t0 UDP [2a02:xxx:xxxx:60::]:ntp ntpd 867 root 94u IPv6 0xfffff80006772f30 0t0 UDP [2a02:xxx:xxxx:61::]:ntp ntpd 867 root 95u IPv6 0xfffff80006cd52a0 0t0 UDP [2a02:xxx:xxxx:62::]:ntp ntpd 867 root 96u IPv6 0xfffff800067b6d20 0t0 UDP [2a02:xxx:xxxx:63::]:ntp ntpd 867 root 97u IPv6 0xfffff80006cd5030 0t0 UDP [2a02:xxx:xxxx:64::]:ntp ntpd 867 root 98u IPv6 0xfffff800067729f0 0t0 UDP [2a02:xxx:xxxx:65::]:ntp ntpd 867 root 99u IPv6 0xfffff800067725b0 0t0 UDP [2a02:xxx:xxxx:66::]:ntp ntpd 867 root 101u IPv6 0xfffff80006cce290 0t0 UDP [2a02:xxx:xxxx:68::]:ntp ntpd 867 root 103u IPv6 0xfffff80006772170 0t0 UDP [2a02:xxx:xxxx:70::]:ntp ntpd 867 root 104u IPv6 0xfffff80043b10d30 0t0 UDP [2a02:xxx:xxxx:71::]:ntp ntpd 867 root 108u IPv6 0xfffff800437bb4b0 0t0 UDP [2a02:xxx:xxxx:75::]:ntp ntpd 867 root 112u IPv6 0xfffff80006cceec0 0t0 UDP [2a02:xxx:xxxx:79::]:ntp ntpd 867 root 117u IPv6 0xfffff800067b6510 0t0 UDP [2a02:xxx:xxxx:84::]:ntp ntpd 867 root 122u IPv6 0xfffff80043b102e0 0t0 UDP [2a02:xxx:xxxx:89::]:ntp ntpd 867 root 123u IPv6 0xfffff8004376dec0 0t0 UDP [2a02:xxx:xxxx:90::]:ntp ntpd 867 root 125u IPv6 0xfffff80006ccef60 0t0 UDP [2a02:xxx:xxxx:92::]:ntp ntpd 867 root 129u IPv6 0xfffff80006772f90 0t0 UDP [2a02:xxx:xxxx:96::]:ntp ntpd 867 root 131u IPv6 0xfffff800437bb650 0t0 UDP [2a02:xxx:xxxx:98::]:ntp ntpd 867 root 134u IPv6 0xfffff8004376d9b0 0t0 UDP [2a02:xxx:xxxx:101::]:ntp ntpd 867 root 135u IPv6 0xfffff80006cceed0 0t0 UDP [2a02:xxx:xxxx:102::]:ntp ntpd 867 root 143u IPv6 0xfffff80006772770 0t0 UDP [2a02:xxx:xxxx:110::]:ntp ntpd 867 root 149u IPv6 0xfffff8004376db40 0t0 UDP [2a02:xxx:xxxx:116::]:ntp ntpd 867 root 154u IPv6 0xfffff80006cd55c0 0t0 UDP [2a02:xxx:xxxx:121::]:ntp ntpd 867 root 156u IPv6 0xfffff800067b67e0 0t0 UDP [2a02:xxx:xxxx:123::]:ntp ntpd 867 root 158u IPv6 0xfffff8004376d310 0t0 UDP [2a02:xxx:xxxx:125::]:ntp ntpd 867 root 160u IPv6 0xfffff80006ccef80 0t0 UDP [2a02:xxx:xxxx:127::]:ntp ntpd 867 root 162u IPv6 0xfffff80043b10820 0t0 UDP [2a02:xxx:xxxx:129::]:ntp ntpd 867 root 176u IPv6 0xfffff8004376d1b0 0t0 UDP [2a02:xxx:xxxx:143::]:ntp ntpd 867 root 181u IPv6 0xfffff80006cd5870 0t0 UDP [2a02:xxx:xxxx:148::]:ntp sshd 908 root cwd VDIR 0,90 1024 2 / sshd 908 root rtd VDIR 0,90 1024 2 / sshd 908 root txt VREG 0,90 291992 84489 /usr/sbin/sshd sshd 908 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sshd 908 root txt VREG 0,90 363072 574185 /usr/lib/private/libssh.so.5 sshd 908 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 sshd 908 root txt VREG 0,90 37496 85255 /usr/lib/libwrap.so.6 sshd 908 root txt VREG 0,90 49376 84868 /usr/lib/libpam.so.5 sshd 908 root txt VREG 0,90 104480 83398 /usr/lib/libbsm.so.3 sshd 908 root txt VREG 0,90 122848 80265 /usr/lib/libgssapi_krb5.so.10 sshd 908 root txt VREG 0,90 37464 83980 /usr/lib/libgssapi.so.10 sshd 908 root txt VREG 0,90 481600 84519 /usr/lib/libkrb5.so.11 sshd 908 root txt VREG 0,90 294048 84407 /usr/lib/libhx509.so.11 sshd 908 root txt VREG 0,90 628680 83302 /usr/lib/libasn1.so.11 sshd 908 root txt VREG 0,90 7256 83599 /usr/lib/libcom_err.so.5 sshd 908 root txt VREG 0,90 70400 84893 /usr/lib/libroken.so.11 sshd 908 root txt VREG 0,90 162856 85252 /usr/lib/libwind.so.11 sshd 908 root txt VREG 0,90 15792 84367 /usr/lib/libheimbase.so.11 sshd 908 root txt VREG 0,90 9976 574176 /usr/lib/private/libheimipcc.so.11 sshd 908 root txt VREG 0,90 61952 1203875 /lib/libcrypt.so.5 sshd 908 root txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 sshd 908 root txt VREG 0,90 85424 1203910 /lib/libz.so.6 sshd 908 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sshd 908 root txt VREG 0,90 343824 574182 /usr/lib/private/libldns.so.5 sshd 908 root txt VREG 0,90 66416 1203893 /lib/libmd.so.6 sshd 908 root txt VREG 0,90 105096 1203904 /lib/libthr.so.3 sshd 908 root 0u VCHR 0,15 0t0 15 /dev/null sshd 908 root 1u VCHR 0,15 0t0 15 /dev/null sshd 908 root 2u VCHR 0,15 0t0 15 /dev/null sshd 908 root 3u IPv6 0xfffff80043049c00 0t0 TCP *:ssh (LISTEN) sshd 908 root 4u IPv4 0xfffff80043049800 0t0 TCP *:ssh (LISTEN) sendmail 911 root cwd VDIR 0,90 2560 1123585 /var/spool/mqueue sendmail 911 root rtd VDIR 0,90 1024 2 / sendmail 911 root txt VREG 0,90 676048 86661 /usr/libexec/sendmail/sendmail sendmail 911 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sendmail 911 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 sendmail 911 root txt VREG 0,90 37496 85255 /usr/lib/libwrap.so.6 sendmail 911 root txt VREG 0,90 430328 85129 /usr/lib/libssl.so.7 sendmail 911 root txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 sendmail 911 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sendmail 911 root 0r VCHR 0,15 0t0 15 /dev/null sendmail 911 root 1w VCHR 0,15 0t0 15 /dev/null sendmail 911 root 2w VCHR 0,15 0t0 15 /dev/null sendmail 911 root 3u IPv4 0xfffff80043049400 0t0 TCP 127.0.0.1:smtp (LISTEN) sendmail 911 root 4u unix 0xfffff8000676c000 0t0 ->0xfffff80006cf02b8 sendmail 911 root 5w VREG 0,90 78 1043368 /var/run/sendmail.pid sendmail 914 smmsp cwd VDIR 0,90 512 1123588 /var/spool/clientmqueue sendmail 914 smmsp rtd VDIR 0,90 1024 2 / sendmail 914 smmsp txt VREG 0,90 676048 86661 /usr/libexec/sendmail/sendmail sendmail 914 smmsp txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sendmail 914 smmsp txt VREG 0,90 70152 1203908 /lib/libutil.so.9 sendmail 914 smmsp txt VREG 0,90 37496 85255 /usr/lib/libwrap.so.6 sendmail 914 smmsp txt VREG 0,90 430328 85129 /usr/lib/libssl.so.7 sendmail 914 smmsp txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 sendmail 914 smmsp txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sendmail 914 smmsp 0r VCHR 0,15 0t0 15 /dev/null sendmail 914 smmsp 1w VCHR 0,15 0t0 15 /dev/null sendmail 914 smmsp 2w VCHR 0,15 0t0 15 /dev/null sendmail 914 smmsp 3u unix 0xfffff800067242b8 0t0 ->0xfffff80006cf0570 sendmail 914 smmsp 4w VREG 0,90 49 1123590 /var/spool/clientmqueue/sm-client.pid cron 918 root cwd VDIR 0,90 512 1043335 /var/cron cron 918 root rtd VDIR 0,90 1024 2 / cron 918 root txt VREG 0,90 41008 83332 /usr/sbin/cron cron 918 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 cron 918 root txt VREG 0,90 49376 84868 /usr/lib/libpam.so.5 cron 918 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 cron 918 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 cron 918 root 0u VCHR 0,15 0t0 15 /dev/null cron 918 root 1u VCHR 0,15 0t0 15 /dev/null cron 918 root 2u VCHR 0,15 0t0 15 /dev/null cron 918 root 3w VREG 0,90 3 1043371 /var/run/cron.pid getty 958 root cwd VDIR 0,90 1024 2 / getty 958 root rtd VDIR 0,90 1024 2 / getty 958 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 958 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 958 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 958 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 958 root 0u VCHR 0,53 0t50 53 /dev/ttyv0 getty 958 root 1u VCHR 0,53 0t50 53 /dev/ttyv0 getty 958 root 2u VCHR 0,53 0t50 53 /dev/ttyv0 getty 959 root cwd VDIR 0,90 1024 2 / getty 959 root rtd VDIR 0,90 1024 2 / getty 959 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 959 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 959 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 959 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 959 root 0u VCHR 0,54 0t50 54 /dev/ttyv1 getty 959 root 1u VCHR 0,54 0t50 54 /dev/ttyv1 getty 959 root 2u VCHR 0,54 0t50 54 /dev/ttyv1 getty 960 root cwd VDIR 0,90 1024 2 / getty 960 root rtd VDIR 0,90 1024 2 / getty 960 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 960 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 960 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 960 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 960 root 0u VCHR 0,55 0t50 55 /dev/ttyv2 getty 960 root 1u VCHR 0,55 0t50 55 /dev/ttyv2 getty 960 root 2u VCHR 0,55 0t50 55 /dev/ttyv2 getty 961 root cwd VDIR 0,90 1024 2 / getty 961 root rtd VDIR 0,90 1024 2 / getty 961 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 961 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 961 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 961 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 961 root 0u VCHR 0,56 0t50 56 /dev/ttyv3 getty 961 root 1u VCHR 0,56 0t50 56 /dev/ttyv3 getty 961 root 2u VCHR 0,56 0t50 56 /dev/ttyv3 getty 962 root cwd VDIR 0,90 1024 2 / getty 962 root rtd VDIR 0,90 1024 2 / getty 962 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 962 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 962 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 962 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 962 root 0u VCHR 0,57 0t50 57 /dev/ttyv4 getty 962 root 1u VCHR 0,57 0t50 57 /dev/ttyv4 getty 962 root 2u VCHR 0,57 0t50 57 /dev/ttyv4 getty 963 root cwd VDIR 0,90 1024 2 / getty 963 root rtd VDIR 0,90 1024 2 / getty 963 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 963 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 963 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 963 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 963 root 0u VCHR 0,58 0t50 58 /dev/ttyv5 getty 963 root 1u VCHR 0,58 0t50 58 /dev/ttyv5 getty 963 root 2u VCHR 0,58 0t50 58 /dev/ttyv5 getty 964 root cwd VDIR 0,90 1024 2 / getty 964 root rtd VDIR 0,90 1024 2 / getty 964 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 964 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 964 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 964 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 964 root 0u VCHR 0,59 0t50 59 /dev/ttyv6 getty 964 root 1u VCHR 0,59 0t50 59 /dev/ttyv6 getty 964 root 2u VCHR 0,59 0t50 59 /dev/ttyv6 getty 965 root cwd VDIR 0,90 1024 2 / getty 965 root rtd VDIR 0,90 1024 2 / getty 965 root txt VREG 0,90 27952 86582 /usr/libexec/getty getty 965 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 getty 965 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 getty 965 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 getty 965 root 0u VCHR 0,60 0t50 60 /dev/ttyv7 getty 965 root 1u VCHR 0,60 0t50 60 /dev/ttyv7 getty 965 root 2u VCHR 0,60 0t50 60 /dev/ttyv7 sshd 982 root cwd VDIR 0,90 1024 2 / sshd 982 root rtd VDIR 0,90 1024 2 / sshd 982 root txt VREG 0,90 291992 84489 /usr/sbin/sshd sshd 982 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 sshd 982 root txt VREG 0,90 363072 574185 /usr/lib/private/libssh.so.5 sshd 982 root txt VREG 0,90 70152 1203908 /lib/libutil.so.9 sshd 982 root txt VREG 0,90 37496 85255 /usr/lib/libwrap.so.6 sshd 982 root txt VREG 0,90 49376 84868 /usr/lib/libpam.so.5 sshd 982 root txt VREG 0,90 104480 83398 /usr/lib/libbsm.so.3 sshd 982 root txt VREG 0,90 122848 80265 /usr/lib/libgssapi_krb5.so.10 sshd 982 root txt VREG 0,90 37464 83980 /usr/lib/libgssapi.so.10 sshd 982 root txt VREG 0,90 481600 84519 /usr/lib/libkrb5.so.11 sshd 982 root txt VREG 0,90 294048 84407 /usr/lib/libhx509.so.11 sshd 982 root txt VREG 0,90 628680 83302 /usr/lib/libasn1.so.11 sshd 982 root txt VREG 0,90 7256 83599 /usr/lib/libcom_err.so.5 sshd 982 root txt VREG 0,90 70400 84893 /usr/lib/libroken.so.11 sshd 982 root txt VREG 0,90 162856 85252 /usr/lib/libwind.so.11 sshd 982 root txt VREG 0,90 15792 84367 /usr/lib/libheimbase.so.11 sshd 982 root txt VREG 0,90 9976 574176 /usr/lib/private/libheimipcc.so.11 sshd 982 root txt VREG 0,90 61952 1203875 /lib/libcrypt.so.5 sshd 982 root txt VREG 0,90 2001544 1203876 /lib/libcrypto.so.7 sshd 982 root txt VREG 0,90 85424 1203910 /lib/libz.so.6 sshd 982 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 sshd 982 root txt VREG 0,90 343824 574182 /usr/lib/private/libldns.so.5 sshd 982 root txt VREG 0,90 66416 1203893 /lib/libmd.so.6 sshd 982 root txt VREG 0,90 105096 1203904 /lib/libthr.so.3 sshd 982 root txt VREG 0,90 62544 84229 /usr/lib/libgssapi_spnego.so.10 sshd 982 root txt VREG 0,90 6928 85286 /usr/lib/pam_opie.so.5 sshd 982 root txt VREG 0,90 38192 84865 /usr/lib/libopie.so.7 sshd 982 root txt VREG 0,90 5496 85288 /usr/lib/pam_opieaccess.so.5 sshd 982 root txt VREG 0,90 12520 85298 /usr/lib/pam_unix.so.5 sshd 982 root txt VREG 0,90 19680 85260 /usr/lib/libypclnt.so.4 sshd 982 root txt VREG 0,90 6088 85285 /usr/lib/pam_nologin.so.5 sshd 982 root txt VREG 0,90 9288 85284 /usr/lib/pam_login_access.so.5 sshd 982 root txt VREG 0,90 4568 85290 /usr/lib/pam_permit.so.5 sshd 982 root 0u VCHR 0,15 0t0 15 /dev/null sshd 982 root 1u VCHR 0,15 0t0 15 /dev/null sshd 982 root 2u VCHR 0,15 0t0 15 /dev/null sshd 982 root 3u IPv4 0xfffff80006f8dc00 0t0 TCP 188.xxx.xxx.xxx:ssh->188.xxx.xxx.xx:38740 (ESTABLISHED) sshd 982 root 4u PIPE 0xfffff800066d65d0 16384 ->0xfffff800066d6730 sshd 982 root 5u PIPE 0xfffff800066d6730 0 ->0xfffff800066d65d0 sshd 982 root 6u 0xfffff8000656f3c0 file struct, ty=0xa, op=0xffffffff8139b428 sshd 982 root 8u 0xfffff8000656f3c0 file struct, ty=0xa, op=0xffffffff8139b428 sshd 982 root 9u 0xfffff8000656f3c0 file struct, ty=0xa, op=0xffffffff8139b428 zsh 984 root cwd VDIR 0,90 512 2086656 /root zsh 984 root rtd VDIR 0,90 1024 2 / zsh 984 root txt VREG 0,90 643768 222085 /usr/local/bin/zsh zsh 984 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 zsh 984 root txt VREG 0,90 178200 643427 /usr/local/share/zsh/5.0.2/functions/Completion.zwc zsh 984 root txt VREG 0,90 55800 643431 /usr/local/share/zsh/5.0.2/functions/Newuser.zwc zsh 984 root txt VREG 0,90 141688 643430 /usr/local/share/zsh/5.0.2/functions/Misc.zwc zsh 984 root txt VREG 0,90 254552 643456 /usr/local/share/zsh/5.0.2/functions/Completion/Base.zwc zsh 984 root txt VREG 0,90 146040 643436 /usr/local/share/zsh/5.0.2/functions/Zle.zwc zsh 984 root txt VREG 0,90 223336 643466 /usr/local/share/zsh/5.0.2/functions/Completion/Zsh.zwc zsh 984 root txt VREG 0,90 347168 1203898 /lib/libncursesw.so.8 zsh 984 root txt VREG 0,90 172096 1203892 /lib/libm.so.5 zsh 984 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 zsh 984 root txt VREG 0,90 295488 642709 /usr/local/lib/zsh/5.0.2/zsh/zle.so zsh 984 root txt VREG 0,90 42592 642700 /usr/local/lib/zsh/5.0.2/zsh/parameter.so zsh 984 root txt VREG 0,90 143296 642688 /usr/local/lib/zsh/5.0.2/zsh/complete.so zsh 984 root txt VREG 0,90 57744 642689 /usr/local/lib/zsh/5.0.2/zsh/complist.so zsh 984 root txt VREG 0,90 28144 642714 /usr/local/lib/zsh/5.0.2/zsh/zutil.so zsh 984 root txt VREG 0,90 58464 642690 /usr/local/lib/zsh/5.0.2/zsh/computil.so zsh 984 root txt VREG 0,90 3157800 643464 /usr/local/share/zsh/5.0.2/functions/Completion/Unix.zwc zsh 984 root 0u VCHR 0,97 0t409895 97 /dev/pts/0 zsh 984 root 1u VCHR 0,97 0t409895 97 /dev/pts/0 zsh 984 root 2u VCHR 0,97 0t409895 97 /dev/pts/0 zsh 984 root 10u VCHR 0,97 0t21170 97 /dev/pts/0 zsh 984 root 12r VREG 0,90 55800 643431 /usr/local/share/zsh/5.0.2/functions/Newuser.zwc zsh 984 root 13r VREG 0,90 141688 643430 /usr/local/share/zsh/5.0.2/functions/Misc.zwc zsh 984 root 14r VREG 0,90 178200 643427 /usr/local/share/zsh/5.0.2/functions/Completion.zwc zsh 984 root 15r VREG 0,90 146040 643436 /usr/local/share/zsh/5.0.2/functions/Zle.zwc zsh 984 root 16r VREG 0,90 254552 643456 /usr/local/share/zsh/5.0.2/functions/Completion/Base.zwc zsh 984 root 17r VREG 0,90 223336 643466 /usr/local/share/zsh/5.0.2/functions/Completion/Zsh.zwc zsh 984 root 18r VREG 0,90 3157800 643464 /usr/local/share/zsh/5.0.2/functions/Completion/Unix.zwc lsof 58654 root cwd VDIR 0,90 512 2086656 /root lsof 58654 root rtd VDIR 0,90 1024 2 / lsof 58654 root txt VREG 0,90 125168 163072 /usr/local/sbin/lsof lsof 58654 root txt VREG 0,90 111560 496950 /libexec/ld-elf.so.1 lsof 58654 root txt VREG 0,90 34328 1203891 /lib/libkvm.so.6 lsof 58654 root txt VREG 0,90 1565144 1203873 /lib/libc.so.7 lsof 58654 root 0u VCHR 0,97 0t409895 97 /dev/pts/0 lsof 58654 root 1w VREG 0,90 0 2086663 / (/dev/ada0p2) lsof 58654 root 2u VCHR 0,97 0t409895 97 /dev/pts/0 lsof 58654 root 3r VCHR 0,10 0t0 10 /dev/mem lsof 58654 root 4r VCHR 0,11 0xfffff8000656fd20 11 /dev/kmem --oyUTqETQ0mS9luUI-- From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 13:33:33 2014 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECEA7318; Thu, 2 Jan 2014 13:33:32 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C02CC1A10; Thu, 2 Jan 2014 13:33:32 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id EE00C7B17; Thu, 2 Jan 2014 13:33:30 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us EE00C7B17 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 2 Jan 2014 08:33:29 -0500 From: Glen Barber To: freebsd-stable@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-snapshots@FreeBSD.org Subject: FreeBSD 10.0-RC4 Now Available Message-ID: <20140102133329.GU72258@glenbarber.us> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed X-Operating-System: FreeBSD 11.0-CURRENT amd64 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: FreeBSD Release Engineering Team X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 13:33:33 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 The fourth RC build of the 10.0-RELEASE release cycle is now available on the FTP servers for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures. This is expected to be the final RC build of the 10.0-RELEASE cycle. The image checksums follow at the end of this email. ISO images and, for architectures that support it, the memory stick images are available here (or any of the FreeBSD mirror sites): ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.0/ If you notice problems you can report them through the normal GNATS PR system or on the -stable mailing list. If you would like to use SVN to do a source based update of an existing system, use the "releng/10.0" branch. Important note to freebsd-update(8) users: Please be sure to follow the instructions in the following FreeBSD Errata Notices before upgrading the system to 10.0-RC4: . EN-13:04.freebsd-update: http://www.freebsd.org/security/advisories/FreeBSD-EN-13:04.freebsd-update.asc . EN-13:05.freebsd-update: http://www.freebsd.org/security/advisories/FreeBSD-EN-13:05.freebsd-update.asc Pre-installed virtual machine images for 10.0-RC4 are also available for amd64 and i386 architectures. The images are located under the 'snapshots' directory on FTP, here: ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/VM-IMAGES/10.0-RC4/ The disk images are available in both QCOW2, VHD, and VMDK format. The image download size is approximately 135 MB, which decompress to a 20GB sparse image. The partition layout is: . 512k - freebsd-boot GPT partition type (bootfs GPT label) . 1GB - freebsd-swap GPT partition type (swapfs GPT label) . ~17GB - freebsd-ufs GPT partition type (rootfs GPT label) Changes between -RC3 and -RC4 include: o Tighten default restrictions for ntpd(8) server. o Fix kernel crash discovered with recent Java port update. The freebsd-update(8) utility supports binary upgrades of amd64 and i386 systems running earlier FreeBSD releases. Systems running earlier FreeBSD releases can upgrade as follows: # freebsd-update upgrade -r 10.0-RC4 During this process, freebsd-update(8) may ask the user to help by merging some configuration files or by confirming that the automatically performed merging was done correctly. # freebsd-update install The system must be rebooted with the newly installed kernel before continuing. # shutdown -r now After rebooting, freebsd-update needs to be run again to install the new userland components: # freebsd-update install It is recommended to rebuild and install all applications if possible, especially if upgrading from an earlier FreeBSD release, for example, FreeBSD 9.x. Alternatively, the user can install misc/compat9x and other compatibility libraries, afterwards the system must be rebooted into the new userland: # shutdown -r now Finally, after rebooting, freebsd-update needs to be run again to remove stale files: # freebsd-update install == ISO CHECKSUMS == o 10.0-RC4 amd64: SHA256 (FreeBSD-10.0-RC4-amd64-bootonly.iso) = 096c4331431337c74348079cb86a6e4d0a4dc8fb92d54be86d2652b8a9716221 SHA256 (FreeBSD-10.0-RC4-amd64-disc1.iso) = 5f231601641cabb518d6d3e6c608400bd2d865fe08c79dc6cdfbc9f48c532b94 SHA256 (FreeBSD-10.0-RC4-amd64-dvd1.iso) = 1a9db13106932851c389aa340d77a7205dd0d5d61489994972697ffb7069b483 SHA256 (FreeBSD-10.0-RC4-amd64-memstick.img) = e4d214811dd8ac476161161d086044e3f39b91cc890df46f0bccebf7ca83a4c2 MD5 (FreeBSD-10.0-RC4-amd64-bootonly.iso) = b8ecc3d62bf0b4fc8a310223187d4f41 MD5 (FreeBSD-10.0-RC4-amd64-disc1.iso) = 8f5bb931357e7a64d81506459f809145 MD5 (FreeBSD-10.0-RC4-amd64-dvd1.iso) = b3a5798037d7a81a1345f68dcd0431eb MD5 (FreeBSD-10.0-RC4-amd64-memstick.img) = 7a8ac0738ed880a9a12f947e0d5e8f42 o 10.0-RC4 i386: SHA256 (FreeBSD-10.0-RC4-i386-bootonly.iso) = e74743512e6bc189ede94c3cab6a1303ea51b944e79d694b88a3c44e5379b7dc SHA256 (FreeBSD-10.0-RC4-i386-disc1.iso) = 0cfebb47d4930b093790a7b488f6ca503032386f9b0716f88404b9640cdd9423 SHA256 (FreeBSD-10.0-RC4-i386-dvd1.iso) = 6948d8137b2a34af735a91c570b1fa23fa7e24a03569209614f35c54c06c3d77 SHA256 (FreeBSD-10.0-RC4-i386-memstick.img) = 1024b9eaf88c24c0378e11c97768338eac7a124d687b0a0efe658cda66a56ac6 MD5 (FreeBSD-10.0-RC4-i386-bootonly.iso) = 13e0a7fe8607d2acb777f48c6709d548 MD5 (FreeBSD-10.0-RC4-i386-disc1.iso) = 1fde5dbbfaea4c2406558ec6bca9d065 MD5 (FreeBSD-10.0-RC4-i386-dvd1.iso) = 69ae420512e36f43463439f9383d7181 MD5 (FreeBSD-10.0-RC4-i386-memstick.img) = d3da0299008bae0b7141df05dd12b188 o 10.0-RC4 ia64: SHA256 (FreeBSD-10.0-RC4-ia64-bootonly.iso) = bda2fdaada11b0d4f7288883dd5a1f82a972b75c794882bccfb8cfc837f3b478 SHA256 (FreeBSD-10.0-RC4-ia64-disc1.iso) = 83092f732fa1d91af48ed6f1541c700de6e5842aec7f76e29030cad9a2c19a79 SHA256 (FreeBSD-10.0-RC4-ia64-memstick.img) = 48736d810efa0a928240d42237d62c7f28b2709f01354fd3098313f8ed30c73a MD5 (FreeBSD-10.0-RC4-ia64-bootonly.iso) = 5a4e33d9a806a514fdaa907d8c2949ad MD5 (FreeBSD-10.0-RC4-ia64-disc1.iso) = b97818a6a7c600f9ee8319e13c3d32ea MD5 (FreeBSD-10.0-RC4-ia64-memstick.img) = d49bee0a658b08b25e20102160c92c64 o 10.0-RC4 powerpc: SHA256 (FreeBSD-10.0-RC4-powerpc-bootonly.iso) = 1a8c298ad5ec7f5e0bb889f31a85558fc32dbc684b4bb4060732e0118c080937 SHA256 (FreeBSD-10.0-RC4-powerpc-disc1.iso) = 76943f1fe60ba6388c457b45486390b28174d462f908de1dd98c33674aae7380 SHA256 (FreeBSD-10.0-RC4-powerpc-memstick.img) = 0bc40fcbf64d715c853ef8f450905394c79900d8f1386d40f726b92c48fc951a MD5 (FreeBSD-10.0-RC4-powerpc-bootonly.iso) = 39659467af745fcdfba643027402c97a MD5 (FreeBSD-10.0-RC4-powerpc-disc1.iso) = a90a2183c2da9458d033fe8fe9f8d810 MD5 (FreeBSD-10.0-RC4-powerpc-memstick.img) = 8449d6959e8b104748893c3e5613cbf3 o 10.0-RC4 powerpc64: SHA256 (FreeBSD-10.0-RC4-powerpc-powerpc64-bootonly.iso) = d129fa5af6e9c7389cdc4f903aabf4cee7c4638ebb5511cf8b3f6b5b82c719d4 SHA256 (FreeBSD-10.0-RC4-powerpc-powerpc64-disc1.iso) = 0f4ab1037f2e064b06080981402eb66df99065f63fec3503c0773a0d2e750bcf SHA256 (FreeBSD-10.0-RC4-powerpc-powerpc64-memstick.img) = 525e50eeadac9ff1aea4b0fa8486fca18685a5402e754e22a430963348a47300 MD5 (FreeBSD-10.0-RC4-powerpc-powerpc64-bootonly.iso) = c7b88203a354076b7c50e6d414512ef9 MD5 (FreeBSD-10.0-RC4-powerpc-powerpc64-disc1.iso) = 1efece10582feb0de5f78fea5724baf6 MD5 (FreeBSD-10.0-RC4-powerpc-powerpc64-memstick.img) = 85e26f609cc57f2339bfeb96e425adb1 o 10.0-RC4 sparc64: SHA256 (FreeBSD-10.0-RC4-sparc64-bootonly.iso) = 2aa8267ad8eeb9deebcebf39a9912720c6a5b1f316b2fc24c6b547a995c4ab80 SHA256 (FreeBSD-10.0-RC4-sparc64-disc1.iso) = 818b67fb3f7442b2af5132d3d80871b9d5c8644b3e7a9ac53fb1b533f9c0f325 MD5 (FreeBSD-10.0-RC4-sparc64-bootonly.iso) = 49eca69d94ded4a1d877ceec23dea16e MD5 (FreeBSD-10.0-RC4-sparc64-disc1.iso) = c6f60bc490cfba18b156b9b5dcbf62ef == VM IMAGE CHECKSUMS == o 10.0-RC4 amd64: SHA256 (FreeBSD-10.0-RC4-amd64-20131231-r260130.qcow2.xz) = 40eecc0af94128d1990e30035ba8dc736e227c6cc6bbdc30ff3a5475207619ac SHA256 (FreeBSD-10.0-RC4-amd64-20131231-r260130.vhd.xz) = 593a165ad0c262b5f66437c7155d359b79538459e5abd9a49f2e9a370badb3de SHA256 (FreeBSD-10.0-RC4-amd64-20131231-r260130.vmdk.xz) = 1845bd692eae557d9b73a97cf1d8d5812b3c1d6acefbc6dd460a90cc4dc9e2b4 MD5 (FreeBSD-10.0-RC4-amd64-20131231-r260130.qcow2.xz) = 2d8833f4e6b184edb47f558f7cdccc56 MD5 (FreeBSD-10.0-RC4-amd64-20131231-r260130.vhd.xz) = 8b62ba477240385355a9a7013eb3156b MD5 (FreeBSD-10.0-RC4-amd64-20131231-r260130.vmdk.xz) = dbbe7a51a2abe342715bbb145c7fd697 o 10.0-RC4 i386: SHA256 (FreeBSD-10.0-RC4-i386-20131231-r260130.qcow2.xz) = 87bed2192b6d49249cef19011d04e13f5082f07f5f0248f00b6469311655b6e1 SHA256 (FreeBSD-10.0-RC4-i386-20131231-r260130.vhd.xz) = cfb4cbba088f741ac4fe1f2c5909788ec1d779209fb3fb060160938a079fb543 SHA256 (FreeBSD-10.0-RC4-i386-20131231-r260130.vmdk.xz) = 8dfe24a13995fbecdc2e11057b8f425d075ade804e3ff72ab7ec353dd95e9a41 MD5 (FreeBSD-10.0-RC4-i386-20131231-r260130.qcow2.xz) = 8f2947ca4170a45088647c5b3c51fadf MD5 (FreeBSD-10.0-RC4-i386-20131231-r260130.vhd.xz) = b7712dc8b4760e2d0a7d9bbb5178d1b5 MD5 (FreeBSD-10.0-RC4-i386-20131231-r260130.vmdk.xz) = 27de2b881130343205e8eaa81fc81601 Glen Love FreeBSD? Support this and future releases with a donation to the FreeBSD Foundation! https://www.freebsdfoundation.org/donate/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJSxWqpAAoJELls3eqvi17Q/NAQALHJjYwBsZ3nfoAodqb+xRdD mXw83jqtQMDp1CdPgcU1nWZJPBYwSZIB7WPCiEa7IcQtC1YmJR762Ko7WYHHj72E wmbSZbnN1sYD9kaP33ewBiV3mlxVwPXAhUpXvKzp6EdNo5SgqCBDhcUCMKbzhtlb kCFyxHv7SlM6nj7FVWmIywx/ny4b7pqLEv+PrgfhIOjr2NwdzT+IrvZ6mtzNo7Yt PcBwVLtOLv4O+KV/91Boj4fJa/HpKakwMq5c7P3uhph8S7A08EbEJWQ8BNt7lRAe V8TfYbw5IEF9vGO79lsTaUblLTrlJHGLEDttR3WTNFcC0H1OE0VOqrk6l28jBMWV DVUdN3VkcBdU1mLRbn1Z2KeAZqSjQGOjcUzpqlezZVPa14XV6fs/UqKvwZJIxE1W cAMAhBD1PUd5wmK5cd7fIZFVqgMSGc1eatVCntJh1QcyQBgD7CYVYUiYGXDN9zze 4n01/njKr31o/E5dn6U3Z9OXPoo00ZuTmR3E1SIFQqSEHQBviJTqDoYqvMVDM3wp pELyZsjLcIud9fkbzZxPOLHVfGGsisFha/O1uEDCAqdobcd1zKcFETr+iKGIR6YN uQoCd1PKzrX1pgT/Wjv9FikfvjxOWK3oRBIEDyz7KatTc11WsxRO/yvJng2q4pRJ h3ywR//tlqbSYKThOuI7 =P/2w -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 16:21:32 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F06F815D for ; Thu, 2 Jan 2014 16:21:32 +0000 (UTC) Received: from mail.bsdinfo.com.br (mail.bsdinfo.com.br [67.212.89.78]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BAB121855 for ; Thu, 2 Jan 2014 16:21:32 +0000 (UTC) Received: from mail.bsdinfo.com.br (mail.bsdinfo.com.br [127.0.0.1]) by mail.bsdinfo.com.br (Postfix) with ESMTP id 18D07139DF for ; Thu, 2 Jan 2014 14:15:47 -0200 (BRST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bsdinfo.com.br; h=content-type:content-type:in-reply-to:references:subject :subject:to:mime-version:user-agent:from:from:date:date :message-id; s=dkim; t=1388679346; x=1389543347; bh=2fOidmxA9Sqk ucEmmLnbcmcqzj53FhefnjKZxADTuUA=; b=GH1ehUae8FUuzBDf5ddaDnuTGucf hd2wKNsGslLtaLgWfBKmwRikkZiI4LkiLtyxcG9XmwP3bHyqTIh9TlB6KnabR4Oi Cr5Tvld0+scH3k6ONd/L9IE3O17e681ArGlGUmhf1XrKSgX1cL3I8zP/jJ2V5mXL 5T/IyulRZ2a0oaY= X-Virus-Scanned: amavisd-new at mail.bsdinfo.com.br Received: from mail.bsdinfo.com.br ([127.0.0.1]) by mail.bsdinfo.com.br (mail.bsdinfo.com.br [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rzeh5OgsxyJH for ; Thu, 2 Jan 2014 14:15:46 -0200 (BRST) Received: from MacBook-de-Gondim-2.local (unknown [186.193.54.69]) by mail.bsdinfo.com.br (Postfix) with ESMTPSA id CC751139D8 for ; Thu, 2 Jan 2014 14:15:45 -0200 (BRST) Message-ID: <52C5906B.7030406@bsdinfo.com.br> Date: Thu, 02 Jan 2014 14:14:35 -0200 From: Marcelo Gondim User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: possible netgraph regression on freebsd 10.0-RC3 References: <20140102112714.GB16947@spike.grumly.eu.org> In-Reply-To: <20140102112714.GB16947@spike.grumly.eu.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:21:33 -0000 Em 02/01/14 09:27, Cedric Tabary escreveu: > Hello, > > I upgraded several FreeBSD servers from 9.2-STABLE to 10.0-RC3 and I > now have strange behavior of mpd-5.7. > > Symptoms : > - mpd stops accepting connections (PPTP VPN), and stops accepting control > connectiosn also (on telnet and http). > - The only way to kill mpd is a SIGKILL > - after killing mpd, all ng interfaces are still up and forwarding > trafic > - the only way to revert to normal operation is a server power-cycle, > software reboot just freeze the kernel. > > dmesg shows a lot of : > sonewconn: pcb 0xfffff80006f61930: Listen queue overflow: 4 already in > queue awaiting acceptance > however I can't find pcb 0xfffff80006f61930 in netstat and there is no > flood, did I miss something ? > > netstat -naA shows pptp control connections with non null Recv-Q > netstat -naA shows netgraph control sockets with non null Send-Q > In normal operation conditions, all Send-Q/Recv-Q are 0 on all those > control sockets. > > Attached : > - dmesg > - netstat -naA (anonymized) > - lsof -n (anonymized) > > FreeBSD xxx 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 > 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC > amd64 > > All this is reproduced once every 2-3 days on 4 different servers. > > Cédric > This really interests me. I'll follow up. Cheers, Gondim From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 19:32:51 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF089CDD; Thu, 2 Jan 2014 19:32:51 +0000 (UTC) Received: from mail-gw2-out.broadcom.com (mail-gw2-out.broadcom.com [216.31.210.63]) by mx1.freebsd.org (Postfix) with ESMTP id 93C681A09; Thu, 2 Jan 2014 19:32:51 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.95,592,1384329600"; d="scan'208";a="7341898" Received: from irvexchcas08.broadcom.com (HELO IRVEXCHCAS08.corp.ad.broadcom.com) ([10.9.208.57]) by mail-gw2-out.broadcom.com with ESMTP; 02 Jan 2014 11:41:17 -0800 Received: from IRVEXCHSMTP3.corp.ad.broadcom.com (10.9.207.53) by IRVEXCHCAS08.corp.ad.broadcom.com (10.9.208.57) with Microsoft SMTP Server (TLS) id 14.1.438.0; Thu, 2 Jan 2014 11:32:45 -0800 Received: from mail-irva-13.broadcom.com (10.10.10.20) by IRVEXCHSMTP3.corp.ad.broadcom.com (10.9.207.53) with Microsoft SMTP Server id 14.1.438.0; Thu, 2 Jan 2014 11:32:44 -0800 Received: from localhost (dhcp-10-12-137-51.irv.broadcom.com [10.12.137.51]) by mail-irva-13.broadcom.com (Postfix) with ESMTP id DE59E246A4; Thu, 2 Jan 2014 11:32:44 -0800 (PST) Date: Thu, 2 Jan 2014 11:32:44 -0800 From: Eric Davis To: Daniel Braniss Subject: Re: need Broadcom NetXtreme BCM57800 driver for 9.2-stable Message-ID: <20140102193244.GA11405@broadcom.com> References: <20131230191336.GA7065@broadcom.com> <9EF3B420-988B-4EB4-9DA9-94ADAED7FCF3@cs.huji.ac.il> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline In-Reply-To: <9EF3B420-988B-4EB4-9DA9-94ADAED7FCF3@cs.huji.ac.il> User-Agent: Mutt/1.5.21 (2012-12-30) Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Eric Davis List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 19:32:51 -0000 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I'm starting the merge of bxe to 9-STABLE today so expect the commit in the next day or so. - e On Tue, Dec 31, 2013 at 06:30:13PM +0200, Daniel Braniss wrote: > hi e :-) > can you give a time estimate? >=20 > danny >=20 > On Dec 30, 2013, at 9:13 PM, Eric Davis wrote: >=20 > >=20 > > Hi Daniel, > >=20 > > Yes I'm planning to bring the updated bxe driver to the older branches. > >=20 > > - e > >=20 > > On Fri, Dec 20, 2013 at 01:15:22PM +0200, Daniel Braniss wrote: > >> hi all, > >> it seems that there is such a driver for 10, can it be MFC=EF=BF=BDed? > >>=20 > >> cheers, > >> danny > >>=20 > >> _______________________________________________ > >> freebsd-stable@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-stable > >> To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.o= rg" >=20 --jRHKVT23PllUwdXP Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQEcBAEBAgAGBQJSxb7cAAoJEPUt8GDsVYPd5/sIAIbv745I6Ioeta9/W1l2Skon YfBAsx/Bt8QfbOZ9/w1BSvXUKAMB6hw61RucSFnMZXGwWe+EKmE8lp6W4wQe81jG Qx8dcPewRKjqv0uphOxgl+ZEgzG5P9Znsvk5IeqIEDjWpeemfB8o6C2TgVZtNJ9m tmkZXACNu6v76RDUkGoiscPIXlZuPKK88C6U9vD+ngKxJkD3xOjklTU6UX/BUQ3E m8y/A2ia3JwpsP2TT2ChH3WpL1ZaLZy2VFK4hn+l1kfmAdkUNToFhe3ZJpiTiJ8C j5XYOQnjOzpEBbVM+JvZDYS3FJ6DilnfEp7il8StMHqXlagZb09z53o2zzG1X/U= =B9tu -----END PGP SIGNATURE----- --jRHKVT23PllUwdXP-- From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 21:07:02 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBAA6FD3 for ; Thu, 2 Jan 2014 21:07:02 +0000 (UTC) Received: from mail-pd0-x230.google.com (mail-pd0-x230.google.com [IPv6:2607:f8b0:400e:c02::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C54471311 for ; Thu, 2 Jan 2014 21:07:02 +0000 (UTC) Received: by mail-pd0-f176.google.com with SMTP id w10so14609556pde.35 for ; Thu, 02 Jan 2014 13:07:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=hG2Wd6ZrlsmzkYljn2Qfg8m97yh5cqvyIcNefZpLKbA=; b=l0dkLILS5MUwc+vlWwQP7EoqNTU52+7gXTUzW0ihpyoslYuc/tKdrl/GH5btb2PIE1 zrMi6OpTl+b6bFrbu55gyFAl/LQlRREuUC4/mwd03jcM7LGCtv8WgTwBC6URVR/chmoX nC9qiCSC1ucOd97TeqFm0Ic8B9FdtT+yfDdi0xOh7VNQUOjx7FF4BW0Uyn4+mtux5R0+ scHtjvjS3PkUy5VT4Ruhf9Zf52kZkXbWod6NYYgy07USK4vrvv8nf1mWaq9f0n/LU4py JtgjVmUUrBdCIzqjZERB/B1ELHSz9AdSXpl4Ar5crmxt/UJcU5E/3qRwj66YbGTCfsCA 0JFw== MIME-Version: 1.0 X-Received: by 10.66.149.231 with SMTP id ud7mr91709575pab.8.1388696822304; Thu, 02 Jan 2014 13:07:02 -0800 (PST) Received: by 10.70.72.65 with HTTP; Thu, 2 Jan 2014 13:07:02 -0800 (PST) Date: Thu, 2 Jan 2014 16:07:02 -0500 Message-ID: Subject: Java problems in stable From: Kenneth Culver To: "freebsd-stable@freebsd.org Stable" Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 21:07:03 -0000 Maybe this is the wrong list, so please send me the right direction if so, but I recall a recent change in stable causing some Java issues (and the port is currently marked as forbidden). Was this something that was going to be fixed before 10.0 releases? I have not had any panics caused by Java, but Java itself seems pretty unstable, and crashes and dumps core pretty easily. Would it be useful to anyone if I provided the core dumps? Thanks, Ken From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 21:11:24 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C46B02E8; Thu, 2 Jan 2014 21:11:24 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [IPv6:2607:fc50:1:2300:1001:1001:1001:face]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97857139E; Thu, 2 Jan 2014 21:11:24 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id 5A4697D9C; Thu, 2 Jan 2014 21:11:23 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us 5A4697D9C Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 2 Jan 2014 16:11:21 -0500 From: Glen Barber To: Kenneth Culver Subject: Re: Java problems in stable Message-ID: <20140102211121.GA72258@glenbarber.us> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="qrotSzihSRAsrOtf" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: "freebsd-stable@freebsd.org Stable" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 21:11:24 -0000 --qrotSzihSRAsrOtf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: > Maybe this is the wrong list, so please send me the right direction if so, > but I recall a recent change in stable causing some Java issues (and the Which stable? > port is currently marked as forbidden). Was this something that was going > to be fixed before 10.0 releases? >=20 Yes. Glen --qrotSzihSRAsrOtf Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJSxdX5AAoJELls3eqvi17Q4KwP/AwR6boVwDZOdBX4ek+AtKc1 xgwvExKq6H3JlSrjd3tHe/CxRSQByE5tvg/bgtE3/T+/Se9NiHUCibdnK9nP1cZd fIA+z60jV4OwI1D25oyFQdfIXEkUBsN7vNueEESl6cDli5x6/geSj2W+BBcytnOQ 4CdqDRhSRnoUmkQm6Jwuy2jKb5vhf8CbFqLO9gaU6lCPKUeFPEry8P7kWLkz7Hrm iRzAgL1eFBWZ3kyuKDmkJbOwwGZzc4OPMCdBZ5oBqVT5J/eshWfBUDRhdy0tM2a5 eTAF/DxqIFdkdF9KPlUZaQt9q8imQXXfEIAiZI/sTUUhMRF09aE1mYiHN2jpFJNC EifGu2o5oZWXuVN1fj4CZOZlnbrApVBrdfqVMgMeaK62xaNZh1z7XMihUOO13wCD mwKJ1MeuOd+ItHD0uoiYNoTxx8lVs8iwpW51/F0a3xXrXVHW3wMUHbPd3x2rbWN5 ygBFoX+7cKUqBPN2BYmOEKM6tDItEcrUCuXbqVor4Ab3/zCz6OjFPL6c8wpmxRrX 5khVWZcy5YS7WM0TLbgMHe7FELfHd/Ht7bcQgMQnvMr8KQFTjeYqaMfaY0ufnQhs cRLqIMdYc/XpAlsK4UMZfRCSABNU4PhkN6U11r4vinYnz54aq3K4+db4nu7uzyps 1Sj15v4vaqfQhBDZZH39 =lqLC -----END PGP SIGNATURE----- --qrotSzihSRAsrOtf-- From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 23:54:00 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F29BE6C9; Thu, 2 Jan 2014 23:53:59 +0000 (UTC) Received: from mail-pd0-x234.google.com (mail-pd0-x234.google.com [IPv6:2607:f8b0:400e:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3C231076; Thu, 2 Jan 2014 23:53:59 +0000 (UTC) Received: by mail-pd0-f180.google.com with SMTP id q10so14720177pdj.39 for ; Thu, 02 Jan 2014 15:53:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=EUxW0rbFeGrNoPgOvMrhpigJ6OfSDI4Eo+45NTYHhNY=; b=YfrflGRYgdyjzBePJe93SOKPY23xZrYAux/Isq+whSttb/LWmq7agEn1xm68G4+vVa x3u/dpmNnNalhbQmMyTLPwTojuqNgz52Fuh6OzyZlHA/YKG2bUfx6XuN3gtCM+Xj3HlZ zwpEoX5WA4jop92aGL2LLXlenr7kZfQXiS9K4z7PSbnk38StEFt2By+YE36B3bVGQ2JI Z2QywHffvzLHBrJPtIUhJiGsu7KzdGGYDKb+FctEvvJLDeaD7S7B3d2QT4Lb9LwU6+hc /NNL0KS+CUOr1nj98MOlhOUlRp6rdT/T2x++exjUu3Ce6hSU9TaM5CQr+l/2Ooav7gZ8 gdhQ== MIME-Version: 1.0 X-Received: by 10.68.221.233 with SMTP id qh9mr91433151pbc.103.1388706839430; Thu, 02 Jan 2014 15:53:59 -0800 (PST) Received: by 10.70.72.65 with HTTP; Thu, 2 Jan 2014 15:53:59 -0800 (PST) In-Reply-To: <20140102211121.GA72258@glenbarber.us> References: <20140102211121.GA72258@glenbarber.us> Date: Thu, 2 Jan 2014 18:53:59 -0500 Message-ID: Subject: Re: Java problems in stable From: Kenneth Culver To: Glen Barber Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "freebsd-stable@freebsd.org Stable" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 23:54:00 -0000 On Thu, Jan 2, 2014 at 4:11 PM, Glen Barber wrote: > On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: > > Maybe this is the wrong list, so please send me the right direction if > so, > > but I recall a recent change in stable causing some Java issues (and the > > Which stable? > 10 > > > port is currently marked as forbidden). Was this something that was going > > to be fixed before 10.0 releases? > > > > Yes. > OK, I'll wait patiently unless someone wanted to see the core files (which may or may not be related and can be taken to a different list if necessary). Thanks for the quick response. Ken > > Glen > > From owner-freebsd-stable@FreeBSD.ORG Thu Jan 2 23:56:40 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21F448D6; Thu, 2 Jan 2014 23:56:40 +0000 (UTC) Received: from mail0.glenbarber.us (mail0.glenbarber.us [208.86.227.67]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE3FE10A6; Thu, 2 Jan 2014 23:56:39 +0000 (UTC) Received: from glenbarber.us (c-71-224-221-174.hsd1.nj.comcast.net [71.224.221.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by mail0.glenbarber.us (Postfix) with ESMTPSA id CE3348E88; Thu, 2 Jan 2014 23:56:38 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail0.glenbarber.us CE3348E88 Authentication-Results: mail0.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Thu, 2 Jan 2014 18:56:37 -0500 From: Glen Barber To: Kenneth Culver Subject: Re: Java problems in stable Message-ID: <20140102235637.GC64543@glenbarber.us> References: <20140102211121.GA72258@glenbarber.us> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="YD3LsXFS42OYHhNZ" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 User-Agent: Mutt/1.5.22 (2013-10-16) Cc: "freebsd-stable@freebsd.org Stable" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 23:56:40 -0000 --YD3LsXFS42OYHhNZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 02, 2014 at 06:53:59PM -0500, Kenneth Culver wrote: > On Thu, Jan 2, 2014 at 4:11 PM, Glen Barber wrote: >=20 > > On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: > > > Maybe this is the wrong list, so please send me the right direction if > > so, > > > but I recall a recent change in stable causing some Java issues (and = the > > > > Which stable? > > >=20 > 10 >=20 >=20 > > > > > port is currently marked as forbidden). Was this something that was g= oing > > > to be fixed before 10.0 releases? > > > > > > > Yes. > > >=20 > OK, I'll wait patiently unless someone wanted to see the core files (which > may or may not be related and can be taken to a different list if > necessary). >=20 It is fixed in -RC4. Glen --YD3LsXFS42OYHhNZ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBCAAGBQJSxfy1AAoJELls3eqvi17QL/wQALXhNJeT+a8pYFQCwM5qdsyU KBRe/uzKkC0esGPK5IseNUhPRKop4RaI9jjuTCaIw7AjV5Fvm3w6zTpEJJWn5j3N zr907NjJ6rkXlL4WXQFsQi3V72S82NhkFFLXWRX3TyzxgswgJga/PxlY+ymqJQQA PQxxTuewN+dy3PDKEZ5MPogu51/+SHekBwQLyUnpbD9YSkJjgK+m0kTkyUn8vtds SDsC2LYUUiZml/7aifAEy04GEa0uToCTLtA0w4XcfK0vY/QKBV2UKTwd1kJ+45ri 8dLLDU+BPl00VSTuDAr/90UKZ4ZAX5pr6KrYspc+ZhRSFW/vNvz/Yx97gLPqdfmn 9rwyWE53tnuTPapMFTISxrXxJpVuo/8+EheIAEyxgIeh5vLYzsch2jrS0DXkyNp5 GLFlyONpqXl9dsHlc0DCQr/ml0diPR4KWhnS0gVOoEHGQJJH4SMHJiqV8RRLVvBc ACtDFZP/Pg0/qtoxbwUdGJF7XOzucSt4xj1iQaTVXocDLEHjcydHXEaENv4yz1hB Rpt4+3MkOzGRlJLKoCLLBRFbWOe0w8wkLEkJ+b0zgb0i1xxyYrETOvrxywqZTXrK 7VphBftk/r7jDalALDfIjlI1i9xsTlCpm8qQv4oHIWgNX1yBV2G+561CNerGNg5v 1syi5Thh+c1vxIxXlIcC =kYmP -----END PGP SIGNATURE----- --YD3LsXFS42OYHhNZ-- From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 01:38:09 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AD72F52; Fri, 3 Jan 2014 01:38:09 +0000 (UTC) Received: from worker01.tb.des.no (worker01.tb.des.no [41.154.2.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4FB5C17A9; Fri, 3 Jan 2014 01:38:07 +0000 (UTC) Received: from worker01.tb.des.no (localhost [127.0.0.1]) by worker01.tb.des.no (8.14.5/8.14.5) with ESMTP id s031buqA065998; Fri, 3 Jan 2014 03:37:56 +0200 (SAST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by worker01.tb.des.no (8.14.5/8.14.5/Submit) id s031bue3065979; Fri, 3 Jan 2014 01:37:56 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 01:37:56 GMT Message-Id: <201401030137.s031bue3065979@worker01.tb.des.no> X-Authentication-Warning: worker01.tb.des.no: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_10 tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 01:38:09 -0000 TB --- 2014-01-03 01:10:32 - tinderbox 2.20 running on worker01.tb.des.no TB --- 2014-01-03 01:10:32 - FreeBSD worker01.tb.des.no 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-03 01:10:32 - starting RELENG_10 tinderbox run for arm/arm TB --- 2014-01-03 01:10:32 - cleaning the object tree TB --- 2014-01-03 01:10:32 - /usr/local/bin/svn stat --no-ignore /src TB --- 2014-01-03 01:11:24 - At svn revision 260215 TB --- 2014-01-03 01:11:25 - building world TB --- 2014-01-03 01:11:25 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 01:11:25 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 01:11:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 01:11:25 - SRCCONF=/dev/null TB --- 2014-01-03 01:11:25 - TARGET=arm TB --- 2014-01-03 01:11:25 - TARGET_ARCH=arm TB --- 2014-01-03 01:11:25 - TZ=UTC TB --- 2014-01-03 01:11:25 - __MAKE_CONF=/dev/null TB --- 2014-01-03 01:11:25 - cd /src TB --- 2014-01-03 01:11:25 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Jan 3 01:11:35 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools [...] c++ -O2 -pipe -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen -I. -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG -fno-strict-aliasing -DLLVM_DEFAULT_TARGET_TRIPLE=\"arm-gnueabi-freebsd10.0\" -DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd10.0\" -DDEFAULT_SYSROOT=\"/obj/arm.arm/src/tmp\" -I/obj/arm.arm/src/tmp/legacy/usr/include -fno-exceptions -fno-rtti -c /src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp -o CGObjC.o c++ -O2 -pipe -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen -I. -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG -fno-strict-aliasing -DLLVM_DEFAULT_TARGET_TRIPLE=\"arm-gnueabi-freebsd10.0\" -DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd10.0\" -DDEFAULT_SYSROOT=\"/obj/arm.arm/src/tmp\" -I/obj/arm.arm/src/tmp/legacy/usr/include -fno-exceptions -fno-rtti -c /src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp -o CGObjCGNU.o c++ -O2 -pipe -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen -I. -I/src/lib/clang/libclangcodegen/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG -fno-strict-aliasing -DLLVM_DEFAULT_TARGET_TRIPLE=\"arm-gnueabi-freebsd10.0\" -DLLVM_HOST_TRIPLE=\"x86_64-unknown-freebsd10.0\" -DDEFAULT_SYSROOT=\"/obj/arm.arm/src/tmp\" -I/obj/arm.arm/src/tmp/legacy/usr/include -fno-exceptions -fno-rtti -c /src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp -o CGObjCMac.o /src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp: In member function 'virtual llvm::Constant*::CGObjCMac::GetOrEmitProtocol(const clang::ObjCProtocolDecl*)': /src/lib/clang/libclangcodegen/../../../contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp:2576: internal compiler error: in var_ann, at tree-flow-inline.h:127 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop. bmake[3]: stopped in /src/lib/clang/libclangcodegen *** Error code 1 Stop. bmake[2]: stopped in /src/lib/clang *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** [buildworld] Error code 1 Stop in /src. TB --- 2014-01-03 01:37:56 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 01:37:56 - ERROR: failed to build world TB --- 2014-01-03 01:37:56 - 1220.27 user 427.39 system 1644.34 real http://tinderbox.des.no/tinderbox-freebsd10-build-RELENG_10-arm-arm.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 02:23:23 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0927A7D for ; Fri, 3 Jan 2014 02:23:22 +0000 (UTC) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BCA641AAB for ; Fri, 3 Jan 2014 02:23:22 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by btw.pki2.com (8.14.7/8.14.5) with ESMTP id s032N4dB047790 for ; Thu, 2 Jan 2014 18:23:04 -0800 (PST) (envelope-from freebsd@pki2.com) Subject: Build errors 9-stable r260215 From: Dennis Glatting To: freebsd-stable@freebsd.org Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 02 Jan 2014 18:23:04 -0800 Message-ID: <1388715784.71651.277.camel@btw.pki2.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-SoftwareMunitions-MailScanner-Information: Dennis Glatting X-SoftwareMunitions-MailScanner-ID: s032N4dB047790 X-SoftwareMunitions-MailScanner: Found to be clean X-MailScanner-From: freebsd@pki2.com X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 02:23:23 -0000 ===> usr.bin/kdump (all) clang -O2 -pipe -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump -I/usr/src/usr.bin/kdump/../.. -I. -std=gnu99 -Qunused-arguments -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -c kdump_subr.c clang -O2 -pipe -I/usr/src/usr.bin/kdump/../ktrace -I/usr/src/usr.bin/kdump -I/usr/src/usr.bin/kdump/../.. -I. -std=gnu99 -Qunused-arguments -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -c /usr/src/usr.bin/kdump/kdump.c /usr/src/usr.bin/kdump/kdump.c:1034:9: error: use of undeclared identifier 'SYS_procctl' case SYS_procctl: ^ /usr/src/usr.bin/kdump/kdump.c:1290:27: warning: cast from 'unsigned char *' to 'struct utrace_rtld *' increases required alignment from 1 to 8 [-Wcast-align] struct utrace_rtld *ut = (struct utrace_rtld *)p; ^~~~~~~~~~~~~~~~~~~~~~~ /usr/src/usr.bin/kdump/kdump.c:1376:29: warning: cast from 'unsigned char *' to 'struct utrace_malloc *' increases required alignment from 1 to 8 [-Wcast-align] struct utrace_malloc *ut = (struct utrace_malloc *)p; ^~~~~~~~~~~~~~~~~~~~~~~~~ /usr/src/usr.bin/kdump/kdump.c:1443:29: warning: 'memcpy' call operates on objects of type 'struct sockaddr' while the size is based on a different type 'struct sockaddr *' [-Wsizeof-pointer-memaccess] memcpy(&sa_in, sa, sizeof(sa)); ~~ ^~ /usr/src/usr.bin/kdump/kdump.c:1443:29: note: did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)? memcpy(&sa_in, sa, sizeof(sa)); ^~ /usr/src/usr.bin/kdump/kdump.c:1468:30: warning: 'memcpy' call operates on objects of type 'struct sockaddr' while the size is based on a different type 'struct sockaddr *' [-Wsizeof-pointer-memaccess] memcpy(&sa_in6, sa, sizeof(sa)); ~~ ^~ /usr/src/usr.bin/kdump/kdump.c:1468:30: note: did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)? memcpy(&sa_in6, sa, sizeof(sa)); ^~ /usr/src/usr.bin/kdump/kdump.c:1491:29: warning: 'memcpy' call operates on objects of type 'struct sockaddr' while the size is based on a different type 'struct sockaddr *' [-Wsizeof-pointer-memaccess] memcpy(&sa_un, sa, sizeof(sa)); ~~ ^~ /usr/src/usr.bin/kdump/kdump.c:1491:29: note: did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)? memcpy(&sa_un, sa, sizeof(sa)); ^~ 5 warnings and 1 error generated. *** [kdump.o] Error code 1 Stop in /usr/src/usr.bin/kdump. *** [all] Error code 1 Stop in /usr/src/usr.bin. *** [usr.bin.all__D] Error code 1 Stop in /usr/src. *** [everything] Error code 1 Stop in /usr/src. *** [buildworld] Error code 1 Stop in /usr/src. Docs# From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 02:29:47 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FF11CB2; Fri, 3 Jan 2014 02:29:47 +0000 (UTC) Received: from mail-pd0-x229.google.com (mail-pd0-x229.google.com [IPv6:2607:f8b0:400e:c02::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F3391AF4; Fri, 3 Jan 2014 02:29:47 +0000 (UTC) Received: by mail-pd0-f169.google.com with SMTP id v10so14880147pde.28 for ; Thu, 02 Jan 2014 18:29:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=gpdult4FIpGsgrceSLqEw/cNkP3FUzT+/ptR5Iq9kWY=; b=KPoRxaAbi3+oj3+WXA88B1Ej6Hmfetoq3wwirjkNTvRsFAwmYMAsnG2t4/r0NaKxf4 A63dM1KekcgBFMG+xceuoawhYZ97k84Lm+F5RpRgCmB8+gwkCZv8gic5O0QVtNQ8zjQm Wwtvd1iuV8UzFrYD2XUpPZGMaYAUEAt11B2kpfajw/oCayQ1WAJqpTI//Yez5vejVP5w oeeplHsSpolKMqjS/52Fq2ngY3jzF9lqHTNZz8Awiueyu62X/lcEdVnw7AtohU/arDWV gl3gQo46wimwJVR7Bs2F1G96cSFdJPoZvT/PHs6/sxcvNN/M34/x+LUDMNpVaK9tqtCF BlmQ== MIME-Version: 1.0 X-Received: by 10.66.11.202 with SMTP id s10mr93003803pab.86.1388716186453; Thu, 02 Jan 2014 18:29:46 -0800 (PST) Received: by 10.70.72.65 with HTTP; Thu, 2 Jan 2014 18:29:46 -0800 (PST) In-Reply-To: <20140102235637.GC64543@glenbarber.us> References: <20140102211121.GA72258@glenbarber.us> <20140102235637.GC64543@glenbarber.us> Date: Thu, 2 Jan 2014 21:29:46 -0500 Message-ID: Subject: Re: Java problems in stable From: Kenneth Culver To: Glen Barber Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "freebsd-stable@freebsd.org Stable" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 02:29:47 -0000 OK, I will update to the latest tonight. Thanks. On Thursday, January 2, 2014, Glen Barber wrote: > On Thu, Jan 02, 2014 at 06:53:59PM -0500, Kenneth Culver wrote: > > On Thu, Jan 2, 2014 at 4:11 PM, Glen Barber > > wrote: > > > > > On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: > > > > Maybe this is the wrong list, so please send me the right direction > if > > > so, > > > > but I recall a recent change in stable causing some Java issues (and > the > > > > > > Which stable? > > > > > > > 10 > > > > > > > > > > > port is currently marked as forbidden). Was this something that was > going > > > > to be fixed before 10.0 releases? > > > > > > > > > > Yes. > > > > > > > OK, I'll wait patiently unless someone wanted to see the core files > (which > > may or may not be related and can be taken to a different list if > > necessary). > > > > It is fixed in -RC4. > > Glen > > From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 04:01:11 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8542358B for ; Fri, 3 Jan 2014 04:01:11 +0000 (UTC) Received: from p3plsmtpa11-04.prod.phx3.secureserver.net (p3plsmtpa11-04.prod.phx3.secureserver.net [68.178.252.105]) by mx1.freebsd.org (Postfix) with ESMTP id 63D8E12E3 for ; Fri, 3 Jan 2014 04:01:11 +0000 (UTC) Received: from susieq.alisa.org ([98.245.27.4]) by p3plsmtpa11-04.prod.phx3.secureserver.net with id 9FzY1n00H05KAKE01FzZKy; Thu, 02 Jan 2014 20:59:34 -0700 Message-ID: <52C635A4.2020905@alisa.org> Date: Thu, 02 Jan 2014 20:59:32 -0700 From: "John J. Rushford" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: Java problems in stable References: <20140102211121.GA72258@glenbarber.us> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 04:01:11 -0000 On 01/02/14 16:53, Kenneth Culver wrote: > On Thu, Jan 2, 2014 at 4:11 PM, Glen Barber wrote: > >> On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: >>> Maybe this is the wrong list, so please send me the right direction if >> so, >>> but I recall a recent change in stable causing some Java issues (and the >> Which stable? >> > 10 > > >>> port is currently marked as forbidden). Was this something that was going >>> to be fixed before 10.0 releases? >>> >> Yes. >> > OK, I'll wait patiently unless someone wanted to see the core files (which > may or may not be related and can be taken to a different list if > necessary). > > Thanks for the quick response. > > Ken > >> Glen >> >> > I've finished updating to 10-RC4 and I've updated my ports tree. openjdk6 and openjdk7 still show as forbidden. > ______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 05:10:34 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6C1522A; Fri, 3 Jan 2014 05:10:34 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 84301173A; Fri, 3 Jan 2014 05:10:34 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s035AWDd043981; Fri, 3 Jan 2014 05:10:32 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s035AWc9043980; Fri, 3 Jan 2014 05:10:32 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 05:10:32 GMT Message-Id: <201401030510.s035AWc9043980@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 05:10:34 -0000 TB --- 2014-01-03 04:00:21 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 04:00:21 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 04:00:21 - starting RELENG_9 tinderbox run for arm/arm TB --- 2014-01-03 04:00:21 - cleaning the object tree TB --- 2014-01-03 04:00:21 - /usr/local/bin/svn stat /src TB --- 2014-01-03 04:00:27 - At svn revision 260218 TB --- 2014-01-03 04:00:28 - building world TB --- 2014-01-03 04:00:28 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 04:00:28 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 04:00:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 04:00:28 - SRCCONF=/dev/null TB --- 2014-01-03 04:00:28 - TARGET=arm TB --- 2014-01-03 04:00:28 - TARGET_ARCH=arm TB --- 2014-01-03 04:00:28 - TZ=UTC TB --- 2014-01-03 04:00:28 - __MAKE_CONF=/dev/null TB --- 2014-01-03 04:00:28 - cd /src TB --- 2014-01-03 04:00:28 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 04:00:28 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktruser_rtld': /src/usr.bin/kdump/kdump.c:1290: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktruser_malloc': /src/usr.bin/kdump/kdump.c:1376: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktrfault': /src/usr.bin/kdump/kdump.c:1632: warning: format '%jx' expects type 'uintmax_t', but argument 2 has type 'vm_offset_t' *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 05:10:32 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 05:10:32 - ERROR: failed to build world TB --- 2014-01-03 05:10:32 - 2650.31 user 522.79 system 4210.60 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-arm-arm.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 06:59:06 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 330B7CF3; Fri, 3 Jan 2014 06:59:06 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4D6F1E9D; Fri, 3 Jan 2014 06:59:05 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s036x4un058104; Fri, 3 Jan 2014 06:59:05 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s036x4ZK058028; Fri, 3 Jan 2014 06:59:04 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 06:59:04 GMT Message-Id: <201401030659.s036x4ZK058028@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 06:59:06 -0000 TB --- 2014-01-03 05:10:33 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 05:10:33 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 05:10:33 - starting RELENG_9 tinderbox run for ia64/ia64 TB --- 2014-01-03 05:10:33 - cleaning the object tree TB --- 2014-01-03 05:10:33 - /usr/local/bin/svn stat /src TB --- 2014-01-03 05:11:04 - At svn revision 260218 TB --- 2014-01-03 05:11:05 - building world TB --- 2014-01-03 05:11:05 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 05:11:05 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 05:11:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 05:11:05 - SRCCONF=/dev/null TB --- 2014-01-03 05:11:05 - TARGET=ia64 TB --- 2014-01-03 05:11:05 - TARGET_ARCH=ia64 TB --- 2014-01-03 05:11:05 - TZ=UTC TB --- 2014-01-03 05:11:05 - __MAKE_CONF=/dev/null TB --- 2014-01-03 05:11:05 - cd /src TB --- 2014-01-03 05:11:05 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 05:11:06 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktruser_rtld': /src/usr.bin/kdump/kdump.c:1290: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktruser_malloc': /src/usr.bin/kdump/kdump.c:1376: warning: cast increases required alignment of target type *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 06:59:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 06:59:04 - ERROR: failed to build world TB --- 2014-01-03 06:59:04 - 4334.26 user 588.38 system 6511.58 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-ia64-ia64.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 07:03:46 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0822F73; Fri, 3 Jan 2014 07:03:46 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 923D01F29; Fri, 3 Jan 2014 07:03:46 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s0373jpY082705; Fri, 3 Jan 2014 07:03:45 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s0373jgY082704; Fri, 3 Jan 2014 07:03:45 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 07:03:45 GMT Message-Id: <201401030703.s0373jgY082704@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:03:46 -0000 TB --- 2014-01-03 04:00:21 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 04:00:21 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 04:00:21 - starting RELENG_9 tinderbox run for i386/pc98 TB --- 2014-01-03 04:00:21 - cleaning the object tree TB --- 2014-01-03 04:00:21 - /usr/local/bin/svn stat /src TB --- 2014-01-03 04:00:27 - At svn revision 260218 TB --- 2014-01-03 04:00:28 - building world TB --- 2014-01-03 04:00:28 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 04:00:28 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 04:00:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 04:00:28 - SRCCONF=/dev/null TB --- 2014-01-03 04:00:28 - TARGET=pc98 TB --- 2014-01-03 04:00:28 - TARGET_ARCH=i386 TB --- 2014-01-03 04:00:28 - TZ=UTC TB --- 2014-01-03 04:00:28 - __MAKE_CONF=/dev/null TB --- 2014-01-03 04:00:28 - cd /src TB --- 2014-01-03 04:00:28 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 04:00:28 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c kdump_subr.c cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/kdump/kdump.c /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktrfault': /src/usr.bin/kdump/kdump.c:1632: warning: format '%jx' expects type 'uintmax_t', but argument 2 has type 'vm_offset_t' *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 07:03:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 07:03:45 - ERROR: failed to build world TB --- 2014-01-03 07:03:45 - 8563.77 user 855.50 system 11003.80 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-i386-pc98.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 07:03:53 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84831F74; Fri, 3 Jan 2014 07:03:53 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59CD11F2A; Fri, 3 Jan 2014 07:03:53 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s0373qdW083025; Fri, 3 Jan 2014 07:03:52 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s0373qsf083024; Fri, 3 Jan 2014 07:03:52 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 07:03:52 GMT Message-Id: <201401030703.s0373qsf083024@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:03:53 -0000 TB --- 2014-01-03 04:00:22 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 04:00:22 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 04:00:22 - starting RELENG_9 tinderbox run for i386/i386 TB --- 2014-01-03 04:00:22 - cleaning the object tree TB --- 2014-01-03 04:00:22 - /usr/local/bin/svn stat /src TB --- 2014-01-03 04:00:27 - At svn revision 260218 TB --- 2014-01-03 04:00:28 - building world TB --- 2014-01-03 04:00:28 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 04:00:28 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 04:00:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 04:00:28 - SRCCONF=/dev/null TB --- 2014-01-03 04:00:28 - TARGET=i386 TB --- 2014-01-03 04:00:28 - TARGET_ARCH=i386 TB --- 2014-01-03 04:00:28 - TZ=UTC TB --- 2014-01-03 04:00:28 - __MAKE_CONF=/dev/null TB --- 2014-01-03 04:00:28 - cd /src TB --- 2014-01-03 04:00:28 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 04:00:28 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c kdump_subr.c cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/kdump/kdump.c /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktrfault': /src/usr.bin/kdump/kdump.c:1632: warning: format '%jx' expects type 'uintmax_t', but argument 2 has type 'vm_offset_t' *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 07:03:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 07:03:52 - ERROR: failed to build world TB --- 2014-01-03 07:03:52 - 8576.82 user 844.34 system 11010.09 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-i386-i386.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 07:04:10 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24D3B212; Fri, 3 Jan 2014 07:04:10 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D8FD61F3E; Fri, 3 Jan 2014 07:04:09 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s03749JA084185; Fri, 3 Jan 2014 07:04:09 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s03749S0084184; Fri, 3 Jan 2014 07:04:09 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 07:04:09 GMT Message-Id: <201401030704.s03749S0084184@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:04:10 -0000 TB --- 2014-01-03 04:00:21 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 04:00:21 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 04:00:21 - starting RELENG_9 tinderbox run for amd64/amd64 TB --- 2014-01-03 04:00:21 - cleaning the object tree TB --- 2014-01-03 04:00:21 - /usr/local/bin/svn stat /src TB --- 2014-01-03 04:00:27 - At svn revision 260218 TB --- 2014-01-03 04:00:28 - building world TB --- 2014-01-03 04:00:28 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 04:00:28 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 04:00:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 04:00:28 - SRCCONF=/dev/null TB --- 2014-01-03 04:00:28 - TARGET=amd64 TB --- 2014-01-03 04:00:28 - TARGET_ARCH=amd64 TB --- 2014-01-03 04:00:28 - TZ=UTC TB --- 2014-01-03 04:00:28 - __MAKE_CONF=/dev/null TB --- 2014-01-03 04:00:28 - cd /src TB --- 2014-01-03 04:00:28 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 04:00:28 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] gzip -cn /src/usr.bin/jot/jot.1 > jot.1.gz ===> usr.bin/kdump (all) cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c kdump_subr.c cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/kdump/kdump.c /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 07:04:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 07:04:09 - ERROR: failed to build world TB --- 2014-01-03 07:04:09 - 8590.14 user 855.37 system 11027.11 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-amd64-amd64.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 07:53:10 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48BDCCF3; Fri, 3 Jan 2014 07:53:10 +0000 (UTC) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0194612C6; Fri, 3 Jan 2014 07:53:09 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.82) with esmtp (envelope-from ) id <1VyzZ5-0009zr-Aw>; Fri, 03 Jan 2014 08:53:07 +0100 Received: from f052132228.adsl.alicedsl.de ([78.52.132.228] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.82) with esmtpsa (envelope-from ) id <1VyzZ5-001aaU-7W>; Fri, 03 Jan 2014 08:53:07 +0100 Date: Fri, 3 Jan 2014 08:52:59 +0100 From: "O. Hartmann" To: Glen Barber Subject: Re: Java problems in stable Message-ID: <20140103085259.483395c9@thor.walstatt.dyndns.org> In-Reply-To: <20140102235637.GC64543@glenbarber.us> References: <20140102211121.GA72258@glenbarber.us> <20140102235637.GC64543@glenbarber.us> Organization: FU Berlin X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/O6O1QNo8b.NZlOv_VM2VRjK"; protocol="application/pgp-signature" X-Originating-IP: 78.52.132.228 X-ZEDAT-Hint: A Cc: "freebsd-stable@freebsd.org Stable" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:53:10 -0000 --Sig_/O6O1QNo8b.NZlOv_VM2VRjK Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Thu, 2 Jan 2014 18:56:37 -0500 Glen Barber wrote: > On Thu, Jan 02, 2014 at 06:53:59PM -0500, Kenneth Culver wrote: > > On Thu, Jan 2, 2014 at 4:11 PM, Glen Barber wrote: > >=20 > > > On Thu, Jan 02, 2014 at 04:07:02PM -0500, Kenneth Culver wrote: > > > > Maybe this is the wrong list, so please send me the right > > > > direction if > > > so, > > > > but I recall a recent change in stable causing some Java issues > > > > (and the > > > > > > Which stable? > > > > >=20 > > 10 > >=20 > >=20 > > > > > > > port is currently marked as forbidden). Was this something that > > > > was going to be fixed before 10.0 releases? > > > > > > > > > > Yes. > > > > >=20 > > OK, I'll wait patiently unless someone wanted to see the core files > > (which may or may not be related and can be taken to a different > > list if necessary). > >=20 >=20 > It is fixed in -RC4. >=20 > Glen >=20 If it is fixed in -RC4 I suppose it has also been fixed in CURRENT (11.0). But the port is still marked "FORBIDDEN". --Sig_/O6O1QNo8b.NZlOv_VM2VRjK Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQEcBAEBAgAGBQJSxmxiAAoJEOgBcD7A/5N8hwgIAMvuGwZL+YEr6Hq78RMum0Ue d9Az5jsZPPoffZx1c6/lHU9WIY1/adNPyEdLdxHN4Mcz3lOLKjbdzRBtuBeX9CBw aJOxsctMHXh2hvFlN18YnEh5k3z2T9BWPBMjzhaOMXutVzQUyt8lSXfJRXb46X5f xsV8sYh+T9JNKWH8zmo+pZLKuvtlVe4G35LCOKL6+2vQ+G7cIMKluZpNqr8pngc4 O6pVCYVJijqGImTgsYdQtx0neOoMbgePSFJNgCyQMuUlIH/vo18S38NGd3+TBBzs u18OCDOd9TxaS2bxhRAz27jbuLIaEE5J4kGlGIIABsItkuB5DiQYaWZd4I3B7Jw= =6/7r -----END PGP SIGNATURE----- --Sig_/O6O1QNo8b.NZlOv_VM2VRjK-- From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 08:07:24 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D489831C; Fri, 3 Jan 2014 08:07:24 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8295B13AE; Fri, 3 Jan 2014 08:07:24 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s0387N8g092689; Fri, 3 Jan 2014 08:07:23 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s0387NKf092684; Fri, 3 Jan 2014 08:07:23 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 08:07:23 GMT Message-Id: <201401030807.s0387NKf092684@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on mips/mips Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 08:07:24 -0000 TB --- 2014-01-03 06:59:05 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 06:59:05 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 06:59:05 - starting RELENG_9 tinderbox run for mips/mips TB --- 2014-01-03 06:59:05 - cleaning the object tree TB --- 2014-01-03 06:59:05 - /usr/local/bin/svn stat /src TB --- 2014-01-03 06:59:50 - At svn revision 260218 TB --- 2014-01-03 06:59:51 - building world TB --- 2014-01-03 06:59:51 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 06:59:51 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 06:59:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 06:59:51 - SRCCONF=/dev/null TB --- 2014-01-03 06:59:51 - TARGET=mips TB --- 2014-01-03 06:59:51 - TARGET_ARCH=mips TB --- 2014-01-03 06:59:51 - TZ=UTC TB --- 2014-01-03 06:59:51 - __MAKE_CONF=/dev/null TB --- 2014-01-03 06:59:51 - cd /src TB --- 2014-01-03 06:59:51 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 06:59:51 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktruser_rtld': /src/usr.bin/kdump/kdump.c:1290: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktruser_malloc': /src/usr.bin/kdump/kdump.c:1376: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktrfault': /src/usr.bin/kdump/kdump.c:1632: warning: format '%jx' expects type 'uintmax_t', but argument 2 has type 'vm_offset_t' *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 08:07:23 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 08:07:23 - ERROR: failed to build world TB --- 2014-01-03 08:07:23 - 2655.62 user 493.70 system 4098.24 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-mips-mips.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 08:15:05 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2FD754C; Fri, 3 Jan 2014 08:15:04 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A1A0514A5; Fri, 3 Jan 2014 08:15:04 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s038F3qO010021; Fri, 3 Jan 2014 08:15:03 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s038F3kO010020; Fri, 3 Jan 2014 08:15:03 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 08:15:03 GMT Message-Id: <201401030815.s038F3kO010020@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 08:15:05 -0000 TB --- 2014-01-03 07:04:09 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 07:04:09 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 07:04:09 - starting RELENG_9 tinderbox run for sparc64/sparc64 TB --- 2014-01-03 07:04:09 - cleaning the object tree TB --- 2014-01-03 07:04:09 - /usr/local/bin/svn stat /src TB --- 2014-01-03 07:04:14 - At svn revision 260218 TB --- 2014-01-03 07:04:15 - building world TB --- 2014-01-03 07:04:15 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 07:04:15 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 07:04:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 07:04:15 - SRCCONF=/dev/null TB --- 2014-01-03 07:04:15 - TARGET=sparc64 TB --- 2014-01-03 07:04:15 - TARGET_ARCH=sparc64 TB --- 2014-01-03 07:04:15 - TZ=UTC TB --- 2014-01-03 07:04:15 - __MAKE_CONF=/dev/null TB --- 2014-01-03 07:04:15 - cd /src TB --- 2014-01-03 07:04:15 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 07:04:16 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktruser_rtld': /src/usr.bin/kdump/kdump.c:1290: warning: cast increases required alignment of target type /src/usr.bin/kdump/kdump.c: In function 'ktruser_malloc': /src/usr.bin/kdump/kdump.c:1376: warning: cast increases required alignment of target type *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 08:15:03 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 08:15:03 - ERROR: failed to build world TB --- 2014-01-03 08:15:03 - 3052.70 user 471.84 system 4254.59 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-sparc64-sparc64.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 08:52:24 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F348FB5; Fri, 3 Jan 2014 08:52:24 +0000 (UTC) Received: from kabab.cs.huji.ac.il (kabab.cs.huji.ac.il [132.65.116.12]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F8C3176F; Fri, 3 Jan 2014 08:52:23 +0000 (UTC) Received: from th-04.cs.huji.ac.il ([132.65.80.125]) by kabab.cs.huji.ac.il with esmtp id 1Vz0UK-000BPY-4G; Fri, 03 Jan 2014 10:52:16 +0200 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: need Broadcom NetXtreme BCM57800 driver for 9.2-stable From: Daniel Braniss In-Reply-To: <20140102193244.GA11405@broadcom.com> Date: Fri, 3 Jan 2014 10:52:15 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: <20131230191336.GA7065@broadcom.com> <9EF3B420-988B-4EB4-9DA9-94ADAED7FCF3@cs.huji.ac.il> <20140102193244.GA11405@broadcom.com> To: Eric Davis X-Mailer: Apple Mail (2.1827) Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 08:52:24 -0000 great news, the machine is not yet production, for at least 2 weeks, = should give ample time to run tests. cheers, danny On Jan 2, 2014, at 9:32 PM, Eric Davis wrote: >=20 > I'm starting the merge of bxe to 9-STABLE today so expect the commit = in > the next day or so. >=20 > - e >=20 > On Tue, Dec 31, 2013 at 06:30:13PM +0200, Daniel Braniss wrote: >> hi e :-) >> can you give a time estimate? >>=20 >> danny >>=20 >> On Dec 30, 2013, at 9:13 PM, Eric Davis wrote: >>=20 >>>=20 >>> Hi Daniel, >>>=20 >>> Yes I'm planning to bring the updated bxe driver to the older = branches. >>>=20 >>> - e >>>=20 >>> On Fri, Dec 20, 2013 at 01:15:22PM +0200, Daniel Braniss wrote: >>>> hi all, >>>> it seems that there is such a driver for 10, can it be MFC=EF=BF=BDed= ? >>>>=20 >>>> cheers, >>>> danny >>>>=20 >>>> _______________________________________________ >>>> freebsd-stable@freebsd.org mailing list >>>> http://lists.freebsd.org/mailman/listinfo/freebsd-stable >>>> To unsubscribe, send any mail to = "freebsd-stable-unsubscribe@freebsd.org" >>=20 From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 09:32:20 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69BC7F1E; Fri, 3 Jan 2014 09:32:20 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 424D11A3A; Fri, 3 Jan 2014 09:32:20 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s039WJuW033161; Fri, 3 Jan 2014 09:32:19 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s039WJrG033160; Fri, 3 Jan 2014 09:32:19 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 09:32:19 GMT Message-Id: <201401030932.s039WJrG033160@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:32:20 -0000 TB --- 2014-01-03 07:03:46 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 07:03:46 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 07:03:46 - starting RELENG_9 tinderbox run for powerpc/powerpc TB --- 2014-01-03 07:03:46 - cleaning the object tree TB --- 2014-01-03 07:03:46 - /usr/local/bin/svn stat /src TB --- 2014-01-03 07:03:52 - At svn revision 260218 TB --- 2014-01-03 07:03:53 - building world TB --- 2014-01-03 07:03:53 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 07:03:53 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 07:03:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 07:03:53 - SRCCONF=/dev/null TB --- 2014-01-03 07:03:53 - TARGET=powerpc TB --- 2014-01-03 07:03:53 - TARGET_ARCH=powerpc TB --- 2014-01-03 07:03:53 - TZ=UTC TB --- 2014-01-03 07:03:53 - __MAKE_CONF=/dev/null TB --- 2014-01-03 07:03:53 - cd /src TB --- 2014-01-03 07:03:53 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 07:03:54 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c kdump_subr.c cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/kdump/kdump.c /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) /src/usr.bin/kdump/kdump.c: In function 'ktrfault': /src/usr.bin/kdump/kdump.c:1632: warning: format '%jx' expects type 'uintmax_t', but argument 2 has type 'vm_offset_t' *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 09:32:19 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 09:32:19 - ERROR: failed to build world TB --- 2014-01-03 09:32:19 - 7511.16 user 752.55 system 8913.38 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 09:32:24 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 756E3F1F; Fri, 3 Jan 2014 09:32:24 +0000 (UTC) Received: from freebsd-stable.sentex.ca (freebsd-stable.sentex.ca [IPv6:2607:f3e0:0:3::6502:9b]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C38F1A3B; Fri, 3 Jan 2014 09:32:24 +0000 (UTC) Received: from freebsd-stable.sentex.ca (localhost [127.0.0.1]) by freebsd-stable.sentex.ca (8.14.5/8.14.5) with ESMTP id s039WNAn033259; Fri, 3 Jan 2014 09:32:23 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-stable.sentex.ca (8.14.5/8.14.5/Submit) id s039WNf0033258; Fri, 3 Jan 2014 09:32:23 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 09:32:23 GMT Message-Id: <201401030932.s039WNf0033258@freebsd-stable.sentex.ca> X-Authentication-Warning: freebsd-stable.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_9 tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:32:24 -0000 TB --- 2014-01-03 07:03:52 - tinderbox 2.20 running on freebsd-stable.sentex.ca TB --- 2014-01-03 07:03:52 - FreeBSD freebsd-stable.sentex.ca 8.3-STABLE FreeBSD 8.3-STABLE #0: Tue Oct 16 17:37:58 UTC 2012 mdtancsa@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/server amd64 TB --- 2014-01-03 07:03:52 - starting RELENG_9 tinderbox run for powerpc64/powerpc TB --- 2014-01-03 07:03:52 - cleaning the object tree TB --- 2014-01-03 07:03:52 - /usr/local/bin/svn stat /src TB --- 2014-01-03 07:03:56 - At svn revision 260218 TB --- 2014-01-03 07:03:57 - building world TB --- 2014-01-03 07:03:57 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 07:03:57 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 07:03:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 07:03:57 - SRCCONF=/dev/null TB --- 2014-01-03 07:03:57 - TARGET=powerpc TB --- 2014-01-03 07:03:57 - TARGET_ARCH=powerpc64 TB --- 2014-01-03 07:03:57 - TZ=UTC TB --- 2014-01-03 07:03:57 - __MAKE_CONF=/dev/null TB --- 2014-01-03 07:03:57 - cd /src TB --- 2014-01-03 07:03:57 - /usr/bin/make -B buildworld >>> World build started on Fri Jan 3 07:03:58 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] gzip -cn /src/usr.bin/jot/jot.1 > jot.1.gz ===> usr.bin/kdump (all) cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c kdump_subr.c cc -O2 -pipe -I/src/usr.bin/kdump/../ktrace -I/src/usr.bin/kdump -I/src/usr.bin/kdump/../.. -I. -std=gnu99 -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.bin/kdump/kdump.c /src/usr.bin/kdump/kdump.c: In function 'ktrsyscall': /src/usr.bin/kdump/kdump.c:1034: error: 'SYS_procctl' undeclared (first use in this function) /src/usr.bin/kdump/kdump.c:1034: error: (Each undeclared identifier is reported only once /src/usr.bin/kdump/kdump.c:1034: error: for each function it appears in.) *** Error code 1 Stop in /src/usr.bin/kdump. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2014-01-03 09:32:23 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 09:32:23 - ERROR: failed to build world TB --- 2014-01-03 09:32:23 - 7563.00 user 756.75 system 8911.24 real http://tinderbox.freebsd.org/tinderbox-freebsd9-build-RELENG_9-powerpc64-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 09:35:49 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 152301EB for ; Fri, 3 Jan 2014 09:35:49 +0000 (UTC) Received: from mail108.syd.optusnet.com.au (mail108.syd.optusnet.com.au [211.29.132.59]) by mx1.freebsd.org (Postfix) with ESMTP id C81091A6E for ; Fri, 3 Jan 2014 09:35:48 +0000 (UTC) Received: from maxwell.menhennitt.com.au (c122-107-224-152.mckinn3.vic.optusnet.com.au [122.107.224.152]) by mail108.syd.optusnet.com.au (Postfix) with ESMTP id 9E10A1A2853 for ; Fri, 3 Jan 2014 20:35:40 +1100 (EST) Received: from [203.2.73.72] (chief.menhennitt.com.au [203.2.73.72]) by maxwell.menhennitt.com.au (Postfix) with ESMTP id 26D3761AA for ; Fri, 3 Jan 2014 20:35:39 +1100 (EST) Message-ID: <52C6846A.8010304@menhennitt.com.au> Date: Fri, 03 Jan 2014 20:35:38 +1100 From: Graham Menhennitt User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: FreeBSD stable Subject: X not working on AMD64 Radeon after upgrading 9-Stable to 10-RC3 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=bpB1Wiqi c=1 sm=1 tr=0 a=BQwmYAONLMrTGJtfTy08BQ==:117 a=BQwmYAONLMrTGJtfTy08BQ==:17 a=Cpq1HDflAAAA:8 a=PO7r1zJSAAAA:8 a=EM0ifYTnZ9cA:10 a=HWt2RsiRpIgA:10 a=8nJEP1OIZ-IA:10 a=6I5d2MoRAAAA:8 a=gJQs4bFPzPgA:10 a=og2_tgJy1mUF58zM9F0A:9 a=wPNLvfGTeEIA:10 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:35:49 -0000 I have a box that's been running X and Kde4 on 9-Stable successfully for ages. I tried a source upgrade to 10-Stable but couldn't get X to run properly. I then blew the old installation away and did a fresh install of 10-RC3. It has the same problem. I start HALD and DBUS and then start X (in various ways - see below). The box then dies - the screen goes black and the monitor says "no signal". I can't kill X with Ctrl-Alt-Bksp, and I can't switch back to the console using Alt-F1. I can log in remotely via ssh and see that Xorg is using 100% CPU time. I can't kill the Xorg process (even with kill -9). All I can do is reboot. I've tried with both a monitor connected to the VGA port and a TV connected to the HDMI port - both the same. If I add "kdm4_enable=YES" to /etc/rc.conf, then that same hang happens soon after boot. The box is AMD64 with ATI Radeon RS690 X1250 IGP. Dmesg output is at http://menhennitt.com.au/starker/dmesg. The config file generated by "Xorg -configure" is at http://menhennitt.com.au/starker/xorg.conf.new and the log from running that configure is at http://menhennitt.com.au/starker/Xorg.0.log_configure. Running "X -config xorg.conf.new" as root produces the log file http://menhennitt.com.au/starker/Xorg.0.log_1. If I run startx as a non-root user, I successfully get a Vesa VGA session. The log file from that is at http://menhennitt.com.au/starker/Xorg.0.log. I've done a bit of googling and found a few people with similar problems, but no solution. Can anybody please give me some suggestions. Thanks in advance for any help, Graham From owner-freebsd-stable@FreeBSD.ORG Fri Jan 3 17:45:16 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CC9346E; Fri, 3 Jan 2014 17:45:16 +0000 (UTC) Received: from worker01.tb.des.no (worker01.tb.des.no [41.154.2.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF3C71234; Fri, 3 Jan 2014 17:45:15 +0000 (UTC) Received: from worker01.tb.des.no (localhost [127.0.0.1]) by worker01.tb.des.no (8.14.5/8.14.5) with ESMTP id s03HjB6S030739; Fri, 3 Jan 2014 19:45:11 +0200 (SAST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by worker01.tb.des.no (8.14.5/8.14.5/Submit) id s03HjBGC030501; Fri, 3 Jan 2014 17:45:11 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 3 Jan 2014 17:45:11 GMT Message-Id: <201401031745.s03HjBGC030501@worker01.tb.des.no> X-Authentication-Warning: worker01.tb.des.no: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_10 tinderbox] failure on mips64/mips Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 17:45:16 -0000 TB --- 2014-01-03 16:10:43 - tinderbox 2.20 running on worker01.tb.des.no TB --- 2014-01-03 16:10:43 - FreeBSD worker01.tb.des.no 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-03 16:10:43 - starting RELENG_10 tinderbox run for mips64/mips TB --- 2014-01-03 16:10:43 - cleaning the object tree TB --- 2014-01-03 16:10:43 - /usr/local/bin/svn stat --no-ignore /src TB --- 2014-01-03 16:11:33 - At svn revision 260231 TB --- 2014-01-03 16:11:34 - building world TB --- 2014-01-03 16:11:34 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 16:11:34 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 16:11:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 16:11:34 - SRCCONF=/dev/null TB --- 2014-01-03 16:11:34 - TARGET=mips TB --- 2014-01-03 16:11:34 - TARGET_ARCH=mips64 TB --- 2014-01-03 16:11:34 - TZ=UTC TB --- 2014-01-03 16:11:34 - __MAKE_CONF=/dev/null TB --- 2014-01-03 16:11:34 - cd /src TB --- 2014-01-03 16:11:34 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Jan 3 16:11:44 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Jan 3 17:35:45 UTC 2014 TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m ADM5120 TB --- 2014-01-03 17:35:45 - skipping ADM5120 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m ALCHEMY TB --- 2014-01-03 17:35:45 - skipping ALCHEMY kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AP121 TB --- 2014-01-03 17:35:45 - skipping AP121 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AP91 TB --- 2014-01-03 17:35:45 - skipping AP91 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AP93 TB --- 2014-01-03 17:35:45 - skipping AP93 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AP94 TB --- 2014-01-03 17:35:45 - skipping AP94 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AP96 TB --- 2014-01-03 17:35:45 - skipping AP96 kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AR71XX_BASE TB --- 2014-01-03 17:35:45 - skipping AR71XX_BASE kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AR724X_BASE TB --- 2014-01-03 17:35:45 - skipping AR724X_BASE kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AR91XX_BASE TB --- 2014-01-03 17:35:45 - skipping AR91XX_BASE kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AR933X_BASE TB --- 2014-01-03 17:35:45 - skipping AR933X_BASE kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m AR934X_BASE TB --- 2014-01-03 17:35:45 - skipping AR934X_BASE kernel TB --- 2014-01-03 17:35:45 - cd /src/sys/mips/conf TB --- 2014-01-03 17:35:45 - /usr/sbin/config -m BERI_DE4_BASE TB --- 2014-01-03 17:35:45 - building BERI_DE4_BASE kernel TB --- 2014-01-03 17:35:45 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 17:35:45 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 17:35:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 17:35:45 - SRCCONF=/dev/null TB --- 2014-01-03 17:35:45 - TARGET=mips TB --- 2014-01-03 17:35:45 - TARGET_ARCH=mips64 TB --- 2014-01-03 17:35:45 - TZ=UTC TB --- 2014-01-03 17:35:45 - __MAKE_CONF=/dev/null TB --- 2014-01-03 17:35:45 - cd /src TB --- 2014-01-03 17:35:45 - /usr/bin/make -B buildkernel KERNCONF=BERI_DE4_BASE >>> Kernel build for BERI_DE4_BASE started on Fri Jan 3 17:35:45 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BERI_DE4_BASE completed on Fri Jan 3 17:40:15 UTC 2014 TB --- 2014-01-03 17:40:15 - cd /src/sys/mips/conf TB --- 2014-01-03 17:40:15 - /usr/sbin/config -m BERI_DE4_MDROOT TB --- 2014-01-03 17:40:15 - building BERI_DE4_MDROOT kernel TB --- 2014-01-03 17:40:15 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 17:40:15 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 17:40:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 17:40:15 - SRCCONF=/dev/null TB --- 2014-01-03 17:40:15 - TARGET=mips TB --- 2014-01-03 17:40:15 - TARGET_ARCH=mips64 TB --- 2014-01-03 17:40:15 - TZ=UTC TB --- 2014-01-03 17:40:15 - __MAKE_CONF=/dev/null TB --- 2014-01-03 17:40:15 - cd /src TB --- 2014-01-03 17:40:15 - /usr/bin/make -B buildkernel KERNCONF=BERI_DE4_MDROOT >>> Kernel build for BERI_DE4_MDROOT started on Fri Jan 3 17:40:15 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BERI_DE4_MDROOT completed on Fri Jan 3 17:45:05 UTC 2014 TB --- 2014-01-03 17:45:05 - cd /src/sys/mips/conf TB --- 2014-01-03 17:45:05 - /usr/sbin/config -m BERI_DE4_SDROOT TB --- 2014-01-03 17:45:05 - building BERI_DE4_SDROOT kernel TB --- 2014-01-03 17:45:05 - CROSS_BUILD_TESTING=YES TB --- 2014-01-03 17:45:05 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-03 17:45:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-03 17:45:05 - SRCCONF=/dev/null TB --- 2014-01-03 17:45:05 - TARGET=mips TB --- 2014-01-03 17:45:05 - TARGET_ARCH=mips64 TB --- 2014-01-03 17:45:05 - TZ=UTC TB --- 2014-01-03 17:45:05 - __MAKE_CONF=/dev/null TB --- 2014-01-03 17:45:05 - cd /src TB --- 2014-01-03 17:45:05 - /usr/bin/make -B buildkernel KERNCONF=BERI_DE4_SDROOT >>> Kernel build for BERI_DE4_SDROOT started on Fri Jan 3 17:45:05 UTC 2014 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools [...] cd /src/sys/modules/aic7xxx/aicasm; PATH=/obj/mips.mips64/src/tmp/legacy/usr/sbin:/obj/mips.mips64/src/tmp/legacy/usr/bin:/obj/mips.mips64/src/tmp/legacy/usr/games:/obj/mips.mips64/src/tmp/legacy/bin:/sbin:/bin:/usr/sbin:/usr/bin MAKEOBJDIRPREFIX=/obj/mips.mips64/src/sys/BERI_DE4_SDROOT/modules /obj/src/make.amd64/bmake SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF -DEARLY_BUILD all cc -O2 -pipe -I. -I/src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wno-pointer-sign -c /src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm/aicasm.c cc -O2 -pipe -I. -I/src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wno-pointer-sign -c /src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm/aicasm_symbol.c /src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm/aicasm_symbol.c: In function 'symtable_dump': /src/sys/modules/aic7xxx/aicasm/../../../dev/aic7xxx/aicasm/aicasm_symbol.c:461: internal compiler error: in var_ann, at tree-flow-inline.h:127 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop. bmake[1]: stopped in /src/sys/modules/aic7xxx/aicasm *** Error code 1 Stop. bmake: stopped in /src *** [buildkernel] Error code 1 Stop in /src. TB --- 2014-01-03 17:45:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-03 17:45:09 - ERROR: failed to build BERI_DE4_SDROOT kernel TB --- 2014-01-03 17:45:09 - 3995.23 user 1968.41 system 5666.45 real http://tinderbox.des.no/tinderbox-freebsd10-build-RELENG_10-mips64-mips.full From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 04:40:38 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01D19951 for ; Sat, 4 Jan 2014 04:40:38 +0000 (UTC) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E46810F6 for ; Sat, 4 Jan 2014 04:40:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Content-Type:MIME-Version:Message-ID:Subject:To:From:Date; bh=TfW6UlkFQCR86lDFJveVFZTTJl9bZLpOZ22fW2yc1lA=; b=YvnHDRgG93VM48WSfOTkHdc8MYdkw4ZApA3dxOjBiwTnS45OAVv5iH9xGq9iKDiZ1cM+55wB9aPVMO+fUNgV2Nw00jXcWJLn4eHr/+IKYxZJ7T+6AZwDbKgOWFKAIe+129J2KBtLuBRe0mxIzefokSOW8fJtRHGSmFqTsC+zFs4=; Received: from lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net ([2001:470:1f0e:3ad::2]:58887 helo=thebighonker.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.82 (FreeBSD)) (envelope-from ) id 1VzJ2F-0007dy-AE for freebsd-stable@freebsd.org; Fri, 03 Jan 2014 22:40:35 -0600 Date: Fri, 3 Jan 2014 22:40:29 -0600 From: Larry Rosenman To: freebsd-stable@freebsd.org Subject: Anything here I should worry about? Message-ID: <20140104044029.GA29339@thebighonker.lerctr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.22 (2013-10-16) X-Spam-Score: -2.9 (--) X-LERCTR-Spam-Score: -2.9 (--) X-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1,BAYES_00=-1.9 X-LERCTR-Spam-Report: SpamScore (-2.9/5.0) ALL_TRUSTED=-1,BAYES_00=-1.9 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 04:40:38 -0000 I just bought a new HP DL360 G5, and have FreeBSD 10.0-RC4 (from the stable branch) running just fine. However, some of the messages at boot are "interesting", and I wonder if I should worry or file any PR's or give access... dmesg: Copyright (c) 1992-2014 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.0-PRERELEASE #0 r260249: Fri Jan 3 19:21:13 CST 2014 root@thebighonker2:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD clang version 3.3 (tags/RELEASE_33/final 183502) 20130610 CPU: Intel(R) Xeon(R) CPU L5420 @ 2.50GHz (2500.14-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x10676 Family = 0x6 Model = 0x17 Stepping = 6 Features=0xbfebfbff Features2=0xce3bd AMD Features=0x20100800 AMD Features2=0x1 TSC: P-state invariant, performance statistics real memory = 17179869184 (16384 MB) avail memory = 16588226560 (15819 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs FreeBSD/SMP: 2 package(s) x 4 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 cpu4 (AP): APIC ID: 4 cpu5 (AP): APIC ID: 5 cpu6 (AP): APIC ID: 6 cpu7 (AP): APIC ID: 7 ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20130823/tbfadt-682) ACPI BIOS Warning (bug): Invalid length for FADT/Pm2ControlBlock: 32, using default 8 (20130823/tbfadt-682) ioapic0 irqs 0-23 on motherboard ioapic1 irqs 24-47 on motherboard random: initialized kbd1 at kbdmux0 cryptosoft0: on motherboard acpi0: on motherboard acpi0: Power Button (fixed) cpu0: on acpi0 cpu1: on acpi0 cpu2: on acpi0 cpu3: on acpi0 cpu4: on acpi0 cpu5: on acpi0 cpu6: on acpi0 cpu7: on acpi0 attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 950 Event timer "HPET" frequency 14318180 Hz quality 350 Event timer "HPET1" frequency 14318180 Hz quality 340 Event timer "HPET2" frequency 14318180 Hz quality 340 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x908-0x90b on acpi0 pcib0: on acpi0 pci0: on pcib0 pcib1: at device 2.0 on pci0 ACPI Warning: \134_SB_.PCI0.PT02._PRT: Return Package has no elements (empty) (20130823/nsprepkg-137) pci9: on pcib1 pcib2: at device 0.0 on pci9 pci10: on pcib2 pcib3: at device 0.0 on pci10 pci11: on pcib3 pcib4: at device 1.0 on pci10 pci14: on pcib4 pcib5: at device 2.0 on pci10 pci15: on pcib5 pcib6: at device 0.3 on pci9 pci16: on pcib6 pcib7: at device 3.0 on pci0 pci6: on pcib7 ciss0: port 0x4000-0x40ff mem 0xfde00000-0xfdefffff,0xfddf0000-0xfddf0fff irq 16 at device 0.0 on pci6 ciss0: PERFORMANT Transport pcib8: at device 4.0 on pci0 pci19: on pcib8 pcib9: at device 5.0 on pci0 pci22: on pcib9 pcib10: at device 6.0 on pci0 pci2: on pcib10 pcib11: at device 0.0 on pci2 pci3: on pcib11 bce0: mem 0xf8000000-0xf9ffffff irq 18 at device 0.0 on pci3 bce0: /usr/src/sys/dev/bce/if_bce.c(1251): Management firmware enabled but not running! miibus0: on bce0 brgphy0: PHY 1 on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bce0: Ethernet address: 00:23:7d:9e:6e:8a bce0: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); B/C (1.9.6); Bufs (RX:2;TX:2;PG:8); Flags (SPLT|MSI|MFW); MFW (NOT RUNNING!) Coal (RX:6,6,18,18; TX:20,20,80,80) pcib12: at device 7.0 on pci0 pci4: on pcib12 pcib13: at device 0.0 on pci4 pci5: on pcib13 bce1: mem 0xfa000000-0xfbffffff irq 19 at device 0.0 on pci5 bce1: /usr/src/sys/dev/bce/if_bce.c(1251): Management firmware enabled but not running! miibus1: on bce1 brgphy1: PHY 1 on miibus1 brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow bce1: Ethernet address: 00:23:7d:9e:ed:86 bce1: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); B/C (1.9.6); Bufs (RX:2;TX:2;PG:8); Flags (SPLT|MSI|MFW); MFW (NOT RUNNING!) Coal (RX:6,6,18,18; TX:20,20,80,80) uhci0: port 0x1000-0x101f irq 16 at device 29.0 on pci0 usbus0 on uhci0 uhci1: port 0x1020-0x103f irq 17 at device 29.1 on pci0 usbus1 on uhci1 uhci2: port 0x1040-0x105f irq 18 at device 29.2 on pci0 usbus2 on uhci2 uhci3: port 0x1060-0x107f irq 19 at device 29.3 on pci0 usbus3 on uhci3 ehci0: mem 0xf7df0000-0xf7df03ff irq 16 at device 29.7 on pci0 usbus4: EHCI version 1.0 usbus4 on ehci0 pcib14: at device 30.0 on pci0 pci1: on pcib14 vgapci0: port 0x3000-0x30ff mem 0xd8000000-0xdfffffff,0xf7ff0000-0xf7ffffff irq 23 at device 3.0 on pci1 vgapci0: Boot video device pci1: at device 4.0 (no driver attached) pci1: at device 4.2 (no driver attached) uhci4: port 0x3800-0x381f irq 22 at device 4.4 on pci1 usbus5 on uhci4 ipmi0: mem 0xf7ef0000-0xf7ef00ff irq 21 at device 4.6 on pci1 ipmi0: using KSC interface isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x500-0x50f irq 17 at device 31.1 on pci0 ata0: at channel 0 on atapci0 acpi_tz0: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 orm0: at iomem 0xc0000-0xcafff,0xe6000-0xe7fff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atrtc0: at port 0x70 irq 8 on isa0 Event timer "RTC" frequency 32768 Hz quality 0 ppc0: cannot reserve I/O port range uart1: at port 0x2f8-0x2ff irq 3 on isa0 est0: on cpu0 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est0 attach returned 6 p4tcc0: on cpu0 est1: on cpu1 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est1 attach returned 6 p4tcc1: on cpu1 est2: on cpu2 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est2 attach returned 6 p4tcc2: on cpu2 est3: on cpu3 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est3 attach returned 6 p4tcc3: on cpu3 est4: on cpu4 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est4 attach returned 6 p4tcc4: on cpu4 est5: on cpu5 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est5 attach returned 6 p4tcc5: on cpu5 est6: on cpu6 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est6 attach returned 6 p4tcc6: on cpu6 est7: on cpu7 est: CPU supports Enhanced Speedstep, but is not recognized. est: cpu_vendor GenuineIntel, msr 4718471806004718 device_attach: est7 attach returned 6 p4tcc7: on cpu7 ZFS filesystem version: 5 ZFS storage pool version: features support (5000) Timecounters tick every 1.000 msec random: unblocking device. usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 usbus3: 12Mbps Full Speed USB v1.0 usbus4: 480Mbps High Speed USB v2.0 usbus5: 12Mbps Full Speed USB v1.0 ugen1.1: at usbus1 uhub0: on usbus1 ugen0.1: at usbus0 uhub1: on usbus0 ugen4.1: at usbus4 uhub2: on usbus4 ugen3.1: at usbus3 uhub3: on usbus3 ugen2.1: at usbus2 uhub4: on usbus2 ugen5.1: <0x103c> at usbus5 uhub5: <0x103c UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus5 ipmi0: IPMI device rev. 1, firmware rev. 2.20, version 2.0 ipmi0: Number of channels 0 ipmi0: Attached watchdog da0 at ciss0 bus 0 scbus0 target 0 lun 0 da0: Fixed Direct Access SCSI-5 device da0: Serial Number PH8BMQ3157 da0: 135.168MB/s transfers da0: Command Queueing enabled da0: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) da1 at ciss0 bus 0 scbus0 target 1 lun 0 da1: Fixed Direct Access SCSI-5 device da1: Serial Number PH8BMQ3157 da1: 135.168MB/s transfers da1: Command Queueing enabled da1: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) da2 at ciss0 bus 0 scbus0 target 2 lun 0 da2: Fixed Direct Access SCSI-5 device da2: Serial Number PH8BMQ3157 da2: 135.168MB/s transfers da2: Command Queueing enabled da2: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) da3 at ciss0 bus 0 scbus0 target 3 lun 0 da3: Fixed Direct Access SCSI-5 device da3: Serial Number PH8BMQ3157 da3: 135.168MB/s transfers da3: Command Queueing enabled da3: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) da4 at ciss0 bus 0 scbus0 target 4 lun 0 da4: Fixed Direct Access SCSI-5 device da4: Serial Number PH8BMQ3157 da4: 135.168MB/s transfers da4: Command Queueing enabled da4: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) da5 at ciss0 bus 0 scbus0 target 5 lun 0 da5: Fixed Direct Access SCSI-5 device da5: Serial Number PH8BMQ3157 da5: 135.168MB/s transfers da5: Command Queueing enabled da5: 139980MB (286679925 512 byte sectors: 255H 63S/T 17845C) cd0 at ata0 bus 0 scbus2 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.300MB/s transfers (UDMA2, ATAPI 12bytes, PIO 65534bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed Netvsc initializing... SMP: AP CPU #6 Launched! SMP: AP CPU #7 Launched! SMP: AP CPU #5 Launched! SMP: AP CPU #4 Launched! SMP: AP CPU #1 Launched! SMP: AP CPU #2 Launched! SMP: AP CPU #3 Launched! hwpmc: SOFT/16/64/0x67 TSC/1/64/0x20 IAP/2/40/0x3ff IAF/3/40/0x67 uhub3: 2 ports with 2 removable, self powered uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub5: 2 ports with 2 removable, self powered uhub4: 2 ports with 2 removable, self powered Root mount waiting for: usbus5 usbus4 ugen5.2: at usbus5 ukbd0: on usbus5 kbd2 at ukbd0 Root mount waiting for: usbus4 uhub2: 8 ports with 8 removable, self powered Trying to mount root from zfs:zroot/ROOT/default []... bce0: Gigabit link up! ums0: on usbus5 ums0: 3 buttons and [XY] coordinates ID=0 -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 214-642-9640 E-Mail: ler@lerctr.org US Mail: 108 Turvey Cove, Hutto, TX 78634-5688 From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 07:12:48 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 005CCD4D for ; Sat, 4 Jan 2014 07:12:47 +0000 (UTC) Received: from cdptpa-oedge-vip.email.rr.com (cdptpa-outbound-snat.email.rr.com [107.14.166.226]) by mx1.freebsd.org (Postfix) with ESMTP id B684C19D6 for ; Sat, 4 Jan 2014 07:12:46 +0000 (UTC) Received: from [96.28.178.143] ([96.28.178.143:61500] helo=localhost) by cdptpa-oedge01 (envelope-from ) (ecelerity 3.5.0.35861 r(Momo-dev:tip)) with ESMTP id 43/76-14229-524B7C25; Sat, 04 Jan 2014 07:11:34 +0000 Date: Sat, 04 Jan 2014 07:11:33 +0000 Message-ID: <43.76.14229.524B7C25@cdptpa-oedge01> From: "Thomas Mueller" To: freebsd-stable@freebsd.org Subject: How to make boot wait a few seconds more for device response? X-RR-Connecting-IP: 107.14.168.118:25 X-Cloudmark-Score: 0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 07:12:48 -0000 How do I make boot wait a few seconds more if it can't mount the root device immediately? Device in question is a USB 3.0 USB stick, 32 GB where I installed FreeBSD 10-prerelease i386. Booting process can't mount the root device fast enough, and I get mountroot> prompt. I have succeeded every time in booting, sometimes after several attempts due to not knowing the ddevice name/number. Being able to enter ufs:/dev/gpt/FB10USB3i386-root helps, especially when more than one USB stick is present, and enables me to get it correct the first time. But it still is annoying, and I would like to avoid this extra step, if possible. It seems like a matter of a USB stick not responding as fast as a hard drive, or maybe this USB 3.0 stick is slower for initial response than USB 2.0 sticks.. So how do I tell the system to allow several seconds more? Relevant kernel messages are: Dec 29 21:23:09 amelia4 kernel: ugen1.7: at usbus1 Dec 29 21:23:09 amelia4 kernel: Root mount waiting for: usbus1 Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): INQUIRY. CDB: 12 00 0 0 00 24 00 Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): CAM status: CCB reque st completed with an error Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): Retrying command Dec 29 21:23:09 amelia4 kernel: ugen1.8: at usbus1 Dec 29 21:23:09 amelia4 kernel: Trying to mount root from ufs:/dev/gpt/FB10USB3i 386-root [rw]... Dec 29 21:23:09 amelia4 kernel: mountroot: waiting for device /dev/gpt/FB10USB3i 386-root ... Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): INQUIRY. CDB: 12 00 0 0 00 24 00 Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): CAM status: CCB reque st completed with an error Dec 29 21:23:09 amelia4 kernel: (probe0:umass-sim0:0:0:0): Retrying command Dec 29 21:23:09 amelia4 kernel: Mounting from ufs:/dev/gpt/FB10USB3i386-root fai led with error 19. But I am then able to mount this device/partition from mountroot> prompt. By the way, I also notice some instabilities with USB; this is on FreeBSD 10-prerelease amd64 as well as i386: ugen1.4: at usbus1 (disconnected) ums0: at uhub6, port 2, addr 4 (disconnected) ugen1.4: at usbus1 ums0: on usbus1 ums0: 8 buttons and [XYZT] coordinates ID=0 though this mouse is actually connected and responsive all the time. I just checked for 9.2-STABLE amd64 and 11-HEAD i386 and amd64: these USB mouse-related messages don't occur. Now I'm afraid to upgrade to 10.0 on computer where 9.2-STABLE is installed and re(4) works OK. 11-HEAD is stabler than 10-prerelease? FreeBSD version on computer with newer MSI Z77 MPOWER motherboard is 10.0-prelease from about the time of RC3: FreeBSD amelia4 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #3: Mon Dec 30 01:38:00 UTC 2013 root@amelia4:/usr/obj/usr/src/sys/SANDY10 amd64 Tom From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 11:11:07 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C566484E for ; Sat, 4 Jan 2014 11:11:07 +0000 (UTC) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2973E186D for ; Sat, 4 Jan 2014 11:11:06 +0000 (UTC) X-Envelope-From: eugen@grosbein.net X-Envelope-To: freebsd-stable@freebsd.org Received: from eg.sd.rdtc.ru (eugen@localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.7/8.14.7) with ESMTP id s04BAsTo049921; Sat, 4 Jan 2014 18:10:55 +0700 (NOVT) (envelope-from eugen@grosbein.net) Message-ID: <52C7EC3E.6070709@grosbein.net> Date: Sat, 04 Jan 2014 18:10:54 +0700 From: Eugene Grosbein User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130415 Thunderbird/17.0.5 MIME-Version: 1.0 To: Thomas Mueller Subject: Re: How to make boot wait a few seconds more for device response? References: <43.76.14229.524B7C25@cdptpa-oedge01> In-Reply-To: <43.76.14229.524B7C25@cdptpa-oedge01> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,BAYES_00, LOCAL_FROM autolearn=no version=3.3.2 X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 2.6 LOCAL_FROM From my domains X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eg.sd.rdtc.ru Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 11:11:07 -0000 On 04.01.2014 14:11, Thomas Mueller wrote: > How do I make boot wait a few seconds more if it can't mount the root device immediately? Just add to your /boot/loader.conf: kern.cam.boot_delay="10000" The value counts miliseconds. From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 12:06:01 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E566FC8 for ; Sat, 4 Jan 2014 12:06:01 +0000 (UTC) Received: from mail.made4.biz (unknown [IPv6:2001:41d0:1:7018::1:3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F8021C7C for ; Sat, 4 Jan 2014 12:06:01 +0000 (UTC) Received: from 2a02-8428-011a-a000-0290-f5ff-fe9d-b78c.rev.sfr.net ([2a02:8428:11a:a000:290:f5ff:fe9d:b78c] helo=magellan.dumbbell.fr) by mail.made4.biz with esmtpsa (TLSv1:DHE-RSA-CAMELLIA256-SHA:256) (Exim 4.82 (FreeBSD)) (envelope-from ) id 1VzPzL-0005fp-Gk for freebsd-stable@freebsd.org; Sat, 04 Jan 2014 13:05:59 +0100 Message-ID: <52C7F922.6010204@FreeBSD.org> Date: Sat, 04 Jan 2014 13:05:54 +0100 From: =?ISO-8859-1?Q?Jean-S=E9bastien_P=E9dron?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: X not working on AMD64 Radeon after upgrading 9-Stable to 10-RC3 References: <52C6846A.8010304@menhennitt.com.au> In-Reply-To: <52C6846A.8010304@menhennitt.com.au> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gBfUON3nubWSB77S9Bm4H75u85UTfsxDN" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 12:06:01 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --gBfUON3nubWSB77S9Bm4H75u85UTfsxDN Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 03.01.2014 10:35, Graham Menhennitt wrote: > I have a box that's been running X and Kde4 on 9-Stable successfully fo= r > ages. I tried a source upgrade to 10-Stable but couldn't get X to run > properly. I then blew the old installation away and did a fresh install= > of 10-RC3. It has the same problem. Starting with FreeBSD 10.0, a new Radeon driver is available in the kernel. It's mandatory for Radeon HD 5000 and above, but can be used with older cards too. Could you please try to: 1. Define the following variable in your /etc/make.conf: WITH_NEW_XORG=3D"YES" 2. Upgrade your ports (eg. "portmaster -a" if you're using portmaster). It should at least upgrade the following ports: graphics/libdrm graphics/libGL graphics/dri x11-servers/xorg-server x11-drivers/xf86-video-ati 3. Rebuild xf86-* ports not upgraded by previous step. This could include: x11-drivers/xf86-input-keyboard x11-drivers/xf86-input-mouse And try to start X again. Note that "Xorg -configure" will probably fail: this is a known issue. Try to start X without a configuration file.= If this doesn't work, could you please post: o the output of dmesg *after* trying to start X o the output of "pciconf -lv" o your Xorg.log --=20 Jean-S=E9bastien P=E9dron --gBfUON3nubWSB77S9Bm4H75u85UTfsxDN Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iEYEARECAAYFAlLH+ScACgkQa+xGJsFYOlMFrwCg0ArvOSB9RsZe+qzu7qtOTsDO XkAAoJ9w97JFi50h4nnjb4DoIskNyD8z =qW5X -----END PGP SIGNATURE----- --gBfUON3nubWSB77S9Bm4H75u85UTfsxDN-- From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 13:52:01 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6CB3306; Sat, 4 Jan 2014 13:52:01 +0000 (UTC) Received: from mail-qe0-x22a.google.com (mail-qe0-x22a.google.com [IPv6:2607:f8b0:400d:c02::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 736ED133D; Sat, 4 Jan 2014 13:52:01 +0000 (UTC) Received: by mail-qe0-f42.google.com with SMTP id b4so16842584qen.29 for ; Sat, 04 Jan 2014 05:52:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=U1ILBGhTFO9ei9aTDiMFVzCiQHqGxbzHuPeUEE0UK08=; b=BommMLYP1rjhvUO7Hb1L/68RndSLl4c+SXKDHQ7dXXmOUOvGAndYA5PwCAYEsiiljw F0s6S5ihM1Tr2HuTu3z5v1snEvpZRYuj7iEFHGlNnkc40HdQ+aZXgFBfkEnZ5WUWlxws t9a9DtLNWDjSe97a0C0tQ0O132x1A31MHasZ1AxV4NyD2UvtebKMNBBJfoL54X7D8SAy LFtmtMH7ppXOb0emf9etEpkZ6rjPhsVVNia+R8RdgLOZwVRLIWhkTUoLCg1X9MKXRsvi xH28taST0nD976WAT+bIkIHoGZR6+mHLHx9imkfTd1D3yGwLSakGC+fsH6PVhrbrF6G2 zuMw== MIME-Version: 1.0 X-Received: by 10.49.130.135 with SMTP id oe7mr164540851qeb.41.1388843520452; Sat, 04 Jan 2014 05:52:00 -0800 (PST) Sender: tomek.cedro@gmail.com Received: by 10.229.151.73 with HTTP; Sat, 4 Jan 2014 05:52:00 -0800 (PST) Date: Sat, 4 Jan 2014 14:52:00 +0100 X-Google-Sender-Auth: mKYNnF8bncH9MDisRuaRjyPtKIA Message-ID: Subject: FreeBSD 10.0-RC4 AMD64 binutils / arm-eabi-binutils locales conflict From: CeDeROM To: freebsd-stable@freebsd.org, freebsd-ports , kientzle@FreeBSD.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 13:52:02 -0000 Hello world :-) There still is a conflict of binutils and arm-eabi-binutils in binary packages / ports - they install locale files into same destination. This blocks ARM development and/or other tools that depends on binutils. Please note that binutils are also dependency of various other packages (i.e. openjdk). Best regards :-) Tomek # pkg install openjdk Updating repository catalogue The following 9 packages will be installed: Installing compat9x-amd64: 9.2.902000.201310 Installing mpfr: 3.1.2 Installing mpc: 1.0.1 Installing gcc-ecj: 4.5 Installing binutils: 2.24 Installing javavmwrapper: 2.4_3 Installing java-zoneinfo: 2013.h Installing gcc: 4.6.4 Installing openjdk: 7.45.18 The installation will require 778 MB more space 144 MB to be downloaded Proceed with installing packages [y/N]: y compat9x-amd64-9.2.902000.201310.txz 100% 2861KB 1.4MB/s 2.6MB/s 00:02 mpfr-3.1.2.txz 100% 332KB 332.0KB/s 332.0KB/s 00:00 mpc-1.0.1.txz 100% 77KB 77.1KB/s 77.1KB/s 00:00 gcc-ecj-4.5.txz 100% 1373KB 1.3MB/s 913.2KB/s 00:01 binutils-2.24.txz 100% 4114KB 2.0MB/s 2.2MB/s 00:02 javavmwrapper-2.4_3.txz 100% 18KB 17.7KB/s 17.7KB/s 00:01 java-zoneinfo-2013.h.txz 100% 84KB 83.7KB/s 83.7KB/s 00:00 gcc-4.6.4.txz 100% 87MB 2.6MB/s 3.1MB/s 00:33 openjdk-7.45.18.txz 100% 48MB 2.7MB/s 1.4MB/s 00:18 Checking integrity... done [1/9] Installing compat9x-amd64-9.2.902000.201310... done [2/9] Installing mpfr-3.1.2... done [3/9] Installing mpc-1.0.1... done [4/9] Installing gcc-ecj-4.5... done [5/9] Installing binutils-2.24... done [6/9] Installing javavmwrapper-2.4_3... done [7/9] Installing java-zoneinfo-2013.h... done [8/9] Installing gcc-4.6.4... done [9/9] Installing openjdk-7.45.18... done # pkg install arm-eabi-gcc Updating repository catalogue The following 2 packages will be installed: Installing arm-eabi-binutils: 2.23.2 Installing arm-eabi-gcc: 4.5.4_1 The installation will require 155 MB more space 23 MB to be downloaded Proceed with installing packages [y/N]: y arm-eabi-binutils-2.23.2.txz 100% 2463KB 2.4MB/s 1.2MB/s 00:01 arm-eabi-gcc-4.5.4_1.txz 100% 21MB 2.3MB/s 2.9MB/s 00:09 Checking integrity...pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/bg/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/bg/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/bg/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/da/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/da/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/da/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/da/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/da/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/de/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/de/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/eo/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/es/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fi/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/fr/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ga/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ga/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ga/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/id/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/it/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/it/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/it/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/it/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ja/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ja/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ja/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ja/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ja/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ms/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/nl/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/nl/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/pt_BR/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/pt_BR/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ro/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ro/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ro/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ro/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ru/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ru/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ru/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/ru/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/rw/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/rw/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/rw/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/rw/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sk/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sr/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sv/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sv/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sv/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sv/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/sv/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/gas.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/tr/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/uk/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/uk/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/uk/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/uk/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/uk/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/vi/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/vi/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/vi/LC_MESSAGES/gprof.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/vi/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/vi/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_CN/LC_MESSAGES/bfd.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_CN/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_CN/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_CN/LC_MESSAGES/opcodes.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_TW/LC_MESSAGES/binutils.mo with: - arm-eabi-binutils-2.23.2 pkg: WARNING: locally installed binutils-2.24 conflicts on /usr/local/share/locale/zh_TW/LC_MESSAGES/ld.mo with: - arm-eabi-binutils-2.23.2 -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 17:16:49 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 406A98FD for ; Sat, 4 Jan 2014 17:16:49 +0000 (UTC) Received: from mail-in-10.arcor-online.net (mail-in-10.arcor-online.net [151.189.21.50]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6E8E10D1 for ; Sat, 4 Jan 2014 17:16:48 +0000 (UTC) Received: from mail-in-12-z2.arcor-online.net (mail-in-12-z2.arcor-online.net [151.189.8.29]) by mx.arcor.de (Postfix) with ESMTP id CB2292D6369 for ; Sat, 4 Jan 2014 17:41:43 +0100 (CET) Received: from mail-in-16.arcor-online.net (mail-in-16.arcor-online.net [151.189.21.56]) by mail-in-12-z2.arcor-online.net (Postfix) with ESMTP id C08382E617F for ; Sat, 4 Jan 2014 17:41:43 +0100 (CET) X-Greylist: Passed host: 92.75.108.162 X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-16.arcor-online.net A73708274 Received: from lorvorc.mips.inka.de (dslb-092-075-108-162.pools.arcor-ip.net [92.75.108.162]) by mail-in-16.arcor-online.net (Postfix) with ESMTPS id A73708274 for ; Sat, 4 Jan 2014 17:41:43 +0100 (CET) Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.7/8.14.7) with ESMTP id s04GfhXx099494 for ; Sat, 4 Jan 2014 17:41:43 +0100 (CET) (envelope-from mailnull@lorvorc.mips.inka.de) Received: (from mailnull@localhost) by lorvorc.mips.inka.de (8.14.7/8.14.7/Submit) id s04Gfhtr099493 for freebsd-stable@freebsd.org; Sat, 4 Jan 2014 17:41:43 +0100 (CET) (envelope-from mailnull) From: naddy@mips.inka.de (Christian Weisgerber) Subject: 9->10: USB device number changes Date: Sat, 4 Jan 2014 16:41:43 +0000 (UTC) Message-ID: Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 17:16:49 -0000 If you're going from FreeBSD 9 to 10, the attach order of USB devices may change. FreeBSD 9's GENERIC kernel has various USB drivers compiled in. On 10, only a few core drivers remain in GENERIC and drivers for other devices are loaded dynamically as kernel modules by devd(8). As a side effect, the attach order and thus the numbering may change. Specifically, I have four ucom(4) adapters on a machine, a mix of three uplcom(4) and one uftdi(4) device. On FreeBSD 9, these used to attach in the USB address order. On 10, the uplcoms all attach first, in address order, and the uftdi afterwards, so the corresponding devices cuaU[0-3] have been reordered. I just thought I'd mention it. -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 17:39:35 2014 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A9447F0; Sat, 4 Jan 2014 17:39:35 +0000 (UTC) Received: from worker01.tb.des.no (worker01.tb.des.no [41.154.2.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 46ACB123D; Sat, 4 Jan 2014 17:39:33 +0000 (UTC) Received: from worker01.tb.des.no (localhost [127.0.0.1]) by worker01.tb.des.no (8.14.5/8.14.5) with ESMTP id s04HdNCn093056; Sat, 4 Jan 2014 19:39:23 +0200 (SAST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by worker01.tb.des.no (8.14.5/8.14.5/Submit) id s04HdNV4092759; Sat, 4 Jan 2014 17:39:23 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 4 Jan 2014 17:39:23 GMT Message-Id: <201401041739.s04HdNV4092759@worker01.tb.des.no> X-Authentication-Warning: worker01.tb.des.no: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_10 tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 17:39:35 -0000 TB --- 2014-01-04 14:40:43 - tinderbox 2.20 running on worker01.tb.des.no TB --- 2014-01-04 14:40:43 - FreeBSD worker01.tb.des.no 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2014-01-04 14:40:43 - starting RELENG_10 tinderbox run for powerpc/powerpc TB --- 2014-01-04 14:40:43 - cleaning the object tree TB --- 2014-01-04 14:40:43 - /usr/local/bin/svn stat --no-ignore /src TB --- 2014-01-04 14:41:29 - At svn revision 260257 TB --- 2014-01-04 14:41:30 - building world TB --- 2014-01-04 14:41:30 - CROSS_BUILD_TESTING=YES TB --- 2014-01-04 14:41:30 - MAKEOBJDIRPREFIX=/obj TB --- 2014-01-04 14:41:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2014-01-04 14:41:30 - SRCCONF=/dev/null TB --- 2014-01-04 14:41:30 - TARGET=powerpc TB --- 2014-01-04 14:41:30 - TARGET_ARCH=powerpc TB --- 2014-01-04 14:41:30 - TZ=UTC TB --- 2014-01-04 14:41:30 - __MAKE_CONF=/dev/null TB --- 2014-01-04 14:41:30 - cd /src TB --- 2014-01-04 14:41:30 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Jan 4 14:41:40 UTC 2014 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] In file included from /obj/powerpc.powerpc/src/gnu/usr.bin/cc/cc1plus/../cc_tools/tm.h:11, from /src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp/parser.c:26: /src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/config/freebsd.h:77:1: warning: this is the location of the previous definition /src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp/parser.c: In function 'cp_parser_objc_class_ivars': /src/gnu/usr.bin/cc/cc1plus/../../../../contrib/gcc/cp/parser.c:17715: internal compiler error: in var_ann, at tree-flow-inline.h:128 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop. bmake[5]: stopped in /src/gnu/usr.bin/cc/cc1plus *** Error code 1 Stop. bmake[4]: stopped in /src/gnu/usr.bin/cc *** Error code 1 Stop. bmake[3]: stopped in /src/gnu/usr.bin *** Error code 1 Stop. bmake[2]: stopped in /src/gnu *** Error code 1 Stop. bmake[1]: stopped in /src *** Error code 1 Stop. bmake: stopped in /src *** [buildworld] Error code 1 Stop in /src. TB --- 2014-01-04 17:39:22 - WARNING: /usr/bin/make returned exit code 1 TB --- 2014-01-04 17:39:22 - ERROR: failed to build world TB --- 2014-01-04 17:39:22 - 8366.53 user 2457.99 system 10718.70 real http://tinderbox.des.no/tinderbox-freebsd10-build-RELENG_10-powerpc-powerpc.full From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 18:47:32 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61B7C9FE; Sat, 4 Jan 2014 18:47:32 +0000 (UTC) Received: from mail-n.franken.de (drew.ipv6.franken.de [IPv6:2001:638:a02:a001:20e:cff:fe4a:feaa]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B72B176B; Sat, 4 Jan 2014 18:47:31 +0000 (UTC) Received: from [192.168.1.103] (p508F1427.dip0.t-ipconnect.de [80.143.20.39]) (Authenticated sender: macmic) by mail-n.franken.de (Postfix) with ESMTP id C25DA1C0C0695; Sat, 4 Jan 2014 19:47:28 +0100 (CET) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: 10.0-RC1: bad mbuf leak? From: Michael Tuexen In-Reply-To: <20131225133356.GL71033@FreeBSD.org> Date: Sat, 4 Jan 2014 19:47:27 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: References: <1387204500.12061.60192349.19EAE1B4@webmail.messagingengine.com> <3A115E20-3ADB-49BA-885D-16189B97842B@FreeBSD.org> <20131225133356.GL71033@FreeBSD.org> To: Gleb Smirnoff X-Mailer: Apple Mail (2.1510) Cc: FreeBSD Net , FreeBSD Stable Mailing List X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 18:47:32 -0000 On Dec 25, 2013, at 2:33 PM, Gleb Smirnoff wrote: > Mark, >=20 > On Tue, Dec 24, 2013 at 10:54:33AM -0600, Mark Felder wrote: > M> > finally found some free time today to try to look into this. I = was digging into the SVN changelogs of sys/dev/e1000 and couldn't see = any obvious changes that I should revert. Instead I went a different = route and jumped to HEAD/CURRENT. I'm not seeing the mbufs leaking yet. = I'll need another 24 hours to confirm. Hopefully this is a worthwhile = clue. I'm a bit surprised nobody else has reported this type of = behavior... maybe 10 isn't getting the amount of testing we expect? = ...or maybe it's just my lonely, haunted hardware :( > M>=20 > M> Ok, I feel safe confirming that 10.0-RCs are not stable on my = hardware. The mbuf problem went away completely when I jumped to = head/current. > M>=20 > M> Can someone please suggest what patch I can attempt to back out to = fix this? I'd like to try to assist in fixing this before 10.0-RELEASE = happens or we're going to have some very angry users. >=20 > Is it possible for you to bisect head from the stable/10 branchpoint = up > to the current date and narrow down the revisions that introduced (and = later > fixed?) the leak? I did a bisect and http://svnweb.freebsd.org/changeset/base/258690 resolved the issue on my system: [bsd4:~] tuexen% uname -a FreeBSD bsd4.fh-muenster.de 11.0-CURRENT FreeBSD 11.0-CURRENT #192 = r258689: Sat Jan 4 19:48:27 CET 2014 = tuexen@bsd4.fh-muenster.de:/usr/home/tuexen/head/sys/amd64/compile/SCTP = amd64 [bsd4:~] tuexen% netstat -m 10755/315/11070 mbufs in use (current/cache/total) 10752/66/10818/508004 mbuf clusters in use (current/cache/total/max) 10752/30 mbuf+clusters out of packet secondary zone in use = (current/cache) 0/0/0/254001 4k (page size) jumbo clusters in use = (current/cache/total/max) 0/0/0/75259 9k jumbo clusters in use (current/cache/total/max) 0/0/0/42333 16k jumbo clusters in use (current/cache/total/max) 24192K/210K/24403K bytes allocated to network (current/cache/total) 150/5047/10782 requests for mbufs denied (mbufs/clusters/mbuf+clusters) 0/0/0 requests for mbufs delayed (mbufs/clusters/mbuf+clusters) 0/0/0 requests for jumbo clusters delayed (4k/9k/16k) 0/0/0 requests for jumbo clusters denied (4k/9k/16k) 0 requests for sfbufs denied 0 requests for sfbufs delayed 0 requests for I/O initiated by sendfile [bsd4:~] tuexen% uname -a FreeBSD bsd4.fh-muenster.de 11.0-CURRENT FreeBSD 11.0-CURRENT #193 = r258690: Sat Jan 4 19:56:38 CET 2014 = tuexen@bsd4.fh-muenster.de:/usr/home/tuexen/head/sys/amd64/compile/SCTP = amd64 [bsd4:~] tuexen% netstat -m 10755/3000/13755 mbufs in use (current/cache/total) 10752/1374/12126/508004 mbuf clusters in use (current/cache/total/max) 10752/1373 mbuf+clusters out of packet secondary zone in use = (current/cache) 0/0/0/254001 4k (page size) jumbo clusters in use = (current/cache/total/max) 0/0/0/75259 9k jumbo clusters in use (current/cache/total/max) 0/0/0/42333 16k jumbo clusters in use (current/cache/total/max) 24192K/3498K/27690K bytes allocated to network (current/cache/total) 0/0/0 requests for mbufs denied (mbufs/clusters/mbuf+clusters) 0/0/0 requests for mbufs delayed (mbufs/clusters/mbuf+clusters) 0/0/0 requests for jumbo clusters delayed (4k/9k/16k) 0/0/0 requests for jumbo clusters denied (4k/9k/16k) 0 requests for sfbufs denied 0 requests for sfbufs delayed 0 requests for I/O initiated by sendfile [bsd4:~] tuexen%=20 Best regards Michael >=20 > --=20 > Totus tuus, Glebius. > _______________________________________________ > freebsd-net@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org" >=20 From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 19:55:15 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6283CF11; Sat, 4 Jan 2014 19:55:15 +0000 (UTC) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC66A1CD7; Sat, 4 Jan 2014 19:55:13 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.7/8.14.7) with ESMTP id s04Jt6FI066439 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 4 Jan 2014 23:55:06 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.7/8.14.7/Submit) id s04Jt6cx066438; Sat, 4 Jan 2014 23:55:06 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Sat, 4 Jan 2014 23:55:05 +0400 From: Gleb Smirnoff To: Michael Tuexen Subject: Re: 10.0-RC1: bad mbuf leak? Message-ID: <20140104195505.GV71033@glebius.int.ru> References: <1387204500.12061.60192349.19EAE1B4@webmail.messagingengine.com> <3A115E20-3ADB-49BA-885D-16189B97842B@FreeBSD.org> <20131225133356.GL71033@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.22 (2013-10-16) Cc: FreeBSD Net , FreeBSD Stable Mailing List X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:55:15 -0000 Thanks, Michael! On Sat, Jan 04, 2014 at 07:47:27PM +0100, Michael Tuexen wrote: M> > On Tue, Dec 24, 2013 at 10:54:33AM -0600, Mark Felder wrote: M> > M> > finally found some free time today to try to look into this. I was digging into the SVN changelogs of sys/dev/e1000 and couldn't see any obvious changes that I should revert. Instead I went a different route and jumped to HEAD/CURRENT. I'm not seeing the mbufs leaking yet. I'll need another 24 hours to confirm. Hopefully this is a worthwhile clue. I'm a bit surprised nobody else has reported this type of behavior... maybe 10 isn't getting the amount of testing we expect? ...or maybe it's just my lonely, haunted hardware :( M> > M> M> > M> Ok, I feel safe confirming that 10.0-RCs are not stable on my hardware. The mbuf problem went away completely when I jumped to head/current. M> > M> M> > M> Can someone please suggest what patch I can attempt to back out to fix this? I'd like to try to assist in fixing this before 10.0-RELEASE happens or we're going to have some very angry users. M> > M> > Is it possible for you to bisect head from the stable/10 branchpoint up M> > to the current date and narrow down the revisions that introduced (and later M> > fixed?) the leak? M> I did a bisect and M> http://svnweb.freebsd.org/changeset/base/258690 M> resolved the issue on my system: I have just merged this change to head as r260280. Mark, can you pleast confirm that now stable/10 no longer leaks mbufs at your setup? -- Totus tuus, Glebius. From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 20:21:00 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 794D4353 for ; Sat, 4 Jan 2014 20:21:00 +0000 (UTC) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BE6A1E6E for ; Sat, 4 Jan 2014 20:21:00 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id BD1EE20CA5 for ; Sat, 4 Jan 2014 15:20:58 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute3.internal (MEProxy); Sat, 04 Jan 2014 15:20:58 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:mime-version:subject:from :in-reply-to:date:cc:message-id:references:to; s=smtpout; bh=pEz OLld5EGjPLpypjZYcGTKrI4I=; b=lBAv3XErT0PqwoWKQ6PE1lmAwLhOYIcNPm8 jsmkhD6RxNy/6mDbYeG2+1WnFpYX9ihvR6EiL5ePYc49n5hf/bsy/Gg82zjVKfek qSh7jsFA2EdDwsKvyCWpRzhj6zg5ea3E3sSmXQ6YmBx9dFRUITkW4MOvuV1qk/um 0CPAZ974= X-Sasl-enc: pidgLWZjNVyA7fY8n/eLhrrazwDXt7BD2GL1K9Oaxf5H 1388866858 Received: from [172.16.1.145] (unknown [68.117.126.78]) by mail.messagingengine.com (Postfix) with ESMTPA id E77F2C00E8D; Sat, 4 Jan 2014 15:20:57 -0500 (EST) Content-Type: multipart/signed; boundary="Apple-Mail=_74408AB9-BABD-4904-A0E4-EFD0533CC02C"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: 10.0-RC1: bad mbuf leak? From: Mark Felder In-Reply-To: <20140104195505.GV71033@glebius.int.ru> Date: Sat, 4 Jan 2014 14:20:56 -0600 Message-Id: <11BB3983-28F7-40EF-87DA-FD95BD297EA7@FreeBSD.org> References: <1387204500.12061.60192349.19EAE1B4@webmail.messagingengine.com> <3A115E20-3ADB-49BA-885D-16189B97842B@FreeBSD.org> <20131225133356.GL71033@FreeBSD.org> <20140104195505.GV71033@glebius.int.ru> To: Gleb Smirnoff X-Mailer: Apple Mail (2.1827) Cc: Michael Tuexen , FreeBSD Stable Mailing List , FreeBSD Net X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 20:21:00 -0000 --Apple-Mail=_74408AB9-BABD-4904-A0E4-EFD0533CC02C Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On Jan 4, 2014, at 13:55, Gleb Smirnoff wrote: > Thanks, Michael! >=20 > On Sat, Jan 04, 2014 at 07:47:27PM +0100, Michael Tuexen wrote: > M> > On Tue, Dec 24, 2013 at 10:54:33AM -0600, Mark Felder wrote: > M> > M> > finally found some free time today to try to look into this. = I was digging into the SVN changelogs of sys/dev/e1000 and couldn't see = any obvious changes that I should revert. Instead I went a different = route and jumped to HEAD/CURRENT. I'm not seeing the mbufs leaking yet. = I'll need another 24 hours to confirm. Hopefully this is a worthwhile = clue. I'm a bit surprised nobody else has reported this type of = behavior... maybe 10 isn't getting the amount of testing we expect? = ...or maybe it's just my lonely, haunted hardware :( > M> > M>=20 > M> > M> Ok, I feel safe confirming that 10.0-RCs are not stable on my = hardware. The mbuf problem went away completely when I jumped to = head/current. > M> > M>=20 > M> > M> Can someone please suggest what patch I can attempt to back = out to fix this? I'd like to try to assist in fixing this before = 10.0-RELEASE happens or we're going to have some very angry users. > M> >=20 > M> > Is it possible for you to bisect head from the stable/10 = branchpoint up > M> > to the current date and narrow down the revisions that introduced = (and later > M> > fixed?) the leak? > M> I did a bisect and > M> http://svnweb.freebsd.org/changeset/base/258690 > M> resolved the issue on my system: >=20 > I have just merged this change to head as r260280. >=20 > Mark, can you pleast confirm that now stable/10 no longer leaks mbufs > at your setup? >=20 > --=20 > Totus tuus, Glebius. I'll build 10-STABLE right away. --Apple-Mail=_74408AB9-BABD-4904-A0E4-EFD0533CC02C Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJSyG0oAAoJEJg7ZFAfE+JSOmgIAJQXAat4oXKiNREH7QunVO5Q PT3inTgLc4vqzOVnMY+XGrIBj4aQ9BOZ+cp1G50X6bmoKeWbXJil7EdWrQHFcb/f u0SxmzLVpkKnne+hxzT87ZpvVkOa8xSyVX8SZyzaM3adS07PIKL1C3WecC+Kmncd cqldcGnnbUs6iaI8Y95bcpqpJrGYtBsPhJp7R7sag1yHNtkKoFHPBrmNrdk4cGbt i4Q6+pwoPqP8+bm+uaOkxDkvEJbN51tTCCmOhftC+ZfTwlvAA3OW/dxk/X9I4wWB sqPX7XwLv/ZqTh4MCpDV8q/2v2rL+Fk8KzQP4i/WbnHGVJPsEh3Bsd9bSzwnMcU= =L3vU -----END PGP SIGNATURE----- --Apple-Mail=_74408AB9-BABD-4904-A0E4-EFD0533CC02C-- From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 22:12:23 2014 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67AC0169 for ; Sat, 4 Jan 2014 22:12:23 +0000 (UTC) Received: from mho-01-ewr.mailhop.org (mho-03-ewr.mailhop.org [204.13.248.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3869715C8 for ; Sat, 4 Jan 2014 22:12:22 +0000 (UTC) Received: from c-24-8-230-52.hsd1.co.comcast.net ([24.8.230.52] helo=damnhippie.dyndns.org) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1VzZS4-0002XP-2z; Sat, 04 Jan 2014 22:12:16 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id s04MCBXd025590; Sat, 4 Jan 2014 15:12:11 -0700 (MST) (envelope-from ian@FreeBSD.org) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 24.8.230.52 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+DbTPVIB0TbgBXPbPn0ciy Subject: Re: How to make boot wait a few seconds more for device response? From: Ian Lepore To: kpneal@pobox.com In-Reply-To: <20140104213749.GA60414@neutralgood.org> References: <43.76.14229.524B7C25@cdptpa-oedge01> <52C7EC3E.6070709@grosbein.net> <20140104213749.GA60414@neutralgood.org> Content-Type: text/plain; charset="us-ascii" Date: Sat, 04 Jan 2014 15:12:11 -0700 Message-ID: <1388873531.1158.306.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: Thomas Mueller , freebsd-stable@FreeBSD.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 22:12:23 -0000 On Sat, 2014-01-04 at 16:37 -0500, kpneal@pobox.com wrote: > On Sat, Jan 04, 2014 at 06:10:54PM +0700, Eugene Grosbein wrote: > > On 04.01.2014 14:11, Thomas Mueller wrote: > > > How do I make boot wait a few seconds more if it can't mount the root device immediately? > > > > Just add to your /boot/loader.conf: > > > > kern.cam.boot_delay="10000" > > > > The value counts miliseconds. > > In my case I tried this and it didn't do what I needed. I'm pretty sure I > remember that it delayed some of the scanning. What I needed was to delay > the mounting of root until all devices have been attached. That's different. > > So, no, this doesn't fix my problem at least. I think vfs.mountroot.timeout is the tunable that gets the effect you want. It defaults to 3 seconds. -- Ian From owner-freebsd-stable@FreeBSD.ORG Sat Jan 4 22:16:17 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E405626 for ; Sat, 4 Jan 2014 22:16:17 +0000 (UTC) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13::5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95FFE15F2 for ; Sat, 4 Jan 2014 22:16:16 +0000 (UTC) X-Envelope-From: eugen@grosbein.net X-Envelope-To: freebsd-stable@freebsd.org Received: from eg.sd.rdtc.ru (eugen@localhost [127.0.0.1]) by eg.sd.rdtc.ru (8.14.7/8.14.7) with ESMTP id s04MG4X5055196; Sun, 5 Jan 2014 05:16:05 +0700 (NOVT) (envelope-from eugen@grosbein.net) Message-ID: <52C88824.20404@grosbein.net> Date: Sun, 05 Jan 2014 05:16:04 +0700 From: Eugene Grosbein User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130415 Thunderbird/17.0.5 MIME-Version: 1.0 To: kpneal@pobox.com Subject: Re: How to make boot wait a few seconds more for device response? References: <43.76.14229.524B7C25@cdptpa-oedge01> <52C7EC3E.6070709@grosbein.net> <20140104213749.GA60414@neutralgood.org> In-Reply-To: <20140104213749.GA60414@neutralgood.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,BAYES_00, LOCAL_FROM autolearn=no version=3.3.2 X-Spam-Report: * -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 2.6 LOCAL_FROM From my domains X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eg.sd.rdtc.ru Cc: Thomas Mueller , freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 22:16:17 -0000 On 05.01.2014 04:37, kpneal@pobox.com wrote: > On Sat, Jan 04, 2014 at 06:10:54PM +0700, Eugene Grosbein wrote: >> On 04.01.2014 14:11, Thomas Mueller wrote: >>> How do I make boot wait a few seconds more if it can't mount the root device immediately? >> >> Just add to your /boot/loader.conf: >> >> kern.cam.boot_delay="10000" >> >> The value counts miliseconds. > > In my case I tried this and it didn't do what I needed. I'm pretty sure I > remember that it delayed some of the scanning. Then this is a regression. > What I needed was to delay > the mounting of root until all devices have been attached. That's different. That's exactly what this setting is supposed to do and it does for me in 8.4 and 9.2.