Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-11 | The upgrade script depends upon that, if mount_foo is present on the ramdisk | Miod Vallat | |
filesystem, option FOO is in the kernel. Ensure this for mount_mfs/option MFS as well, to prevent failing upgrades on some architectures. ok krw@ millert@ | |||
2003-06-11 | Add pmsi to GENERIC, PR #3251 | Miod Vallat | |
2003-06-11 | Much of the sbus, psycho, and schizo bus_dma code is the same, so let's | Henric Jungheim | |
call the real implementation functions directly instead of duplicating lots of code that only calls the real stuff anyway. tested by miod@ henning@ ok jason@ | |||
2003-06-11 | The "min" and "max" functions cast to "u_int", which can lead to surprising | Henric Jungheim | |
results. Use the MIN/MAX macros instead. tested by miod@ ok jason@ millert@ | |||
2003-06-11 | - sync up MLD declaration with RFC3542 (s/MLD6/MLD/) | Jun-ichiro itojun Hagino | |
- routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542). markus, todd, millert, henning ok | |||
2003-06-10 | It would kind of help if the flags member was initialized, otherwise random | Daniel Hartmeier | |
rules create state. Truly hard to spot. Unless you run the code, of course. | |||
2003-06-10 | debug0 and debug1 are defined elsewhere -- make 'em extern here | Michael Shalayeff | |
2003-06-10 | don't allow /dev/crypto to be opened ifndef CRYPTO (the thread hasn't been | Jason Wright | |
started, so all operations will hang later on anyway). | |||
2003-06-10 | o make mount(2) return EROFS, not EPERM if ffs is dirty | Todd C. Miller | |
o document EROFS in man page (2 possible causes) o recognize EROFS in mount_ffs and try to give a reasonable error message deraadt@ OK | |||
2003-06-10 | - rip out support for a.out and 32-bit kernels | Brad Smith | |
- cleanup and simplify Makefile jason@ ok | |||
2003-06-09 | more 3/4 cleanup for pefo | Theo de Raadt | |
2003-06-09 | pefo 3/4 licence cleanups | Theo de Raadt | |
2003-06-09 | Attempt to resolve byte order confusion in nat code once and for all. | Ryan Thomas McBride | |
- pf_get_sport() leaves the translated port in the packet in network byte order - merge code for the p1=0 p2=0 case and static-port case in pr_get_sport() NOTE: people who use the static-port keyword in their pf.conf need to make sure pfctl is updated along with their kernel. | |||
2003-06-09 | typo (need to check ti6 instead of ti) | Jun-ichiro itojun Hagino | |
2003-06-09 | backout following: | Jun-ichiro itojun Hagino | |
>use m_pulldown not m_pullup2. fix some bugs in IPv6 tcp_trace(). PR 3283 fixed (confirmed) | |||
2003-06-09 | Fix erroneous handling of i/o's during a reset. | Kenneth R Westerback | |
a) Set xs->status rather than cmd_tables->status because there will be no interrupt processing to move it from cmd_tables->status to xs->status. b) Set cmd_c.status to correct value (CMDST_SENSE_DONE) when an active sense command is reset. c) Don't put a reset command from the ready queue into the free_list twice, once in siop_scsicmd_end() and once manually. Condition a) meant that the scsi layer was seeing successfully completed i/o's (xs->error == XS_NOERROR) when they were in fact reset and should have had xs->error == XS_TIMEOUT or xs->error == XS_RESET. This meant lost data on output, and random or zero'ed data on input. Condition b) meant that the wrong bus_dmamap_sync() was called, though the actual action was apparently identical. Condition c) meant that the free_list could become corrupt. The problem was discovered by pb@ on a heavily loaded server that experienced timeouts. This fix was tested by pb@ and henric@ to prove it did not affect normal processing. If nothing else it will provide better error messages if the problem is ever encountered again. Probably a good candidate for -stable if pb@ can successfully reproduce his timeout problems and not have his server crash. | |||
2003-06-08 | snprintf needed here. | Miod Vallat | |
2003-06-08 | Returns the correct array size. | Cedric Berger | |
2003-06-08 | A table in an anchor creates a real anchor: pfctl -sA works. | Cedric Berger | |
The following two pfctl functions work with an "-a" option: - pfctl [-a foo[:bar]] -sT - pfctl [-a foo[:bar]] -FT ok dhartmei@ | |||
2003-06-08 | Enable gus again now that it won't panic during probe. | Miod Vallat | |
2003-06-08 | Fix probe for GUS MAX cards; from NetBSD. | Miod Vallat | |
mickey@ ok | |||
2003-06-08 | Do not hardcode the dma channel to 1, use the softc settings instead. | Miod Vallat | |
mickey@ ok | |||
2003-06-07 | print minor version as 02d; from Adam Montague via pr 3284; matches what ↵ | Michael Shalayeff | |
freebsd does as well | |||
2003-06-07 | Experimental support for Intel 31244 SATA, only parallel ATA mode yet; | Alexander Yurchenko | |
from NetBSD. | |||
2003-06-07 | Add a generic channel setup routine for SATA devices; from NetBSD | Alexander Yurchenko | |
2003-06-07 | sync | Alexander Yurchenko | |
2003-06-07 | Add 3DFX Voodoo5 and TI TSB43AB23 IEEE1394, found in dmesg from | Alexander Yurchenko | |
Alexandre H <openbsdah@wanadoo.fr>. | |||
2003-06-07 | sync | Alexander Yurchenko | |
2003-06-07 | Remove clause 3. | Hakan Olsson | |
2003-06-07 | Add a couple of Intel 875P chipset devices found in dmesg from | Alexander Yurchenko | |
Alexandre H <openbsdah@wanadoo.fr>. | |||
2003-06-06 | - section reorder | Jason McIntyre | |
- new sentence, new line - some macro fixes | |||
2003-06-06 | Do not bother taking care of the frame buffer flags in the softc, if the | Miod Vallat | |
driver does not use any. Basically this changes all drivers but those that can handle a P4 card. | |||
2003-06-06 | Fix a copied constant, mention why a number doesnt match linux, remove | Dale Rahn | |
duplicated line. | |||
2003-06-06 | Add support for Intel ICH5/ICH5R IDE | Alexander Yurchenko | |
2003-06-06 | There is no point in flushing the data cache all the time. It just creates | Henric Jungheim | |
a lot of useless ecache traffic. testing by many ok jason@ | |||
2003-06-06 | Identify Pentium M CPU | Andreas Gunnarsson | |
Recognize more feature flags deraadt@ ok | |||
2003-06-06 | avoid M_WAIT in network stack; netbsd revision 1.13 | Jun-ichiro itojun Hagino | |
2003-06-06 | don't use M_WAIT in network stack. use M_PREPEND to keep m_pkthdr. | Jun-ichiro itojun Hagino | |
(netbsd revision 1.7) | |||
2003-06-06 | don't try to forward multicast packet to mif that went away; kame | Jun-ichiro itojun Hagino | |
2003-06-06 | initialize blocksize from the trigger_input routine; fixes a div by zero | Federico G. Schwindt | |
error. problem and patch by Gabriel Kihlman in PR/2856. millert@ ok. | |||
2003-06-05 | untils this is sync'ed, correctly set mixer_class for CMPCI_OUTPUT_CLASS. | Federico G. Schwindt | |
2003-06-05 | Cleanup and enable kauaiata DMA. Tables should be mostly sane | Dale Rahn | |
Please _TEST_. | |||
2003-06-05 | Faster ramdac operation, by reducing the delay between register writes, | Miod Vallat | |
according to some Power9x00 documentation. | |||
2003-06-05 | Cleanup: | Alexander Yurchenko | |
- don't include both sys/types.h and sys/param.h - spaces vs tab - kill trailing spaces ok drahn@ | |||
2003-06-05 | 3/4 knockout for peter galbavy | Theo de Raadt | |
2003-06-05 | ATA100 driver for apple's new machines, aka kauai. | Dale Rahn | |
This is working with udma on a 12" PBG4, but dma is disabled for now, too many hardcoded values. 'wdc...flags 0x1' will enable it. | |||
2003-06-04 | The IIi/e chips have a DMA sync register that we have been ignoring. This | Henric Jungheim | |
could lead to nasty races between PIO and DMA. tested by krw@ ok jason@ | |||
2003-06-04 | Delete UCB term 3. When there are other copyright owners, we affirm | Theo de Raadt | |
that we can see no legal situation under which they could require that term to remain (ie. This is equivelant to us taking the old UCB file, removing term 3 as specified by UCB, then re-applying each diff afterwards from the various authors) | |||
2003-06-04 | mop up some more 3/4 license issues | Theo de Raadt | |
2003-06-04 | 3/4 cleanup for aaron | Theo de Raadt | |