summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-10-18remove wrong definition since result really belongs to stat (which isFederico G. Schwindt
already there).
2005-10-18Add some missing IDE/SATA interfaces..Brad Smith
- Via VT6421 SATA - ServerWorks HT-1000 IDE - ServerWorks Frodo4/Frodo8 and HT-1000 SATA - NVidia NForce3 250 2nd channel, MCP04 and MCP51 ok grange@
2005-10-18- `-N' works now; document it.Niall O'Higgins
2005-10-18The kroute nexthop stuff was removed long time ago. So remove theseClaudio Jeker
function prototypes too.
2005-10-18Correct log_debug(). Found while scrolling through that file.Claudio Jeker
2005-10-18add support for static interface group expansion, i. e.Henning Brauer
pass to group ok hshoexer, hacked at linux-kongress last week
2005-10-18Use PSR_IND rather than recomputing it from PSR_INTERRUPT_DISABLE_BIT;Miod Vallat
spotted by martin.
2005-10-18When attempting to open a filename, walk backwards through minibuffer:Kjell Wooding
a> if you run into the beginning of the string, use the whole thing b> if you run into a // combo, use everything starting from the second / c> if you run into a /~ combo, use everything starting from the ~ i.e. do like emacs. From (and for) Jason Wright
2005-10-18This is too useful for debugging to not have in the tree, howeverDale Rahn
the interface may change at any time, so dont depend on it. (ie regress)
2005-10-18- no point in using cvs_printf() in openrcs;Joris Vink
- only output info messages if -q flag isn't given;
2005-10-18oops, rcs_set_rev() can't operate when str is NULL of course;Joris Vink
2005-10-18use rcs_set_rev() instead of duplicating code all over theJoris Vink
place to set a variable to the given revision number;
2005-10-18correctly handle locks when commiting something;Joris Vink
2005-10-18plug memleaks in rcs_rev_add() when an error occurs;Joris Vink
2005-10-18Put rev 1.56 back in and make sure to include the header soBrad Smith
it actually compiles this time.
2005-10-18revert last commit for now.Brad Smith
2005-10-18Make sure that if_timer does not get reset if there are packetsBrad Smith
still queued for transmission. This should solve the problem of the device stalling on transmissions if some link event prevents transmission. From luigi FreeBSD ok pedro@ hshoexer@
2005-10-17knfTheo de Raadt
2005-10-17remove /bcom5421 from the OF device map table, this is actually a PHY.Brad Smith
ok deraadt@
2005-10-17* Fix SMBIOS Table addressJordan Hargrave
mapped memory instead of ISA_HOLE_VADDR for SMBIOS tables in high memory * Added ipmi_poll variable to control sensor polling * Add Power Supply sensor type * Fixed chassis intrusion reading * Added Block-Transfer interface BT is transport protocol to BMC * Fixed threshold values Bits in Sensor reading did not contain correct values for threshold vioation; must compare reading against actual threshold. * KNF ok: marco@
2005-10-17- remove a printf which kept in by accident.Niall O'Higgins
2005-10-17Fix possible buffer overflow caused by unknown tags in the rangeMark Kettenis
[DT_LOPROC, DT_HIPROC]. ok kurt@
2005-10-17KNF;Niall O'Higgins
2005-10-17document the tty vs cua devices, and Xr tty 4; ok jmcTheo de Raadt
2005-10-17Performing certain operations on queue.h data structurs producedOtto Moerbeek
funny results. An example is calling LIST_REMOVE on the same element twice. This will not fail, but result in a data structure referencing who knows what. Prevent these accidents by NULLing some fields on remove and replace. This way, either a panic or segfault will be produced on the faulty operation. Tested by many, ok deraadt@
2005-10-17make undo of word-based capitalization functions workKjell Wooding
ok beck@
2005-10-17don't say no more if there is no driver for icu; lessen noiseMichael Shalayeff
2005-10-17Use queue macros instead of directly accessing fields. ok pat@ "put itOtto Moerbeek
in" deraadt@
2005-10-17Use queue macros instead of directly accessing fields. ok pat@ "put itOtto Moerbeek
in" deraadt@
2005-10-17Use queue macros instead of directly accessing fields. ok pat@ "put itOtto Moerbeek
in" deraadt@
2005-10-17initial documentation of 'show fib'; ok claudio@ jmc@Kevin Steves
2005-10-17Rename ncpus to alpha_ncpus so that MI ncpus matches the number ofMiod Vallat
attached processors; deraadt@ ok
2005-10-17Store the usb device names and vendors in more compact structures.Dale Rahn
Originally committed in 2001, backed out in a sync, now back in. saves close to 12k of kernel size. commit deraadt@
2005-10-17serverworks SATA tooTheo de Raadt
2005-10-17add client support for the `watch' and `watchers' commands. ok joris@ xsa@Moritz Jodeit
2005-10-17support -f flag for co;Joris Vink
'fine' niallo@
2005-10-17Fix string handling. LOGIN_NAME_MAX includes the NUL, so don't reserve extraKjell Wooding
space. Fix usage of strlcpy. Correct test for terminating slash. "looks good" deraadt@
2005-10-17more cleanups; ok jakob@Kevin Steves
2005-10-17remove #ifdef LWRES; ok jakob@Kevin Steves
2005-10-17fix memory leaks from 2 sources:Kevin Steves
1) key_fingerprint_raw() 2) malloc in dns_read_rdata() ok jakob@
2005-10-17- document the different types of mixerctl variablesJason McIntyre
- standard EXAMPLES - make HISTORY more Ox-specific - minor tweaks feedback + ok: otto@ jaredy@ tom@
2005-10-17-k takes an arg;Jason McIntyre
2005-10-17incorrect macro usage;Jason McIntyre
2005-10-17Simplify case statement in apollo_chip_map().Jonathan Gray
2005-10-17Mention VT8251 support.Jonathan Gray
2005-10-17Recognise VT8251. From Blake Willis <blake at 2112.net>.Jonathan Gray
ok grange@
2005-10-17regenJonathan Gray
2005-10-17VIA K8M800/VT8251 devices from Blake Willis <blake at 2112.net>.Jonathan Gray
2005-10-17define a mask to extract the result from status.Federico G. Schwindt
2005-10-17make pf use one mbuf tag instead of 6 distinct ones. use a little structHenning Brauer
in the data part for the data from the previously distinct tags. look up the tag early and carry a pointer to it around. makes the code easier and saves some tag lookups and thus helps performance, as proven by tests run by Schberle Dniel <Schoeberle.Daniel@aamtech.hu> Initially hacked up somewhere over the atlantic ocean in an A330 early testing reyk and moritz, "put it in" theo