Re: panic with tcp timers

2016-07-21 Thread Julien Charbon
Hi, On 7/14/16 11:02 PM, Larry Rosenman wrote: > On 2016-07-14 12:01, Julien Charbon wrote: >> On 6/20/16 11:55 AM, Julien Charbon wrote: >>> On 6/20/16 9:39 AM, Gleb Smirnoff wrote: >>>> On Fri, Jun 17, 2016 at 11:27:39AM +0200, Julien Charbon wrote: >>>

Re: panic with tcp timers

2016-07-14 Thread Julien Charbon
Hi, On 6/20/16 11:55 AM, Julien Charbon wrote: > On 6/20/16 9:39 AM, Gleb Smirnoff wrote: >> On Fri, Jun 17, 2016 at 11:27:39AM +0200, Julien Charbon wrote: >> J> > Comparing stable/10 and head, I see two changes that could >> J> > affect that: >> J

Re: panic with tcp timers

2016-06-28 Thread Julien Charbon
ep backward in modernization of TCP timers/callout... https://svnweb.freebsd.org/base/stable/10/sys/netinet/tcp_timer.c?r1=284261=284260=284261 Hopefully my description is clear enough... -- Julien signature.asc Description: OpenPGP digital signature

Re: panic with tcp timers

2016-06-20 Thread Julien Charbon
Hi, On 6/20/16 11:58 AM, Gleb Smirnoff wrote: > On Mon, Jun 20, 2016 at 11:55:55AM +0200, Julien Charbon wrote: > J> > On Fri, Jun 17, 2016 at 11:27:39AM +0200, Julien Charbon wrote: > J> > J> > Comparing stable/10 and head, I see two changes that could > J> >

Re: panic with tcp timers

2016-06-20 Thread Julien Charbon
anything equivalent like lwref) are supported in kernel, we will implement this change. Just history here, as I already did a presentation on this exact topic at BSDCan 2015: https://wiki.freebsd.org/201506DevSummit#line-83 It was recorded but I never saw the footage/presentation actually published. :) -- Julien signature.asc Description: OpenPGP digital signature

Re: panic with tcp timers

2016-06-20 Thread Julien Charbon
Hi, On 6/20/16 9:39 AM, Gleb Smirnoff wrote: > On Fri, Jun 17, 2016 at 11:27:39AM +0200, Julien Charbon wrote: > J> > Comparing stable/10 and head, I see two changes that could > J> > affect that: > J> > > J> > - callout_async_drain > J> > - sw

Re: panic with tcp timers

2016-06-17 Thread Julien Charbon
a use after free, which conflicts with new allocation. > > Comparing stable/10 and head, I see two changes that could > affect that: > > - callout_async_drain > - switch to READ lock for inp info in tcp timers > > That's why you are in To, Julien and Hans :) > > We cont

Re: traceroute6: panic: pcb not read locked

2015-08-08 Thread Julien Charbon
On 08/08/15 07:49, Julien Charbon wrote: On 08/08/15 05:25, Mark Johnston wrote: On Fri, Aug 07, 2015 at 08:04:01PM -0500, Larry Rosenman wrote: Trying to debug TimeWarner IPV6 to my HE.NET tunnel, and running traceroute6, got the following panic: borg.lerctr.org dumped core - see /var

Re: traceroute6: panic: pcb not read locked

2015-08-08 Thread Julien Charbon
On Aug 8, 2015 07:49, Julien Charbon j...@freebsd.org wrote: On 08/08/15 05:25, Mark Johnston wrote: On Fri, Aug 07, 2015 at 08:04:01PM -0500, Larry Rosenman wrote: Trying to debug TimeWarner IPV6 to my HE.NET tunnel, and running traceroute6, got the following panic: borg.lerctr.org

Re: traceroute6: panic: pcb not read locked

2015-08-07 Thread Julien Charbon
a INP_INFO_RLOCK in in6_pcbnotify() but this is not for today. Thanks. -- Julien signature.asc Description: OpenPGP digital signature

Re: [PATCH v10 14/20] xen: introduce xenpv bus and a dummy pvcpu device

2014-01-14 Thread Julien Grall
(xenpci)) + panic(trying to attach xenpv before xenpci); + } Can you use the identify method to add the xenpci device? As I said earlier, I will reuse this code for ARM guest and this device is not used on this architecture. -- Julien Grall

Re: [PATCH v10 14/20] xen: introduce xenpv bus and a dummy pvcpu device

