summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-11-18Due to a thinko on my part, (and a badly named structure member),Kjell Wooding
line numbers were horribly broken with pgup, pgdn. From peter de wachter, via debian bug#391827
2006-11-18- update commentNiall O'Higgins
2006-11-18Fix line number bug (actually, dot-mark bug). to reproduce:Kjell Wooding
-split window into two -open a file, set the mark -switch windows, open same file, exchange point-and-mark from peter de wachter (Debian bug#391827)
2006-11-18ixgb_get_buf():Brad Smith
- Use bus_dmamap_load_mbuf() instead of bus_dmamap_load() + mtod(). - Only BUS_DMASYNC_PREREAD is necessary for the bus_dmamap_sync(). ixgb_allocate_receive_structures(): - Clean up error handling for receive buffer allocation and just have everything done by ixgb_free_receive_structures() now. ixgb_free_receive_structures(): - A few changes here to allow this function to be called from ixgb_stop() as well as ixgb_allocate_receive_structures().
2006-11-18add a few commentsBrad Smith
2006-11-18fix commentsBrad Smith
2006-11-18Add Digiconnect WL591C.Mark Kettenis
2006-11-18- set descriptor DMA addresses before enabling TX and RXBrad Smith
- set RL_EARLY_TX_THRESH before starting TX and RX - clear a TX timeout only if all queued packets are handled - declare struct rl_txq separately - minor style tweaks in re_txeof() From tsutsui@NetBSD Tested by brad@, maja@ and kettenis@ Tested on amd64/armish/i386/sparc64
2006-11-18Fix table alignment in the hardware section.Marcus Glocker
2006-11-18Do not include <machine/frame.h> (forgotten when the former was removed).Miod Vallat
2006-11-18more fixes from bret lambert; ok pedroJason McIntyre
2006-11-18typos; from bret lambertJason McIntyre
2006-11-18remove the `a' stuff from here too;Jason McIntyre
2006-11-17syncTheo de Raadt
2006-11-17Move m88k memory copy and fill functions to libkern. The copy functions willMiod Vallat
no longer share the same code, but will be instead be duplicated from the same source, so that bcopy() and memcpy() do not need to check for overlap, and memcpy() and memmove() are shorter.
2006-11-17fix my bad wording;Jason McIntyre
2006-11-17more `a' (as in `a/b/g') removal; ok deraadtJason McIntyre
2006-11-17`<' -> \*(LtJason McIntyre
2006-11-17discourage .Tn;Jason McIntyre
2006-11-17.Ex these pages; ok millertJason McIntyre
2006-11-17Decide whether we need to attach the primary cpu by checking the CPUF_PRESENTMark Kettenis
flag just like we do on i386.
2006-11-17change PRE_Block to an int, which architectures like alpha can accessTheo de Raadt
atomically. Adapt all the others (except s390 which is not fixed yet). mips and hppa still do not work for some other reason. testing by beck, ckuethe, todd, asm proofreading by miod
2006-11-17Minor cleanup.Marcus Glocker
2006-11-17bad job of first importTheo de Raadt
2006-11-17KNFMarcus Glocker
2006-11-17Remove code that deals with sk(4) specific phy's that breaks certain msk(4)Mark Kettenis
variants. tested by jsg@
2006-11-17This is a very initial import for a driver which supports the IEEE 802.11Marcus Glocker
Broadcom BCM43xx chipset. Device attaches, but has no further functionality yet. The work has been done by Jon Simola <jsimola@gmail.com>, based on the existing bce(4) code. He will continue to work on the driver and try to make further progress. ok deraadt@
2006-11-17typo introduced last time; sparc support works againTheo de Raadt
2006-11-17Add code for AES acceleration. This is currently disabled withTom Cosgrove
`#undef CRYPTO' since it doesn't work properly yet. Committing in order to get it into the tree. "get it in" deraadt@
2006-11-17simplify synopsis and usage(); ok millertJason McIntyre
2006-11-17don't return undef, use plain return.Marc Espie
(return undef is only false in a scalar context) found my perlcritic, one of the few issues I agree with...
2006-11-17typos from bret lambert;Jason McIntyre
2006-11-17There is no need to set IN_CHANGE or IN_UPDATE when no on-disk data isPedro Martelletto
being touched, fixes PR 3634, okay mickey@, thib@ and beck@.
2006-11-17Handle EOF in interactive mode. Report and initial diff from Antti HarriBernd Ahlers
via tech@. Thanks! ok espie@
2006-11-17missing punctuation in comments; from bret lambertJason McIntyre
2006-11-17Support for multiple networks on one interface. Until now only the mainClaudio Jeker
address of a interface could be used. Now it is possible to specify a interface more than once if multiple networks are configured. An alternative network can be specified via e.g. interface em0:10.0.5.1. The old interface syntax without the IP still works and uses the main/first configured IP address. ospfd now needs to include the IP header on outgoing messages as it is not possible to specifiy the source address in sendto(2). Additionally all multicast joins and leaves have to be tracked. OK norby@
2006-11-17Fix a needless inversion of flag names; i.e. change them from theKjell Wooding
negative to the positive. undo_boundary_enable(TRUE) makes a LOT more sense than undo_no_boundary(FALSE). While here, whack a global, and fix a bug noted by otto: undoing a file insertion sometimes left stray characters around. ok beck@, otto@
2006-11-17er, as far as i know malo is only b/g, not a/b/gTheo de Raadt
2006-11-17Fix extracting and setting permissions for tar archives whenOtto Moerbeek
(multiple) -C options are present and/or (multiple) file selections args are used. Based on a diff in NetBSD PR 22995. Tested by ckuethe@ and jaredy@; ok jaredy@
2006-11-17sorry miod, but this version locks the machine up rather fastTheo de Raadt
2006-11-17Make getpeereid() work on both sides of a connection. The client can now getClaudio Jeker
the euid/egid of the server it connects to. The euid and egid are captured in the bind() call -- this is the equivalent of the client behaviour where the same thing is done in connect(). tested and ok espie@, ok henning@, go for it deraadt@
2006-11-17syncTheo de Raadt
2006-11-17usb hub found on ibm x3455; Srebrenko SehicTheo de Raadt
2006-11-17Fix typo to let this compile.Tom Cosgrove
2006-11-17Make sure we copy the IV back into the session structure, not theTom Cosgrove
softc. Fortunately this branch (when neither CRYPTO_F_IMBUF nor CRYPTO_F_IOV is specified) is not currently used. ok hshoexer@ jason@
2006-11-17fix a segfault on isearch. Using ^W to add more than NPAT chars to theKjell Wooding
search pattern had an off-by-one. Fix this and one other irritating behavior with long search patterns. Noted (similar diff proposed) and tested by deanna phillips
2006-11-17clarify the situationTheo de Raadt
2006-11-17Add a lower TX threshold value and use this when checking the number ofBrad Smith
available TX descriptors in the case that em_encap() has tried to reclaim descriptors. From Jack Vogel@Intel Tested by brad@, mk@, Gabriel Kihlman <gk at stacken dot kth dot se>, Johan Mson Lindman <tybollt at solace dot mh dot se> Tested on amd64/i386/sparc64
2006-11-17Reset the number of lines of tail context left to printJared Yanovich
before processing each file to avoid printing lines intended from the previous file. Reported and fix by Charles Longeau <chl@tuxfamily.org> via tech@. ok otto millert
2006-11-17move comment to a line where it makes more senseJun-ichiro itojun Hagino