Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-06 | reset SIGCHLD handler to SIG_DFL when execuring LocalCommand; | Damien Miller | |
ok markus@ | |||
2011-01-06 | For very large operations in randomread(), use a local rc4 instance | Theo de Raadt | |
much like arc4random_buf_large does, but without re-initializing it every 8K. ok tedu | |||
2011-01-06 | regress test for LocalCommand %n expansion from bert.wesarg AT | Damien Miller | |
googlemail.com; ok markus@ | |||
2011-01-06 | unbreak %n expansion in LocalCommand; patch from bert.wesarg AT | Damien Miller | |
googlemail.com; ok markus@ | |||
2011-01-06 | when exiting due to ServerAliveTimeout, mention the hostname that caused | Damien Miller | |
it (useful with backgrounded controlmaster) | |||
2011-01-06 | Update CGI to 3.51, which includes a better fix for SA42443, | Todd C. Miller | |
"multipart_init()" HTTP Header Injection Vulnerability. | |||
2011-01-06 | Remove dead links. | Damien Bergamini | |
Atheros have reworked their website. | |||
2011-01-06 | Remove dead links. | Damien Bergamini | |
Atheros have reworked their website. | |||
2011-01-06 | indicate the number of spatial streams along with the number | Damien Bergamini | |
of Tx/Rx chains. | |||
2011-01-06 | only athn at uhub (not pci or cardbus) needs firmload | Damien Bergamini | |
2011-01-06 | cleanup athn_usb_rx_frame(). | Damien Bergamini | |
remove padding after 802.11 header if any. | |||
2011-01-06 | implement fast channel change. | Damien Bergamini | |
this dramatically reduces the number of register reads/writes and thus the number of context switches when changing channel. makes scanning much faster. | |||
2011-01-06 | Solaris insists on getting the right sequence numbers in DRING_DATA messages | Mark Kettenis | |
and it seems we were off by one. | |||
2011-01-06 | create STA entry for our BSS upon association. | Damien Bergamini | |
update Rx filter after association. move RECV_START command outside of rx_enable since rx_enable callback is not allowed to fail. | |||
2011-01-06 | init and destory the bufq in the ioctl handler, as | Thordur I. Bjornsson | |
the softc is zero'ed when the vnd is unconfigured; otherwise we blow up when configuring a vnd the second time since the bufq structure is kaputt. found by and OK krw@ | |||
2011-01-06 | rephrase fsck question and default to 'n'; ok krw@ henning@ stsp@ | Otto Moerbeek | |
2011-01-06 | be more precise about the model | Jasper Lievisse Adriaanse | |
2011-01-06 | document that all *random nodes supply data now | Theo de Raadt | |
2011-01-06 | make all /dev/*random nodes respond; in fact, don't even worry about | Theo de Raadt | |
the minor number at all. The chances of an application ignoring the error on /dev/random are *greater* than the risk of an application getting bad data from it. ok dlg tedu kjell | |||
2011-01-06 | Ugly hack, call session_schedule in the task pdu callback handler. | Claudio Jeker | |
Without this accessing both LU on my iscsi target will lock up because tasks a queued but no longer scheduled. We need a better task scheduler but this allows me to run iogen on both partitions without locking up. | |||
2011-01-06 | Pass the magic LUN -1 to VSCSI_REQPROBE so that all LU are probed | Claudio Jeker | |
by the midlayer. With help from dlg@ | |||
2011-01-06 | sync | Theo de Raadt | |
2011-01-06 | Add minimal LUN handling. Currently only single level LUN addressing is | Claudio Jeker | |
supported because the vscsi ioctl interface is limited to that. Seems to work according to my iscsi target having 2 units per target. OK dlg@ | |||
2011-01-06 | add another RT3070 that works. | Jasper Lievisse Adriaanse | |
2011-01-06 | dst my point to memory inside rt so move the check up before the | Claudio Jeker | |
rtfree(rt). Without this the sp_protocol on RTM_DELETE is garbage and rtsocket user that restrict the AF of the socket (like ospfd) will not see a single one of the RTM_DELETE. OK henning@, dlg@ | |||
2011-01-06 | Minor style nit | Claudio Jeker | |
2011-01-06 | Put htons() around ip_randomid() for pf scrub random-id to make it | Alexander Bluhm | |
consistent with the network stack. ok mcbride@ henning@ | |||
2011-01-06 | Do not assign m->m_pkthdr.rdomain before m was allocated. | Claudio Jeker | |
Fix for rev 1.37 commit which would crash when slip(4) is used. Problem found the hard way by Henri Kemppainen. | |||
2011-01-06 | sync athn(4); | Jason McIntyre | |
2011-01-06 | enable athn at uhub | Damien Bergamini | |
2011-01-06 | "athn* at uhub? port ?" | Damien Bergamini | |
this adds preliminary support for the Atheros AR9271 chipset and probably the AR9280+AR7010 and AR9287+AR7010 too though those were not tested. scanning still takes a very long time (~1 sec per channel) but otherwise, operation in STA mode seems stable. will implement fast channel change soon. committed over the Ubiquiti WifiStation EXT (AR9271) on i386 with WPA. requires firmware (see man page for details) ok deraadt@ (who checked the .h files) | |||
2011-01-05 | Whoops, command-prompt can take 0 or 1 argument. | Nicholas Marriott | |
2011-01-05 | Ignore MCFG tables with an empty bus range. Makes stu@'s amd64 machine | Mark Kettenis | |
boot again. | |||
2011-01-05 | Pass pmap_bootstrap() the memory range used by the PROM/BUG/firmware/whatever, | Miod Vallat | |
instead of assuming it is ``everything below the kernel image''. | |||
2011-01-05 | Minor optimizations: | Miod Vallat | |
- move pte validity checks from pmap_remove_pte() to its callers. - when iterating over a segment, compute pte address once and increment it in the loop, instead of recomputing it on every iteration. | |||
2011-01-05 | Make copypage() and zeropage() per-cpu function pointers, and use a | Miod Vallat | |
different version on 88110, which does load allocate of to-be-completely-overwritten cache lines. | |||
2011-01-05 | Now that pmap_copy_page() no longer needs to flush a couple contiguous tlb | Miod Vallat | |
entries, drop the count parameter to cmmu_tlb_inv(), and introduce cmmu_tlb_inv_all() to drop all user tlb entries (to be used during context switches). | |||
2011-01-05 | cosmetic, no binary change. | Damien Bergamini | |
2011-01-05 | Remove mbuf ptr save dance in pf_test6(). It was a leftover with | Alexander Bluhm | |
misleading comment that did nothing. ok henning@ jsing@ | |||
2011-01-05 | - remove unused headers wrapped in #if defined(DDB) | Jasper Lievisse Adriaanse | |
ok jsing@ kettenis@ | |||
2011-01-05 | Put the "su -c ..." command into an rcexec variable so that we can | Antoine Jacoutot | |
easily use it in rc scripts instead of copying/pasting the same huge command lines everywhere. ok robert@ sthen@ | |||
2011-01-05 | cut vnd over to using bufq's again. | Thordur I. Bjornsson | |
OK dlg@, beck@, krw@. | |||
2011-01-05 | tyop, pr 6538. | Jasper Lievisse Adriaanse | |
2011-01-05 | use __func__ where possible. shaves 4k and makes indentation much better. | Federico G. Schwindt | |
kettenis@ ok | |||
2011-01-05 | - properly fix pr6009. a different fix was commited as the original patch | Jasper Lievisse Adriaanse | |
used atoi(). this fix uses strtonum() instead. from bjorn ketelaars, pr6515. ok henning@ | |||
2011-01-05 | remove debug code | Theo de Raadt | |
2011-01-05 | mark unused fields in struct rndstats | Theo de Raadt | |
2011-01-04 | Bring back my fix from -r 1.3 (Oct 15, 2010) after the merge. | Ingo Schwarze | |
Original commit message: For now, parse and ignore minimal column width specifications. First step to get terminfo(5) to build. | |||
2011-01-04 | Support machdep.lidsuspend support in apm(4) land, at least on thinkpads | Theo de Raadt | |
which have aps(4). You can now turn off the BIOS option for lid suspends, and control it with sysctl. | |||
2011-01-04 | Merge kristaps@' cleaner tbl integration, removing mine; | Ingo Schwarze | |
there are still a few bugs, but fixing these will be easier in tree. |