2014-01-14 Thread Julien Grall
On 01/14/2014 04:08 PM, Roger Pau Monné wrote: On 14/01/14 16:41, Julien Grall wrote: On 01/14/2014 02:59 PM, Roger Pau Monne wrote: +static int +xenpv_attach(device_t dev) +{ + device_t child; + + if (xen_hvm_domain()) { + device_t xenpci; + devclass_t dc

Re: [PATCH v10 14/20] xen: introduce xenpv bus and a dummy pvcpu device

2014-01-14 Thread Julien Grall
On 01/14/2014 04:20 PM, Roger Pau Monné wrote: On 14/01/14 17:14, Julien Grall wrote: On 01/14/2014 04:08 PM, Roger Pau Monné wrote: On 14/01/14 16:41, Julien Grall wrote: On 01/14/2014 02:59 PM, Roger Pau Monne wrote: +static int +xenpv_attach(device_t dev) +{ + device_t child

Re: [Xen-devel] [PATCH v9 15/19] xen: create a Xen nexus to use in PV/PVH

2014-01-07 Thread Julien Grall
On 01/07/2014 08:29 AM, Roger Pau Monné wrote: On 06/01/14 12:33, Julien Grall wrote: On 01/06/2014 09:35 AM, Roger Pau Monné wrote: On 05/01/14 22:55, Julien Grall wrote: On 01/02/2014 03:43 PM, Roger Pau Monne wrote: Introduce a Xen specific nexus that is going to be in charge

Re: [Xen-devel] [PATCH v9 03/19] xen: add and enable Xen console for PVH guests

2014-01-07 Thread Julien Grall
. -- Julien Grall ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: [Xen-devel] [PATCH v9 15/19] xen: create a Xen nexus to use in PV/PVH

2014-01-06 Thread Julien Grall
On 01/06/2014 09:35 AM, Roger Pau Monné wrote: On 05/01/14 22:55, Julien Grall wrote: On 01/02/2014 03:43 PM, Roger Pau Monne wrote: Introduce a Xen specific nexus that is going to be in charge for attaching Xen specific devices. Now that we have a xenpv bus, do we really need a specific

Re: [Xen-devel] [PATCH v9 14/19] xen: introduce xenpv bus and a dummy pvcpu device

2014-01-06 Thread Julien Grall
On 01/06/2014 09:46 AM, Roger Pau Monné wrote: On 05/01/14 22:52, Julien Grall wrote: On 01/02/2014 03:43 PM, Roger Pau Monne wrote: Since Xen PVH guests doesn't have ACPI, we need to create a dummy bus so top level Xen devices can attach to it (instead of attaching directly to the nexus

Re: [Xen-devel] [PATCH v9 15/19] xen: create a Xen nexus to use in PV/PVH

2014-01-05 Thread Julien Grall
. The other part of this patch can be merged in the patch #14 Introduce xenpv bus and a dummy pvcpu device. -- Julien Grall ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any

Re: [Xen-devel] [PATCH v9 14/19] xen: introduce xenpv bus and a dummy pvcpu device

2014-01-05 Thread Julien Grall
); Same here: BUS_PROBE_NOWILDCARD. -- Julien Grall ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: PACKAGESITE spam

2013-12-21 Thread Julien Laffaye
On 12/21/2013 9:14 PM, Steve Kargl wrote: On Sat, Dec 21, 2013 at 03:10:26PM -0500, Glen Barber wrote: On Sat, Dec 21, 2013 at 12:05:38PM -0800, Steve Kargl wrote: On Sat, Dec 21, 2013 at 07:35:56PM +0100, d...@gmx.com wrote: I've just installed a very recent -CURRENT, and now I'm performing

Re: PACKAGESITE spam

2013-12-21 Thread Julien Laffaye
On 12/22/2013 12:04 AM, Steve Kargl wrote: On Sat, Dec 21, 2013 at 11:14:39PM +0100, Baptiste Daroussin wrote: this has been done and activated for reason, first for lot of companies, companies can turn it on it they want it. And if you want to save the few extra kB, you can turn it off...

Re: PACKAGESITE spam

2013-12-21 Thread Julien Laffaye
On 12/22/2013 12:25 AM, Steve Kargl wrote: On Sun, Dec 22, 2013 at 12:16:00AM +0100, Julien Laffaye wrote: On 12/22/2013 12:04 AM, Steve Kargl wrote: On Sat, Dec 21, 2013 at 11:14:39PM +0100, Baptiste Daroussin wrote: this has been done and activated for reason, first for lot of companies

Re: [Xen-devel] [PATCH v7 01/19] xen: add PV/PVH kernel entry point

2013-12-20 Thread Julien Grall
!= NULL xenstack != 0), + (invalid start_info or xenstack)); If I'm not mistaken, the user won't see the error if the assert failed (the console is not yet initialized). Perhaps xc_printf is more suitable here. -- Julien Grall

