summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-09-15Two changes here.Dale Rahn
Verify that regions which were allocated by stealing are not returned to phys_map, perhaps before phys_map is initialized. Not seen to be a problem, but is potentially. Also, the system can deal with not having the devices mapped with BATs. In fact after some testing the systems seem more stable when BATs are not used for devices. Stop using them, at least for now.
2001-09-15If ddb cannot find a symbol, do not print a useless address ofDale Rahn
?+(64k), instead print 0+0x<address>, at least that is useful.
2001-09-15Add a timer to reinable the OHCI RHSC (Root Hub Status Change)Dale Rahn
interrupt after one second. Originally the interrupt was disabled permanently after it fired once. This causes futher hot plug/removals to stop working. However the interrupt will fire several times in succession as a device is inserted/removed. This effectively debounces the interrupt. Apparently only some systems actually plug directly into the root hub: Most PCI cards do not, however newer apple motherboards all do. This was sent around for review some time back and again recently, this time with no feedback.
2001-09-15Some cleanup in loader.c, initialize the symbol pointer with NULL,Dale Rahn
add a missing initialization of the sym pointer. Add some functionality which allows a program to open itself dlopen(NULL), so that it can then look up symbols in the executable itself. Note that the program can only access exported variables, either by exporting all variables with the ld option -E or externally referrenced. Fix bug in dlsym() where it would return failure when looking up symbols. It was testing the offset of the found symbol, not if the symbol was found.
2001-09-15Revert the sleep priority to something more saneMike Frantzen
(the previous priority didn't help performance in tests on a hacked up BPF and it weighed down the load average)
2001-09-15fix a pasto, fix pr 1969Michael Shalayeff
2001-09-15add mtu description, from Phil Pennock <Phil.Pennock@globnix.org>Michael Shalayeff
2001-09-15fix unknown codec id printoutMichael Shalayeff
2001-09-15Don't use m_pkthdr.rcvif in pflog_packet(), it doesn't work for outgoingDaniel Hartmeier
packets and is obviously invalid (and not NULL) for IPv6 packets (hence crashed). Pass ifp down instead. sizeof(ih) instead of sizeof(&ih) for pf_pull_hdr() from pf_test6().
2001-09-15Obvious omissions.Miod Vallat
2001-09-15describe pflogd usage; canacar@eee.metu.edu.tr, ok deraadt@Jakob Schlyter
2001-09-15add EXAMPLES section; canacar@eee.metu.edu.tr, ok deraadt@Jakob Schlyter
2001-09-15prototype cleanupTheo de Raadt
2001-09-15Rewrite of powerpc pmap_page_protect(), the old version had a couple ofDale Rahn
possible bugs in it which could cause the code to spin indefinately attempting to remove all mappings for a page. This is now able to survive a paging death program and additional other testing.
2001-09-15Parse bug, found by wilfried@Daniel Hartmeier
2001-09-15merge with netbsd (no external differences... basically just makes diffs easier)Jason Wright
2001-09-15match ebusIII (from netbsd)Jason Wright
2001-09-15syncJason Wright
2001-09-15SUN GEMJason Wright
2001-09-15IPv6 support from Ryan McBride (mcbride@countersiege.com)Mike Frantzen
2001-09-15reimplement dbdma such that it does memory allocationsMichael Shalayeff
w/ bus_dma(9) and rework drivers accordingly. make drivers use bus_dma as well, except for if_bm (later ;) . additionally, sync wdc_obio w/ netbsd. drahn@ ok, tested by miod@, pval@, brad@, mickey@
2001-09-15pass the dma tag to obio; drahn@ okMichael Shalayeff
2001-09-15implement _bus_dmamap_load_raw; drahn@ okMichael Shalayeff
2001-09-15Fix typo--have a cow not a monkey; bk@rt.fmTodd C. Miller
2001-09-14add "options insecure[12]" support for /etc/resolv.conf.Jun-ichiro itojun Hagino
insecure1 is necessary for IPv6 dynamic DNS server discovery, draft-ietf-ipngwg-dns-discovery-02.txt. sync with kame. ok'ed by angelos
2001-09-14binat non icmp/udp/tcp protocols as well; ok dhartmei@jasoni
2001-09-14typo. Those are named 4byte/2byte, no s.Marc Espie
2001-09-14syncTheo de Raadt
2001-09-14command=xxx overwrites subsystems, tooMarkus Friedl
2001-09-14typoMarkus Friedl
2001-09-14simplify userretArtur Grabowski
2001-09-14Simplify what should be userret, but is inlined instead.Artur Grabowski
2001-09-14Don't just use 'size'. Use SIZE and make it settable.Artur Grabowski
2001-09-14Simplify userret.Artur Grabowski
2001-09-14simplify userretArtur Grabowski
2001-09-14Unbreak trap(), simplify userret().Artur Grabowski
2001-09-14Fix fallout from round_page fixes.Artur Grabowski
2001-09-14Fix compilation errorsArtur Grabowski
2001-09-14Simplify userret.Artur Grabowski
2001-09-14Simplify userret.Artur Grabowski
2001-09-14Cross-tools changes:Federico G. Schwindt
o Enable c++. o Add missing lib/apache/xml/include directory. o Use lorder from /usr/bin. art@, mickey@ ok.
2001-09-14Instead of defning our own AS, define FPSPAS.Artur Grabowski
Instead of cc, use CC. This allows cross-compile.
2001-09-13Prototype changed.Angelos D. Keromytis
2001-09-13Simplify userret.Artur Grabowski
2001-09-13Remove a comment that just doesn't make any sense.Artur Grabowski
2001-09-13Simplify userret, modelled after alpha.Artur Grabowski
2001-09-13Change nsops to u_int to match prototype as discussed with millert@.Federico G. Schwindt
2001-09-13Bind MSA port to localhost as well; noted by fgs@Todd C. Miller
2001-09-13In sys_semop(), change local nsops to size_t to avoid ending with aFederico G. Schwindt
negative value if a sufficiently big number is used, thus passing the check. From NetBSD.
2001-09-13The vgafb driver does not test memory, so no point mapping it during the probe.Dale Rahn
Also, there is no point in mapping more than the 'visual' area for vga memory. this will save kvm space on large memory display cards.