Лучшие почтовые рассылки

2012-09-02 Thread Konstantin Rozhkov
ËÓרÈÅ ÐÀÑÑÛËÊÈ ÏÎ ÓÊÐÀÈÍÅ Âàì - ïî÷òîâàÿ ïîñûëêà Ïðåäëàãàåòñÿ ðàññûëêà Ìû êëèåíòîâ ïðèâåäåì Ðàäîñòü ôèðìàì ïðèíåñåì Ñòîèìîñòü ïî Óêðàèíå 800 ãðí, 3.9 ìëí ïîëó÷àòåëåé Ñòîèìîñòü ïî Êèåâó 700 ãðí, 1.7 ìëí ïîëó÷àòåëåé Ñòîèìîñòü ïî îáëàñòÿì Óêðàèíû - 400 ãðí E-mail: mailair2...@aol.com , ICQ: ×9Ç-17

Re: quiet ftp

2012-09-02 Thread Theo de Raadt
This is intentional. Look in distrib/miniroot: install.sub:FTPOPTS="-V" We want the progress bar -- we just don't want any of the other noise. I suppose with this change, and then using -Vm it could work. But that would need testing. Especially since ftp(1) is compiled with -DSMALL. grep SMA

quiet ftp

2012-09-02 Thread Ted Unangst
Does anyone else find it weird that -V doesn't turn off the progress bar? Index: main.c === RCS file: /cvs/src/usr.bin/ftp/main.c,v retrieving revision 1.85 diff -u -p -r1.85 main.c --- main.c 26 Aug 2012 02:16:02 - 1.85

Re: ThinkPad T60 x86emu panic on resume (w/patch)

2012-09-02 Thread Theo de Raadt
> On 2 September 2012 21:13, Theo de Raadt wrote: > >> Index: vga_pci.c > >> === > >> RCS file: /cvs/src/sys/dev/pci/vga_pci.c,v > >> retrieving revision 1.68 > >> diff -u -r1.68 vga_pci.c > >> --- vga_pci.c 22 Aug 2012 20:58:30 -

Re: ThinkPad T60 x86emu panic on resume (w/patch)

2012-09-02 Thread Eugene Yunak
On 2 September 2012 21:13, Theo de Raadt wrote: >> Index: vga_pci.c >> === >> RCS file: /cvs/src/sys/dev/pci/vga_pci.c,v >> retrieving revision 1.68 >> diff -u -r1.68 vga_pci.c >> --- vga_pci.c 22 Aug 2012 20:58:30 - 1.68 >>

Re: ThinkPad T60 x86emu panic on resume (w/patch)

2012-09-02 Thread Theo de Raadt
> Index: vga_pci.c > === > RCS file: /cvs/src/sys/dev/pci/vga_pci.c,v > retrieving revision 1.68 > diff -u -r1.68 vga_pci.c > --- vga_pci.c 22 Aug 2012 20:58:30 - 1.68 > +++ vga_pci.c 2 Sep 2012 17:42:09 - > @@ -186,7 +186

Re: Possible bug in timecounter code

2012-09-02 Thread sf
On Sun, 2 Sep 2012, Mark Kettenis wrote: On Sun, 2 Sep 2012, Mark Kettenis wrote: ntp_update_second() subtracts some amount of time from adjtimedelta and sets th->th_adjustment accordingly. However, if ntp_update_second is called more than once in a row, only the last value of th->th_adjustment

Re: ThinkPad T60 x86emu panic on resume (w/patch)

2012-09-02 Thread Alexander Polakov
With the diff below it resumes ok to X, but when I try to switch to text console or do a shutdown, I get this panic: /etc/rc.shutdown in progress... /etc/rc.shutdown complete. Stopped at cpu_idle_cycle+0xf: ret ddb{1}> bt No such command ddb{1}> trace cpu_idle_cycle(d406ac00) at cpu_idle_

Re: Possible bug in timecounter code

2012-09-02 Thread Mark Kettenis
> Date: Sun, 2 Sep 2012 17:22:28 +0200 (CEST) > From: s...@sfritsch.de > > On Sun, 2 Sep 2012, Mark Kettenis wrote: > >> ntp_update_second() subtracts some amount of time from adjtimedelta and > >> sets th->th_adjustment accordingly. However, if ntp_update_second is > >> called more than once in a

Re: Possible bug in timecounter code

2012-09-02 Thread sf
On Sun, 2 Sep 2012, Mark Kettenis wrote: ntp_update_second() subtracts some amount of time from adjtimedelta and sets th->th_adjustment accordingly. However, if ntp_update_second is called more than once in a row, only the last value of th->th_adjustment is actually applied. Shouldn't the adjustm

Re: Possible bug in timecounter code

2012-09-02 Thread Mark Kettenis
> Date: Sun, 2 Sep 2012 13:18:03 +0200 (CEST) > From: Stefan Fritsch > > tc_windup() calls ntp_update_second() up to 200 times: > > > /* > > * A large step happens on boot. This constant detects such steps. > > * It is relatively small so that ntp_update_second gets called enough > > * in th

allow v6 privacy and static addresses to co-exist again

2012-09-02 Thread Stefan Sperling
Simon's recent commit to prevent SLAAC address formation when a static address is already configured has a side-effect for autoconfprivacy users. With the following in /etc/hostname.if: dhcp rtsol inet6 some-address 64 the netstart script will run rtsol after assigning the static address,

Possible bug in timecounter code

2012-09-02 Thread Stefan Fritsch
tc_windup() calls ntp_update_second() up to 200 times: /* * A large step happens on boot. This constant detects such steps. * It is relatively small so that ntp_update_second gets called enough * in the typical 'missed a couple of seconds' case, but doesn't loop * forever when the time step

Reduce false cache line sharing in page tables

2012-09-02 Thread Stefan Fritsch
Since the Pentium 4, cachelines are 64 byte on x86, not 32 byte. The pmap optimization should be adjusted accordingly: --- sys/arch/i386/i386/pmapae.c +++ sys/arch/i386/i386/pmapae.c @@ -516,10 +516,10 @@ typedef u_int64_t pd_entry_t; /* PDE */ typedef u_int64_t pt_entry_t; /* PTE */ /*

inet6 autoconf spl fix

2012-09-02 Thread Stefan Sperling
prelist_update() runs at IPL_SOFTNET. Code moved out of it into a workq task for adding new addresses from process context should run at IPL_SOFTNET, too, shouldn't it? Index: netinet6/nd6_rtr.c === RCS file: /cvs/src/sys/netinet6/nd6

Re: [Patch] Virtio drivers for OpenBSD V8

2012-09-02 Thread Stefan Fritsch
On Saturday 01 September 2012, LEVAI Daniel wrote: > > I've just started to test this with an OpenBSD guest on a Linux > > host. vio0 NIC and the virtio disk work like a charm. > > I have a slightly (~10%) better performance with the ide > > emulation than with virtio, but nevertheless it works.

Re: Correct DPADD for iked' Makefile

2012-09-02 Thread Marc Espie
On Sun, Sep 02, 2012 at 01:08:58AM -0400, Brad Smith wrote: > Whateve code that used to be within iked that used SSL was removed > but DPADD was not updated so its still looking for an unused libssl. > > > Index: Makefile > === > RCS