Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-27 | Use IP_RECVIF to get the incomming interface of OSPF packets. Now we use | Claudio Jeker | |
the source address and the interface index to find the corresponding struct interface which is less error prone. OK norby@ | |||
2006-09-27 | Add missing <sys/device.h>. | Alexander Yurchenko | |
2006-09-27 | no need for a separate hardware section; | Jason McIntyre | |
2006-09-27 | Fix tags file creating by removing unexisting paths. | Alexander Yurchenko | |
2006-09-27 | Add Maxim/Dallas DS2490 USB 1-Wire adapter driver. | Alexander Yurchenko | |
2006-09-27 | regen | Jonathan Gray | |
2006-09-27 | Add another two Vitesse PHYs, one from jmc's nfe(4), one from an | Jonathan Gray | |
axe(4) I have. | |||
2006-09-27 | alpha is gcc3 now | Michael Shalayeff | |
2006-09-27 | add pgt(4) and acx(4), work in progress. | Brad Smith | |
2006-09-27 | Add files.onewire to all our USB archs, it will be used soon. | Alexander Yurchenko | |
2006-09-27 | Add and correct comments, spacing. | Ray Lai | |
OK niallo@. | |||
2006-09-27 | Plug memory leak. | Ray Lai | |
OK niallo@. | |||
2006-09-27 | IBSS mode works so far, so mention it. | Marcus Glocker | |
2006-09-27 | add acx(4). | Brad Smith | |
2006-09-27 | add missing sys/device.h header. | Brad Smith | |
2006-09-27 | fix the use of LIST_INSERT_HEAD in [m]sk_alloc_jumbo_mem(). | Brad Smith | |
2006-09-27 | Oops. Missed a line. Fix so disklabel(8) compiles again. | Kenneth R Westerback | |
2006-09-26 | update the comment for bge_chipinit(). | Brad Smith | |
2006-09-26 | re-enable I2C_VERBOSE | Jonathan Gray | |
ok deraadt@ | |||
2006-09-26 | Zap D_REMOVABLE flag from disklabel. If you didn't already know that | Kenneth R Westerback | |
floppies and cd's were removable, displaying that fact in disklabel output was unlikely to help. And the display in disklabel was the only use of D_REMOVABLE in the tree. ok marco@ | |||
2006-09-26 | switch alpha to gcc3; joint work with drahn@ and brad@ | Martin Reindl | |
ok drahn@ brad@ mickey@ deraadt@ | |||
2006-09-26 | a better description of what our automatic keying example is up to; | Jason McIntyre | |
ok hshoexer | |||
2006-09-26 | Start to get HostAP mode working for pgt(4). Works at the first try, | Marcus Glocker | |
but surely needs more testing and some more modifications. | |||
2006-09-26 | udp port 664 is sometimes also stolen on the wire by ipmi/asf balony. | Theo de Raadt | |
Did these vendors really really really not think? Absolute morons. | |||
2006-09-26 | regen | Matthieu Herrb | |
2006-09-26 | add GeForce 7300 GT, ok deraadt@ | Matthieu Herrb | |
2006-09-26 | Set sk_jumbo_buf to NULL if malloc() fails in the for loop within | Brad Smith | |
[m]sk_alloc_jumbo_mem(). | |||
2006-09-26 | use .Pa for urls and avoid broken links; | Jason McIntyre | |
problem noticed by frederic culot (pr #5243) ok deraadt pval | |||
2006-09-26 | clear up some confusion between operands and operators; with & ok jmc@ | Otto Moerbeek | |
2006-09-26 | It seems pointless to assign a variable the atoi() return value after | Michael Knudsen | |
the strtol() error checking block for the strtol() assignment for the same variable. ok brad mglocker | |||
2006-09-26 | Allow zero-length patterns with -x so | Jared Yanovich | |
$ grep -x "" matches empty lines as reported on misc@ by Martin Marusak <marusak@fhpv.unipo.sk>. Initial diff by otto@ with tweaks by me. ok otto | |||
2006-09-26 | style(9) extra space | Kurt Miller | |
2006-09-26 | - Use mmap to allocate thread stacks instead of malloc. This prevents | Kurt Miller | |
applications that install their own thread stack red-zones with mprotect PROT_NONE from entering the malloc pool when the pages are freed. - round up requested thread stack size to closest page boundary to simplify the red-zone calculations. okay brad@ | |||
2006-09-26 | Part 2 of file descriptor race and deadlock corrections. | Kurt Miller | |
Adjust design of file descriptor table to eliminate races with both opening and closing of file descriptor entries and eliminates one class of deadlocks. One nice side effect of this change in design should be better performance for applications that open and close many file descriptors due to reduced fd_table_lock contention and fd entry reuse. - Add entry states to manage use of entry and eliminate some closing races. fd entries are not deallocated upon close() now. - Call _thread_fd_table_init with one of five discreet modes to properly initialize an entry and manage the state transition to open. - When closing an entry hold the entry spinlock locked across the state transition and the _thread_sys_close call to close another race. - Introduce a new lock type FD_RDWR_CLOSE that transitions either a closed entry or an open entry into closing state and then waits for a RDWR lock so that the lock queue can unwind normally. All subsequent fd lock attempts for that entry are rejected with EBADF until the fd is fully closed, or reopened by dup2(). Once a thread holds the FD_RDWR_LOCK it is safe to close() it or dup2() on it. - When a thread creates a new fd there is a window of time when another thread could attempt to use the fd before the creating thread has initialized the entry for it. This can result in improper status_flags for the entry, so record the entries init mode, detect when this has happened and correct the status_flags when needed. reviewed by marc@ & brad@, tested by several, okay brad@ | |||
2006-09-26 | Fix compilation, okay henning@ mpf@ | Pedro Martelletto | |
2006-09-26 | do not alloc jumbo buffers (3.5m per iface) and also do not allow card to ↵ | Michael Shalayeff | |
receive large frames until mtu is set to higher value (later piece from brad); brad@ ok | |||
2006-09-26 | Get HostAP mode working and fix IBSS tweaks. From DragonFly driver. | Marcus Glocker | |
Tested by claudio and me so far. ok jsg@ | |||
2006-09-26 | regen | Jonathan Gray | |
2006-09-26 | Match ELECOM LD-USB20 | Jonathan Gray | |
From redzonemiata at yahoo.co.jp via FreeBSD PR 86195 | |||
2006-09-26 | Sync in_cksum.c to the same version dvmrpd has. This fixes problems with odd | Claudio Jeker | |
packet lenght even though ospfd does not produce such packets. OK norby@ | |||
2006-09-26 | Simplify and make ISO chksum work on big endian machines. | Esben Norby | |
Found by me and corrected by claudio@ during the r2k6. ok claudio@ | |||
2006-09-26 | authunix_create_default() might return NULL; spotted by tbert; | Otto Moerbeek | |
ok deraadt@ | |||
2006-09-26 | accidental extra %s in ddb printf | Michael Shalayeff | |
2006-09-26 | fix races w/ getdirtybuf() usage that can violate normal | Michael Shalayeff | |
softdep processing and temporarily create inconsistant on-disk ffs state and as well abuse kmem. pedro@ deraadt@ ok; tested by many | |||
2006-09-26 | Shrink the number of matches done in piixsata_chip_map, | Jonathan Gray | |
no functional change. | |||
2006-09-26 | Move some duplicated debug code into its own function. | Jonathan Gray | |
2006-09-26 | Go back to spl0, previous change broke Cuda adb; reported by Carl | Miod Vallat | |
Bloomsburg. | |||
2006-09-26 | escape error response to unsupported Expect: header, fixes | Damien Miller | |
CVE-2006-3918; ok cloder@ | |||
2006-09-26 | Make mesh compile again, it also works now too, from NetBSD with a lot | Gordon Willem Klok | |
of tweeks. Leave it commented out in GENERIC and files.macppc for now. ok kettenis@, brad@ | |||
2006-09-25 | Remove debugging printf accidentally committed. | Ray Lai | |
OK joris@. |