summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-13- rx buffer ring management (working)Jason Wright
- simplify/encapsulate fully transmit ring handling - initialize sc_xcvr to be auto - initial rx descriptor ring handling (doesn't work yet) status: firmware, boot, media, tx, and rx buffer management work (actual received frames don't... yet).
2001-04-13Remove debugging output, and some extra junk from the verbose output.Marc Espie
Prefix verbose output with pkg: so that we get a better idea what we're dealing with...
2001-04-13typo. ok deraadt@Jakob Schlyter
2001-04-13Define RL_USEIOSPACE in the PCI bus piece, not the common piece; thanks jason@Aaron Campbell
2001-04-13Oops, remove an unrelated debugging #if 0.Aaron Campbell
2001-04-13Disestablish the shutdownhook on detach.Aaron Campbell
2001-04-13bmtphy does not work perfect yet, but put it in anywaysTheo de Raadt
2001-04-13syncTheo de Raadt
2001-04-13silence printfs from media selection.Brad Smith
2001-04-13In cpu_fork, initialize the ipl of the new process toArtur Grabowski
run at IPL_0. From NetBSD.
2001-04-13bmtphyTheo de Raadt
2001-04-13Fix overflow in superblock. From FreeBSD.Grigoriy Orlov
FreeBSD's log: > The ffs superblock includes a 128-byte region for use by temporary > in-core pointers to summary information. An array in this region > (fs_csp) could overflow on filesystems with a very large number of > cylinder groups (~16000 on i386 with 8k blocks). When this happens, > other fields in the superblock get corrupted, and fsck refuses to > check the filesystem. > > Solve this problem by replacing the fs_csp array in 'struct fs' > with a single pointer, and add padding to keep the length of the > 128-byte region fixed. Update the kernel and userland utilities > to use just this single pointer. > > With this change, the kernel no longer makes use of the superblock > fields 'fs_csshift' and 'fs_csmask'. Add a comment to newfs/mkfs.c > to indicate that these fields must be calculated for compatibility > with older kernels. art@ ok.
2001-04-13Make PROCFS compile again on non-UVM systems, deraadt@ okMiod Vallat
2001-04-13add eephy man page; from patelTheo de Raadt
2001-04-13Minor typos & cleanup.Kenneth R Westerback
Fix a couple of missing closing quotes in the MBR partitioning routine. Ensure that all questions posed have a space after the closing ']'. makeing -> making. ok drahn@
2001-04-13missing \n in error messageKevin Steves
2001-04-13and again.Brad Smith
2001-04-13these files are supposed to be regenerated after pcidevs has been commitedBrad Smith
so that the correct RCS id is at the top.
2001-04-13Pull in (correct) support for LIVENGOOD fibre cards (some register locationsmjacob
changed between Wiseman && Livengood. Pull in support for the LIVENGOOD with a PHY (82543_CU) that supports 10/100/1000- this is the Intel PRO1000T. This depends on the Marvell phy support in mii. Do a bunch of ansification. Attempt to *still* keep the OpenBSD printf stuff sane, but this area needs some more cleanup. It'd probably be best to fork the OpenBSD code away from NetBSD.
2001-04-13Add support for the Marvell PHY that's on the Intel GigE cards.mjacob
2001-04-13Be more explicit about the Intel GigE cards.mjacob
2001-04-12Add support for:mouring
sftp [user@]host[:file [file]] - Fetch remote file(s) sftp [user@]host[:dir[/]] - Start in remote dir/ OK deraadt@
2001-04-12Minor nits:Todd C. Miller
"lower case" -> "lowecase", "upper case" -> "uppercase", "file system" -> "filesystem"
2001-04-12- initial rx buffer ring management routines and allocationJason Wright
- go ahead and initialized the rx filter (but don't enable RX just yet) - correct descriptor definition for txp_rx_desc (not the same size as any other descriptor) - definition of txp_rxbuf_desc
2001-04-12Actually document all capabilities that tip's remote.c accepts.Todd C. Miller
Most of the text cribbed from tip.1 since there is significant overlap in functionality with .tiprc. Also update parity default to bring in line with tip.c commit.
2001-04-12- complete rewrite of transmit routines (these really work, but needJason Wright
optimization) - add in IFF_OACTIVE and if_timer handling status: firmware, boot, media, and transmit working
2001-04-12robust port validation; ok markus@ jakob@Kevin Steves
2001-04-12typoMarkus Friedl
2001-04-12Change tip default from even parity to no parity which is more in lineTodd C. Miller
with user expectations.
2001-04-12implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)Markus Friedl
similar to RhostRSAAuthentication unless you enable (the experimental) HostbasedUsesNameFromPacketOnly option. please test. :)
2001-04-12Todd says we should not doc depricated behaviourTheo de Raadt
2001-04-12document shortcut; noted by bk@rt.fmTheo de Raadt
2001-04-12Replace delay(1) with an alpha_mb() since it just makes more sense. ok art@Nathan Binkert
2001-04-12Allow kernels with just MFS and no FFS. Fixes PR#323.Constantine Sapuntzakis
2001-04-12More.Hakan Olsson
2001-04-12Correct various faulty x509 deallocations. By Niklas and me.Hakan Olsson
2001-04-12Don't put the same message on the sendq twice. By niklas and me.Hakan Olsson
2001-04-12- sort of working transmit routines and tx interrupt handling, definatelyJason Wright
more to do here - be sure to set maximum packet size early - remove old debugging code and add new
2001-04-12show debug output during option processing, report from pekkas@netcore.fiMarkus Friedl
2001-04-12Remove a bogus __attribute__ ((unused)) from _splraise.Artur Grabowski
2001-04-12Require full name in MAINTAINER; espie@ ok, pointed out by aaron@Anil Madhavapeddy
2001-04-12Call isa_malloc with drq < 4, in case 8-bit DMA channels with moreConstantine Sapuntzakis
restrictive boundaries are used
2001-04-12The old code was broken and always allocated for a 16-bit DMA channel,Constantine Sapuntzakis
which has different alignment restrictions than the 8-bit DMA channel. Fix from NetBSD.
2001-04-12print phy model at startupTheo de Raadt
2001-04-12Insert some missing commas.Aaron Campbell
2001-04-11Mention more hardware supported by these drivers (sync with i386.htmlMiod Vallat
webpage), aaron@ ok
2001-04-11Xref siop(4), aaron@ okMiod Vallat
2001-04-11syncTheo de Raadt
2001-04-11implement the -e option into sshd:lebel
-e When this option is specified, sshd will send the output to the standard error instead of the system log. markus@ OK.
2001-04-11correct descriptor definitions for tx and fragJason Wright
(also fix CMD/RSP type fields)