Re: pkg - Shared object libarchive.so.5 not found, required by pkg

2012-11-24 Thread Julien Laffaye
On 11/24/2012 7:38 PM, Christer Solskogen wrote: On Sat, Nov 24, 2012 at 3:45 PM, Victor Balada Diaz vic...@bsdes.net wrote: You have pkg-static for that kind of problems. You should rebuild pkg port to get pkg working again. So I still need /usr/ports when I use pkg? No. CURRENT is a

Re: pkgng suggestion: renaming /usr/sbin/pkg to /usr/sbin/pkg-bootstrap

2012-09-01 Thread Julien Laffaye
On 9/1/2012 7:43 PM, Tijl Coosemans wrote: On 31-08-2012 14:22, Baptiste Daroussin wrote: On Fri, Aug 31, 2012 at 08:10:50AM -0400, John Baldwin wrote: On Friday, August 31, 2012 5:59:10 am Baptiste Daroussin wrote: On Thu, Aug 30, 2012 at 01:02:06PM -1000, Doug Barton wrote: I agree with

Re: Script to set/unset automatic status in PKGNG database

2012-08-30 Thread Julien Laffaye
On 8/30/2012 11:19 PM, John Nielsen wrote: I today noticed the pkg autoremove command for the first time, which does much the same thing as pkg_cutleaves but relies on the automatic flag in the pkgng database rather than user input to determine which leaf ports can be removed. Unfortunately,

Re: pkgng suggestion: renaming /usr/sbin/pkg to /usr/sbin/pkg-bootstrap

2012-08-25 Thread Julien Laffaye
On 8/24/2012 11:57 PM, Doug Barton wrote: On 8/23/2012 8:03 PM, Eitan Adler wrote: On 23 August 2012 22:59, Doug Barton do...@freebsd.org wrote: I tend to agree with Steve here ... we can't be responsible for other people's poorly written docs. This isn't about poorly written docs. This is

Re: pkgng suggestion: renaming /usr/sbin/pkg to /usr/sbin/pkg-bootstrap

2012-08-24 Thread Julien Laffaye
On 8/24/2012 3:57 AM, Eitan Adler wrote: On 23 August 2012 18:19, Steve Wills swi...@freebsd.org wrote: Hi, It seems to me that renaming the pkg binary in /usr/sbin/pkg to /usr/sbin/pkg-bootstrap would make sense. From a user standpoint, it is confusing that running the command gets

Re: pkgng default schedule... registering a few reasons for rethinking the final implementation...

2012-08-23 Thread Julien Laffaye
by the announcement of v11 erasing the /var/db/pkg upon which I presently use daily numerous times... And I apologize, in advance, for typos etc. herein... J. Bouquet 2004 v5... Regards, Julien ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org

Re: [HEADSUP] pkgng 1.0-beta9 please test

2012-03-30 Thread Julien Laffaye
On 03/30/2012 01:10 PM, Lars Engels wrote: On Fri, Mar 30, 2012 at 11:12:42AM +0200, Baptiste Daroussin wrote: Hi, On behalf of pkgng crew, I'm happy to announce pkg 1.0-beta9 [...] Please note that normally this will be the last beta version, So we can expect an official package

Re: Beta 3 still not OK

2012-02-11 Thread Julien Laffaye
On 2/11/2012 2:13 AM, Sergio de Almeida Lenzi wrote: Seems that the sqlite database has changed from beta1 to beta3??? I have all the system running exclusive on pkg there is no more old pkg How can I upgrade the sqlite database from beta1 to beta3??? There is nothing to upgrade. The on-disk

Re: [CFT] pkgng alpha2

2011-12-13 Thread Julien Laffaye
On 12/13/2011 06:16 PM, Andriy Gapon wrote: on 30/11/2011 22:32 Julien Laffaye said the following: [1] : https://github.com/pkgng/pkgng/issues [2] : https://github.com/pkgng/pkgng [3] : http://wiki.freebsd.org/pkgng [4] : http://people.freebsd.org/~bapt/pkgng-bsdcan2011.pdf [5] : http

