Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-10 | Add "server options" which are server-wide and not bound to a session or | Nicholas Marriott | |
window. Set and displayed with "set -s" and "show -s". Currently the only option is "quiet" (like command-line -q, allowing it to be set from .tmux.conf), but others will come along. | |||
2009-12-10 | tweak previous; | Jason McIntyre | |
2009-12-10 | Make sure to use 64 bit instructions in the assembly statements (addi -> daddi) | Miod Vallat | |
in the prologue; this gives a chance for binaries loaded with their stack over 2GB virtual, to run. Who's your daddi now? | |||
2009-12-10 | various bits of knf; ok yuo | Theo de Raadt | |
2009-12-10 | plug memory leak, spotted by parfait; ok krw | Theo de Raadt | |
2009-12-10 | o stop reordering ifconfig arguments (e.g. after 'up ..') | Todd T. Fries | |
o only stop processing if inet or inet6 lines are malformed o everything not a specially handled bit is passed to ifconfig unmangled noticed by several after the move from bridgename.bridge0 -> hostname.bridge0 prodded by deraadt@, tested by and feedback from several man page bits 'look fine' jmc@ | |||
2009-12-10 | Eliminate the confusing term "find codes database" which is used nowhere else. | Ingo Schwarze | |
It made people miss the fact we are just talking about /var/db/locate.database. Expicitely say that output will be sent to that file. Problem noted by, feedback and OK jmc@. | |||
2009-12-10 | remove dead assignment and newly created unused variable. | Charles Longeau | |
Found by LLVM/Clang Static Analyzer. ok dlg@ marco@ | |||
2009-12-10 | sync | Theo de Raadt | |
2009-12-10 | remove dead assignment and newly created unused variable. | Charles Longeau | |
Found by LLVM/Clang Static Analyzer. ok krw@ marco@ | |||
2009-12-09 | Resubmit any pending SCSI commands when we sucessfully (re)connect to | Mark Kettenis | |
a vDisk server. This makes OpenBSD running in a guest domain survive a reboot of a control domain or service domain. | |||
2009-12-09 | this does not even compile | Theo de Raadt | |
2009-12-09 | mention uhts(4). suggested by jmc@ | Matthieu Herrb | |
2009-12-09 | add uhts(4). | Matthieu Herrb | |
2009-12-09 | add uhts(4) a driver for USB HID touchscreens. ok miod@. | Matthieu Herrb | |
Man page advices by jmc@. | |||
2009-12-09 | off by one in carp configuration; found by parfait, ok jsg | Theo de Raadt | |
2009-12-09 | Nuke stray comment referencing deceased TRY_AGAIN_LATER that dlg@ | Kenneth R Westerback | |
snuck back in. Noticed by kettenis@. | |||
2009-12-09 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-12-09 | By popular demand and peer pressure, check-in work in progress work to support | Miod Vallat | |
the Yeelong Lemote mips-based netbook. Kernel bits only for now, needs polishing; most of this work done during h2k9 last month, although the porting effort started earlier this year. | |||
2009-12-09 | sloppy oga, tsk tsk, you are scaring us | Theo de Raadt | |
spotted by ckuethe and must be in immediately before my build gets there.. | |||
2009-12-09 | Don't try to shove I/O down the LDC if we're disconnected from the virtual | Mark Kettenis | |
disk server. | |||
2009-12-09 | Do not count input errors twice. We always read input errors from | Christian Weisgerber | |
the MAC in bge_tick(). Previously this would result in bge(4) claiming a greater number of input errors than what has actually occurred. From FreeBSD via Brad | |||
2009-12-09 | sync | Theo de Raadt | |
2009-12-09 | Add entries in compat signal mapping arrays for SIGTHR. | Jonathan Gray | |
Prompted by parfait noticing overflows in ibcs2/svr4 which are now changed to being NSIG sized like the others as suggested by tedu. ok tedu@ miod@ guenther@ | |||
2009-12-09 | Remove the clean gdt bit and leave the idt part in. | Paul Irofti | |
Fixes most laptops out there on resume. Okay deraadt@. | |||
2009-12-09 | add two new MD only pmap apis to amd64 and i386 (not to be used in MI | Owain Ainsworth | |
code): pmap_flush_cache(vaddr_t, vsize_t) and pmap_flush_page(paddr_t) to flush the cache for virtual addresses and physical pages respectively using the clflush instruction. These apis will shortly be used by the agp bus_dma functions to avoid doing a wbinvd on each dmamap_sync. ok kettenis@, some comments from miod@ | |||
2009-12-09 | add cpufunc functions for the clflush instruction and the mfence | Owain Ainsworth | |
instruction. ok kettenis@ as part of a larger diff. | |||
2009-12-09 | Detect the cache line size for the clflush instruction when we identify | Owain Ainsworth | |
the cpu. ok kettenis@ as part of a larger diff. | |||
2009-12-09 | We only need to fchdir(dotfd) for the -exec and -ok primaries so | Todd C. Miller | |
defer the check for dotfd != -1 until we know we will need it. Based on a diff from schwarze@ | |||
2009-12-09 | parsecommunity() always works on a struct filter_community. So pass a | Claudio Jeker | |
pointer to the struct instead of two int pointers. | |||
2009-12-09 | Enable parsing of the optional Transport Address TLV in the hello | Michele Marchetto | |
message. ok claudio@ | |||
2009-12-09 | parsecommunity() does not allow to set unknown well-known communities. | Claudio Jeker | |
So there is no need to check that again. Switch a USHRT_MAX to COMMUNITY_WELLKNOWN to make the compare clearer, the values are the same. | |||
2009-12-09 | Stop spamming dmesg when raid isn't available. | Marco Peereboom | |
2009-12-09 | disable useles print | Marco Peereboom | |
2009-12-08 | Unconditionnaly move kernel virtual memory space to XKSEG, now that previous | Miod Vallat | |
context.S fixes allows these settings to work for kernels linked in CKSEG0. | |||
2009-12-08 | In cpu_switchto(), correctly ignore CKSEG0 curprocpaddr (and do not update the | Miod Vallat | |
wired TLB entries). | |||
2009-12-08 | Use a whole page for msgbuf if page size is larger than 4KB, instead of | Miod Vallat | |
the current 8KB. | |||
2009-12-08 | Remove old SysV SHM size limits global variables, they are no longer needed | Miod Vallat | |
since blambert@ rewrote the allocation code. | |||
2009-12-08 | Passing kva + size as the third argument to uvm_km_free() is a bad idea. It | Mark Kettenis | |
unmaps quite a bit more than intended, which causes weird things like watchdog resets. | |||
2009-12-08 | Fix overflow bug found by Holger Mikolon, thanks. | Dale Rahn | |
committed slightly different fix. | |||
2009-12-08 | Base the revision string in the INQUIRY info on the version of the VIO protocol | Mark Kettenis | |
used by the virtual disk server. | |||
2009-12-08 | Must byte-swap extended community data before printing since it is in | Claudio Jeker | |
network byte order. Found and tested by Pete Vickers. | |||
2009-12-08 | porcesses -> processes | Jonathan Gray | |
2009-12-08 | Split out some code into own function to make the code a bit nicer. | Claudio Jeker | |
OK henning@ upon his request | |||
2009-12-08 | yes "initial letters in Nd should not be uppercased unneccessarily" | Jason McIntyre | |
2009-12-08 | Big AID change part 2 bgpctl part. Cope with the changes in bgpd, more to | Claudio Jeker | |
follow. OK henning | |||
2009-12-08 | Big AID change part two. This changes the mp capability into an array of | Claudio Jeker | |
flags. This makes a lot of code much easier since the comparison is now trivial. Additionally calculate the negotiated capabilities for a session in the SE and pass that and only that to the RDE. This makes the decisions in the RDE a lot easier. OK henning@ | |||
2009-12-08 | the ata identify structure is stupid. its full of buffers you have | David Gwynne | |
to swap to use. this diff doesnt swap fields the identify structure when its fetched, but adds a function that swaps them and copies them into a destination buffer. there is no functional change to the existing users of these fields, specifically the scsi inquiry faker and the device serial vpd page. this does fix the devid vpd page though. if a disk has a wwn we now present it correctly. | |||
2009-12-08 | claim Intel 82801H RAID by pci id. it might be in RAID mode, not ahci. | David Gwynne | |
makes the disks in a dell 960 work. there's probably a lot of other ids that should be added here too | |||
2009-12-08 | move "pf: key search" and "pf: key setup" messages to PF_DEBUG_NOISY | Stuart Henderson | |
instead of MISC. "makes a little bit more sense" henning@ |