summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-17Merge newaliases into makemap.Jacek Masiulaniec
ok gilles@
2008-12-17typoMiod Vallat
2008-12-17Make the code that picks an IRQ from the list of possible IRQs a bit smarterMark Kettenis
by avoiding legacy IRQs if possible. Fixes problems (some, not all) with machines that advertise legacy IRQs as usable even if they have ISA devices onboard that need those IRQs. ok marco@
2008-12-17add some newly created stats that are defined in ieee80211_ioctl.hjoshua stein
but not shown here update some descriptions to show that they are for wpa as well as wep input from and ok damien@
2008-12-17Introduce /purge, where all msgs scheduled for deletion are put byJacek Masiulaniec
queue, and removed from disk by runner. On startup, clean /incoming by moving msgs within it to /purge. ok gilles@
2008-12-17- Extend our quirk device table by a flags field.Marcus Glocker
- Add Apple iSight first revision device to the quirk table for future code. - Fix some logic in the device matching function. OK deraadt@
2008-12-17sort;Jason McIntyre
2008-12-17Add a workaround for some crazyness that happens if a cloning route has aClaudio Jeker
low priority gateway route below itself plus a carp interface on the same network. The result is that some arp entries can't be added. This is a bandaid that will give me time to figure out the real bug.
2008-12-17Add support for demotion counter.Michele Marchetto
When interfaces go up/down the demotion counter of the specified group is decreased/increased. ok henning@
2008-12-17change the name displayed by the c-mode on the mode line to "c",Igor Sobrado
as other modes do, for consistency and to save a few chars. written with help from kjell@ ok kjell@
2008-12-17sort CFLAGS, SRCS and the list of compile-time options; while here,Igor Sobrado
add some missing full stops. ok kjell@
2008-12-17stop using stderr in the library, wrap all diagnostic fprintfsAlexandre Ratchov
so they are visible only when the DEBUG macro is #defined and SIO_DEBUG env. variable is set. requested by many, discussed with jakemsr
2008-12-17Document ENOBUFS for writev(2).Ray Lai
Okay claudio, deraadt.
2008-12-17more on editors; ok ajacoutotJason McIntyre
2008-12-17tweak previous;Jason McIntyre
2008-12-17Backout anonymous union fix, since it breaks V4L ports. we try to fixMarcus Glocker
this upstream instead. OK deraadt@
2008-12-17Rewrite the 'mbuf' page to display mbuf usage information from system poolsCan Erkin Acar
and mbuf cluster statistics collected for each interface. More useful than earlier bar graphs about mbuf types. Requested by and ok deraadt@
2008-12-17fix spell errors, from Thomas Pfaff <tpfaff(at)tp76.info>, thanks!Alexandre Ratchov
2008-12-17add a writable ``appbufsz'' field to the sa_par structure, containingAlexandre Ratchov
the program-part of the buffer size, ie the part that is subject to underruns. Useful for apps like cdio(1) that don't have their own rings, or to apps that have a minimum ring size constraint. Setting the ``bufsz'' parameter becomes deprecated. ok jakemsr
2008-12-16Make the "machine xir" ddb command work on machines with TomatilloMark Kettenis
schizo(4) variants.
2008-12-16- make it possible to edit a merged file using an external editor ;Antoine Jacoutot
useful when 'sdiff eb' does not cope with one's needs. idea and input from weerd@ ok weerd@ sthen@
2008-12-16when searching for an endpoint, return the correct abuf pointers.Alexandre Ratchov
Fixes the volume knob not working when the input chain has more than two aprocs
2008-12-16reorder so that web certificates are more obvious.Marc Espie
Avoid the classical noob problem: read half the manpage, figure out how to build a DSA certificate, then realize it's not what you need. historically, RSA was patented, and so it made sense to put DSA first. But the patent expired a few years ago... okay millert@, jmc@
2008-12-16Use macros from route.h when mapping route priorities to names; theStuart Henderson
hardcoded values used here before were incorrect. ok claudio@
2008-12-16Move the functionality of psignal() to a new function ptsignal()Philip Guenthe
that takes an additional argument "type" that indicates whether the signal is for the process, just a particular thread, or propagated to a thread because it's not caught or blocked. psignal() becomes a wrapper that does the first of those. So that sys_kill() can tell apart signals for the process and signals for the process's original thread, the tid of the original thread is defined as its pid + THREAD_PID_OFFSET. ok tedu@ art@ andreas@ kurt@ "better early than late" deraadt@
2008-12-16strptime() never sets tm_isdst, so set it to -1 before passing thePhilip Guenthe
struct tm to mktime() so that the calculation will follow the local DST rules ok millert@ otto@
2008-12-15Make the "machine xir" ddb command work on machines with uperf(4) on sbus(4).Mark Kettenis
2008-12-15Make the "machine xir" ddb command work on machines with uperf(4) on ebus(4).Mark Kettenis
2008-12-15Let tty subsystem know when transmit is finished so ioctls do not hang.Dale Rahn
2008-12-15Unbreak netstat, reflecting kernel changes.Michele Marchetto
Now it shows MPLS informations correctly. OK claudio@
2008-12-15work around tree breakage by mpls peopleTheo de Raadt
2008-12-15shave off more bytes than you expect by declaring a few const local arraysOtto Moerbeek
as static const
2008-12-15turns out gcc is not smart enough to avoid the local array in constOtto Moerbeek
char msg[] = "string literal" if you do not declare it static. shaves off a few bytes
2008-12-15in rt2860_rx_intr(), rely on RT2860_FS_DRX_IDX instead of the RX_DMA DDONEDamien Bergamini
bit to know when to stop.
2008-12-15regenDamien Bergamini
2008-12-15remove duplicated usb idDamien Bergamini
2008-12-15regenDamien Bergamini
2008-12-15more RT2770/RT2870/RT3070/RT3071 product ids.Damien Bergamini
driver coming soon.
2008-12-15Reflect kernel changes. Labels are no more per link uniqueMichele Marchetto
and operations are now stored in rt_flags. This also simplify a lot the syntax. ok claudio@ laurent@
2008-12-15Initial fixup of sockaddr_mpls struct.Michele Marchetto
Remove smpls_in_iface as labels must be per platform unique. Remove smpls_out_iface. It is redudant and can be inferred from nexthop. Move smpls_operation to rt_flags and temporary remove smpls_out_exp. ok claudio@
2008-12-15tweak the defaults to also do -M if you ask for info on a given package.Marc Espie
2008-12-15Cleanup the temporary directory in all the error paths.Federico G. Schwindt
ajacoutot@ ok.
2008-12-15remove unused vars; damien@ ok.Federico G. Schwindt
2008-12-15a little more clarity on link aggregation, after some discussionJason McIntyre
with mpf; ok mpf
2008-12-15correct the description of fstat output for sockets;Jason McIntyre
reported by Stephan A. Rickauer ok otto
2008-12-15remove i386-only inline assembler roll() function; gcc optimises theDamien Miller
equivalent C code into a rol instruction anyway (confirmed with objdump -d); "nuke it" weingart@
2008-12-15revert 1.20 now that the new allocator is used to control the number ofBrad Smith
RX buffers allocated. ok dlg@
2008-12-14MCLGETI takes an mbuf *, not an mbuf.David Gwynne
2008-12-14Allow trunk_hashmbuf() to take HW VLAN tagging into consideration.Brad Smith
ok mpf@ naddy@
2008-12-14Since trunk_hashmbuf() and thus trunk_lb_gethdr() are no longer specificBrad Smith
to the loadbalance code rename trunk_lb_gethdr() to just trunk_gethr(). ok mpf@