summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2000-10-04nothing uses this variableBrandon Creighton
2000-10-04push the right # of registers with pushr.Brandon Creighton
also removed some useless instructions
2000-10-04better (relative) definition of ${S}Brandon Creighton
undef SAREL
2000-10-04do not mess with rpb once it's initializedBrandon Creighton
2000-10-04- don't reassign rpb here, it is done elsewhereBrandon Creighton
- add code for VAX_BTYP_1303 systems, tested so far on hugh@'s ka53
2000-10-04add 53c94 to devsw/cnvtabBrandon Creighton
2000-10-04- add a romopen() here (just initializes rom_softc and devdata)Brandon Creighton
- check for VAX_TYP_MARIAH and BDEV_SDN (53C94 scsi) - use XXRPB instead of boothowto
2000-10-04eliminate some confusion between rpb and howto -- also make sure thatBrandon Creighton
the "dev()filename" notation is parsed.
2000-10-04relocate rpb higher in memory; move it out of the way of the incomingBrandon Creighton
kernel
2000-10-03do not build debug libs, ovewriting a possible setting in the mk.confMichael Shalayeff
2000-10-02fix missing \n. from doug@freebsd (sync with kame)Jun-ichiro itojun Hagino
2000-10-02fix typo in routing header address validation. from francis dupontJun-ichiro itojun Hagino
2000-10-01Complete raidframe support, support was incomplete before. Not knownDale S. Rahn
to be working, but was starting to configure before testing was stopped.
2000-09-30Whoops, forgot to list the 3c555 device ID under media selection parts.Aaron Campbell
2000-09-29Oops, time to learn how to countMiod Vallat
2000-09-29Check N command operand value to prevent a panic with large values.Miod Vallat
Problem found by Thomas Coffy <karma@bsdfr.org>
2000-09-29fix pasto in error printfMichael Shalayeff
2000-09-29Make sure there's enough data on the mbuf for the TCP/UDP ports (ifAngelos D. Keromytis
applicable) -- bug located thanks to a crashdump from HJungheim@vpnet.com
2000-09-29Don't use an SA payload for ADDFLOW/DELFLOW.Angelos D. Keromytis
2000-09-29- Add support for 3Com 3C555 MiniPCI.Aaron Campbell
- Clean up configuration flags mess. The MiniPCI adapters share some properties with the CardBus adapters.
2000-09-29Outgoing packets that hit IPsec will be IPF/IPNAT processed as well onAngelos D. Keromytis
the enc* interface, usually enc0; cedric@wireless-networks.com
2000-09-28Update compilation flags, make cross-compilation work.Miod Vallat
2000-09-28there is no pseudo-device random anymore, it's hardcoded in init_mainMichael Shalayeff
2000-09-28syncAaron Campbell
2000-09-28There is a 3c555 MiniPCI adapter, too; from NetBSD.Aaron Campbell
2000-09-28syncAaron Campbell
2000-09-28Add product ID for new CS4281 audio device found in IBM ThinkPad X20.Aaron Campbell
2000-09-28If this is a Davicom DM9102A and we're enabling the homePNA link, forceAaron Campbell
dc_link to 1 and don't activate the tick routine. Without this, dc_start() always thinks the link is down and never transmits in homePNA mode; from FreeBSD.
2000-09-28Make mouse support friendly with non-25line mode. Thanks mickey@ for reportingAaron Campbell
the problems.
2000-09-28Make sure a Copybuffer has been allocated successfully before we start doingAaron Campbell
things with it.
2000-09-28When allocating the unallocated file descriptors 0, 1 and 2 for suid execs,Artur Grabowski
don't do it by doing namei on /dev/null. The vnode for the executed file is locked and we had a race where other processes could lock the parent directories up to the root. When the executing process did the lookup on /dev/null it could deadlock on the root vnode while still holding the lock on the executed vnode. Also, it's really bad idea to depend on certain filesystem layout inside the kernel. Now we get the null device vnode by cdevvp(getnulldev(), ... Thanks to Matrin Portmann <map@infinitum.ch> for providing the (large) ktrace that allowed me to track this down. Fixes 1369.
2000-09-27replace MALLOC/FREE w/ malloc/free for non-constant-sized memory ↵Michael Shalayeff
allocations; art@ ok
2000-09-27Minimal optimization.Artur Grabowski
2000-09-27Fix checking for incoming packets when the remote gateway has beenAngelos D. Keromytis
fully specified in the flow.
2000-09-26Set the tdbi field in the pkthdr to NULL in MGETHDR -- avoids someAngelos D. Keromytis
panics in Alphas (probably others too).
2000-09-26Implement getnulldev that returns the dev_t for "/dev/null".Artur Grabowski
2000-09-26Don't use MALLOC/FREE on variable sized allocations.Artur Grabowski
2000-09-26Update to previous fix on ICMP messages coming on unnumberedAngelos D. Keromytis
interfaces: rather than picking *some* non-loopback IP address, do a routing lookup and use as source IP address the address of the outgoing interface. A nice side effect of this is that ICMPs generated as a result of packets received over IPsec will, in the common case, end up going back over IPsec (depends on what the SPD looks like of course). Thanks to fcusack@fcusack.com for testing and commenting on this.
2000-09-25do not do queue locking in get/put_ccb, since calling blocksMichael Shalayeff
have gotten it already locked appropriately. only try to satiate the command queue if there was a command interrupt, it seems it's quite well-behaving this way. dispose allocated resources if twe_attach() fails.
2000-09-25Support the i82562; from FreeBSD. Apparently nothing more needed than to matchAaron Campbell
its PCI device ID.
2000-09-25syncAaron Campbell
2000-09-25Add Intel i82562 PCI device ID. This is the Ethernet controller found on theAaron Campbell
Intel 815E motherboard; from FreeBSD.
2000-09-25once again bios does not return a correct segment limits for theMichael Shalayeff
pcibios segments. we work this around as we used to do in apm (; round segment size to the next 64k boundary.
2000-09-25on expiry of pmtu route, retry higher mtu. okay angelos@Niels Provos
2000-09-24For the Toshiba TOPIC95B CardBus controller, we must clear the socket and slotAaron Campbell
control registers at shutdown else we hang. Fixes it on my laptop, should help out espie@ on his Toshiba system too.
2000-09-24prevent memory leak in fdalloc; fix by greg@nest.cxNiels Provos
2000-09-23Angelos you forgot this one !!Chris Cappuccio
2000-09-22syncAaron Campbell
2000-09-22Add Conexant modemAaron Campbell
2000-09-22syncAaron Campbell