Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-13 | repair vscsi line | Theo de Raadt | |
2009-08-13 | toby do you even care enough to try to do right? | Theo de Raadt | |
2009-08-13 | Allowing copy mode to scroll left and right is annoying, so limit it to the | Nicholas Marriott | |
real screen width. To indicate the cursor is at the end of the line rather than the cell before, put a '$' in the last cell. Also clear the selection when the terminal is resized to avoid tmux getting confused. | |||
2009-08-13 | remove description of link0 for vlan interfaces; this part missed when | Stuart Henderson | |
vlan link0 was replaced with IFCAP_VLAN_HWTAGGING in 2001. prompted by a mail from Insan Praja. ok deraadt@ | |||
2009-08-13 | sync | Theo de Raadt | |
2009-08-13 | Rather than telling the client to exit in the function when creating a new | Nicholas Marriott | |
session detached, let the caller do it. Allows "tmux new -d \; attach" to work. | |||
2009-08-13 | When creating a new session from the command-line where there is an external | Nicholas Marriott | |
terminal, copy the termios(4) special characters and use them for new windows created in the new session. Suggested by Theo. | |||
2009-08-13 | document the show all vnodes command. prompted by jmc@. | Thordur I. Bjornsson | |
2009-08-13 | synbc | Theo de Raadt | |
2009-08-13 | use Bk/Ek to avoid ugly split in synopsis; | Jason McIntyre | |
2009-08-13 | typo | Miod Vallat | |
2009-08-13 | rewrite the promisc mode / multicast handling code for the sparc hme(4) | Peter Hessler | |
driver and is based off of the MI hme(4) driver. tested with ping6 -w and tcpdump from brad OK naddy@, sthen@ | |||
2009-08-13 | Redraw the screen after resizing. | Nicholas Marriott | |
2009-08-13 | In pmap_pte_flush flush the icache before the dcache, as is done elsewhere. | Theo de Raadt | |
We cannot find gaurantees in the documents that any icache filling from the cache is terminated by a icache flush or idtlb invalidation, so this is probably safer, and unlikely to be unsafer. ok kettenis | |||
2009-08-13 | It was originally intended that scroll mode would show content that was | Nicholas Marriott | |
currently off-screen due to resize, but somewhere along the way this got lost. Restore this behaviour to scroll mode by fixing screen_write_copy to read up to the saved line length rather than the current screen width. Copy mode remains unaltered for now. | |||
2009-08-13 | - remove super-obvious comments from vnodeop_entries[] | Jasper Lievisse Adriaanse | |
- remove #ifdef someos blocks, makes this a tad easier to read agreed by art@ and thib@ | |||
2009-08-13 | fix a typo its supposed to be show all vnodes not show all vnodes, | Thordur I. Bjornsson | |
ddb does keyword matching so i missed this. spotted by jasper@ | |||
2009-08-13 | Cleanup differences between i386 and amd64. | Mark Kettenis | |
2009-08-13 | PAGEFASTRECYCLE is an option we have been using for a while to encourage | Theo de Raadt | |
the kernel to reuse freed pages as quickly as possible, and it has been finding bugs (some of which we have already fixed) ok kettenis | |||
2009-08-13 | Replace the error strings that were being passed around with much simpler | Theo de Raadt | |
errnos. Note that the error strings are being ignored, since we long ago decided to not spam the console, and there is no other nice way to use the errors (without changing the ioctls to pass it back) The errno is now useful, since we can pass b_error from failing IO up, and the drive can decide how to use that ok miod | |||
2009-08-13 | Replace the error strings that were being passed around with much simpler | Theo de Raadt | |
errnos. Note that the error strings are being ignored, since we long ago decided to not spam the console, and there is no other nice way to use the errors (without changing the ioctls to pass it back) The errno is now useful, since we can pass b_error from failing IO up, and the drive can decide how to use that ok miod | |||
2009-08-13 | Teach nfsm_fhtom about nfsm_info structs | Bret Lambert | |
ok thib@ | |||
2009-08-13 | - remove the ef(4) chunk, it's unused now and the ioc ethernet driver | Jasper Lievisse Adriaanse | |
won't be called ef(4) anyway. ok miod@ | |||
2009-08-13 | sync | Theo de Raadt | |
2009-08-13 | Add nodes for vscsi0; ok dlg | Theo de Raadt | |
2009-08-13 | i forgot a comment | David Gwynne | |
2009-08-13 | wire vscsi up to a cdev | David Gwynne | |
for claudio@ ok deraadt@ | |||
2009-08-13 | change version 3 post-operation attribute building function to not | Bret Lambert | |
use mbufs directly, but the shiny new nfsm_info struct ok thib@ | |||
2009-08-13 | - remove super-obvious comments from $fs_vnodeop_entries[] | Jasper Lievisse Adriaanse | |
prodded by and ok thib@ agreed by art@ and blambert@ | |||
2009-08-13 | Print a warning when rdomain is used on non-AF_INET sockets. Those are | Claudio Jeker | |
currently not supported. Requested by djm sort of. | |||
2009-08-13 | - consistify cfdriver for the ethernet drivers (0 -> NULL) | Jasper Lievisse Adriaanse | |
ok dlg@ | |||
2009-08-13 | Allow tcpbench to bind to a different rdomain. | Claudio Jeker | |
OK sthen, djm and maybe more | |||
2009-08-13 | add new 'router' functionality to dynamically add or remove routes | Reyk Floeter | |
based on health check results, using the existing table syntax. this allows to maintain multiple (uplink) gateways to implement link balancing or WAN link failover if no routing protocol or other keepalive method is available. works fine with or without net.inet.ip.multipath enabled. ok pyr@, jmc@ for manpages | |||
2009-08-13 | add a show all vnodes command, use dlg's nice pool_walk() to accomplish | Thordur I. Bjornsson | |
this. ok beck@, dlg@ | |||
2009-08-13 | sync synopsis and usage(); | Jason McIntyre | |
2009-08-13 | Start using a linking script for this kernel. This | Tobias Weingartner | |
should help in future using large pages for text/etc. Also, since we do not use the .eh frame stuff, we can nuke them, saving some bytes... Ok kettenis@, "more control over linking is a good thing, but I can't comment further" art@. | |||
2009-08-13 | A new(er) mtx_enter_try(). | Tobias Weingartner | |
Ok oga@, "the time is now" deraadt@. | |||
2009-08-13 | Make the i386 APIC code closer to the amd64 version. Many whitespace fixes, | Mark Kettenis | |
some additional code. ok toby@, oga@ | |||
2009-08-13 | - missing printf("\n"); after calling lockmgr_printinfo() | Jasper Lievisse Adriaanse | |
"do it" thib@ | |||
2009-08-13 | If the client passes zero for the window size in the identify message (which it | Nicholas Marriott | |
can, for example on serial terminals), reset it to 80x25, same as for resize messages. Problem reported by kettenis@. | |||
2009-08-13 | set ITSDONE on the xs before calling scsi_done() | David Gwynne | |
2009-08-13 | - set DV_IFNET, instead of DV_NULL | Jasper Lievisse Adriaanse | |
ok kettenis@ | |||
2009-08-13 | date: 2009/08/13 01:11:19; author: djm; state: Exp; lines: +10 -7 | Damien Miller | |
Swizzle options: "-P sftp_server_path" moves to "-D sftp_server_path", add "-P port" to match scp(1). Fortunately, the -P option is only really used by our regression scripts. part of larger patch from carlosvsilvapt@gmail.com for his Google Summer of Code work; ok deraadt markus | |||
2009-08-13 | Swizzle options: "-P sftp_server_path" moves to "-D sftp_server_path", | Damien Miller | |
add "-P port" to match scp(1). Fortunately, the -P option is only really used by our regression scripts. part of larger patch from carlosvsilvapt@gmail.com for his Google Summer of Code work; ok deraadt markus | |||
2009-08-13 | regression test for port number parsing. written as part of the a2port | Damien Miller | |
change that went into 5.2 but I forgot to commit it at the time... | |||
2009-08-12 | add modinst to CONFIGURE_STYLE list | Simon Bertrang | |
2009-08-12 | Add wake support to acpihpet(4). | Paul Irofti | |
Patch initially from mlarkin@. KNF and refactoring by me. Okay deraadt@. | |||
2009-08-12 | i am sorry to commit to userland from a kernel hackathon | Henning Brauer | |
2009-08-12 | Optimize Syndrome calculation, 30% speedup on writes | Jordan Hargrave | |
ok marco@ | |||
2009-08-12 | just bzero the pkthdr instead of setting each and every member of that | Henning Brauer | |
struct to 0/NULL. no performance impact but way less error prone on addition of new pkthdr field (as just ran into with a theo diff). ok theo |