[CFT] pkgng alpha2

2011-11-30 Thread Julien Laffaye
], EuroBSDCon [5] [6] and browse the source code. Regards, Julien, on behalf of the pkgng team. And remember, we _do_ want to hear back from you! Please also note that it is still alpha code and it can kill kitten and puppies. You are warned ;-) [1] : https://github.com/pkgng/pkgng/issues [2] : https

Re: FreeBSD ftp mirror sites and pkg_add

2011-11-14 Thread Julien Laffaye
On 11/14/2011 12:45 PM, Mehmet Erol Sanliturk wrote: In Arch Linux , package manager Pacman is using a configuration file /etc/pacman.conf with its included files . It is using a file such as the following ( some parts are deleted for message ) : ( obtained from

[RFC] Feed-Forward Clock support

2011-11-09 Thread Julien Ridoux
://www.synclab.org/radclock/ Please let me know your thoughts, Thanks, Julien ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: FreeBSD 9.0

2011-09-15 Thread Julien Laffaye
On 09/15/2011 16:42, Alisson wrote: Somebody know when FreeBSD 9.0 Releng will be available? When it is ready? ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to

Re: 9.0-BETA1 installer issues

2011-08-03 Thread Julien Laffaye
On 08/03/2011 21:42, Garrett Cooper wrote: also the extension for the file is wrong (it should be txz, right?) pkg_add still use the bzip2 format iirc. ___ freebsd-current@freebsd.org mailing list

Re: [RFC] rcexecr: rcorder in parallel

2011-06-04 Thread Julien Laffaye
that! You should use kqueue(2) instead of waitpid(2) so that you can efficiently monitor a pool of processes. See pwait(1) for an example. Regards, Julien ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install

2011-03-26 Thread Julien Laffaye
On Fri, Mar 25, 2011 at 12:33 PM, Julien Laffaye jlaff...@freebsd.org wrote: On Fri, Mar 25, 2011 at 11:52 AM, Ivan Voras ivo...@freebsd.org wrote: At this time I'd just like to suggest you add the use of WAL journal (http://www.sqlite.org/pragma.html#pragma_journal_mode) on database creation

Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install

2011-03-26 Thread Julien Laffaye
On Fri, Mar 25, 2011 at 10:11 AM, Baptiste Daroussin b...@freebsd.org wrote:  Developpement site: http://git.etoilebsd.net/pkgng/ FYI, we moved to github[1] in order to have a bug tracker, pull request and code review. Also, I recommend to build from the HEAD of the git repository, to not report

Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install

2011-03-25 Thread Julien Laffaye
this to extensible, expecting real PGP-based signatures in the future? We thought that signing the repo.sqlite file would be simpler. If we want to sign each package individually, we must have a tarball which contains the real tarball plus the signature. Regards, Julien

Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install

2011-03-25 Thread Julien Laffaye
(and a reinstall of one port will fix it). Bye, Alexander. Regards, Julien ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: [ECFT] pkgng 0.1-alpha1: a replacement for pkg_install

2011-03-25 Thread Julien Laffaye
On Fri, Mar 25, 2011 at 4:14 PM, Pietro Cerutti g...@freebsd.org wrote: On 2011-Mar-25, 17:04, Baptiste Daroussin wrote: if you are going to test on current please notice that make install will overwrite /usr/lib/libpkg so pkg_* tools won't work anymore. We will workaround that later by

Re: DHCP server in base

2010-09-10 Thread Julien Laffaye
On Fri, Sep 10, 2010 at 8:36 PM, Doug Barton do...@freebsd.org wrote: As I've said many times, I'm ready to have it out when there is consensus to do so. The usual discussion goes like this: 1. Get BIND out of the base! 2. If we remove it, the command line tools (dig, host, nslookup) go with

Re: firebird 7 in freebsd cvs appears to be broke

2003-10-19 Thread Julien Gabel
I downloaded the new firebird-7 port from the freebsd cvs server. Make will run for about 20-mins then stop with these errors: It works for me (i'm posting via a webmail accessed under Mozilla- firebird-0.7), and there is nothing to see on the bento cluster about this port :

Re: Q) lock order reversal

2001-05-27 Thread julien
Hi, I've got exactly the same with a 5.0-20010514-CURRENT snapshot from current.freebsd.org. BTW, it is running on a notebook, and the newcard kernel runs very well, nice job ! -- --- -- [EMAIL PROTECTED] --- - Original Message -