Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-15 | Two 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-15 | If ddb cannot find a symbol, do not print a useless address of | Dale Rahn | |
?+(64k), instead print 0+0x<address>, at least that is useful. | |||
2001-09-15 | Add 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-15 | Some 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-15 | Revert the sleep priority to something more sane | Mike Frantzen | |
(the previous priority didn't help performance in tests on a hacked up BPF and it weighed down the load average) | |||
2001-09-15 | fix a pasto, fix pr 1969 | Michael Shalayeff | |
2001-09-15 | add mtu description, from Phil Pennock <Phil.Pennock@globnix.org> | Michael Shalayeff | |
2001-09-15 | fix unknown codec id printout | Michael Shalayeff | |
2001-09-15 | Don't use m_pkthdr.rcvif in pflog_packet(), it doesn't work for outgoing | Daniel 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-15 | Obvious omissions. | Miod Vallat | |
2001-09-15 | describe pflogd usage; canacar@eee.metu.edu.tr, ok deraadt@ | Jakob Schlyter | |
2001-09-15 | add EXAMPLES section; canacar@eee.metu.edu.tr, ok deraadt@ | Jakob Schlyter | |
2001-09-15 | prototype cleanup | Theo de Raadt | |
2001-09-15 | Rewrite of powerpc pmap_page_protect(), the old version had a couple of | Dale 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-15 | Parse bug, found by wilfried@ | Daniel Hartmeier | |
2001-09-15 | merge with netbsd (no external differences... basically just makes diffs easier) | Jason Wright | |
2001-09-15 | match ebusIII (from netbsd) | Jason Wright | |
2001-09-15 | sync | Jason Wright | |
2001-09-15 | SUN GEM | Jason Wright | |
2001-09-15 | IPv6 support from Ryan McBride (mcbride@countersiege.com) | Mike Frantzen | |
2001-09-15 | reimplement dbdma such that it does memory allocations | Michael 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-15 | pass the dma tag to obio; drahn@ ok | Michael Shalayeff | |
2001-09-15 | implement _bus_dmamap_load_raw; drahn@ ok | Michael Shalayeff | |
2001-09-15 | Fix typo--have a cow not a monkey; bk@rt.fm | Todd C. Miller | |
2001-09-14 | add "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-14 | binat non icmp/udp/tcp protocols as well; ok dhartmei@ | jasoni | |
2001-09-14 | typo. Those are named 4byte/2byte, no s. | Marc Espie | |
2001-09-14 | sync | Theo de Raadt | |
2001-09-14 | command=xxx overwrites subsystems, too | Markus Friedl | |
2001-09-14 | typo | Markus Friedl | |
2001-09-14 | simplify userret | Artur Grabowski | |
2001-09-14 | Simplify what should be userret, but is inlined instead. | Artur Grabowski | |
2001-09-14 | Don't just use 'size'. Use SIZE and make it settable. | Artur Grabowski | |
2001-09-14 | Simplify userret. | Artur Grabowski | |
2001-09-14 | simplify userret | Artur Grabowski | |
2001-09-14 | Unbreak trap(), simplify userret(). | Artur Grabowski | |
2001-09-14 | Fix fallout from round_page fixes. | Artur Grabowski | |
2001-09-14 | Fix compilation errors | Artur Grabowski | |
2001-09-14 | Simplify userret. | Artur Grabowski | |
2001-09-14 | Simplify userret. | Artur Grabowski | |
2001-09-14 | Cross-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-14 | Instead of defning our own AS, define FPSPAS. | Artur Grabowski | |
Instead of cc, use CC. This allows cross-compile. | |||
2001-09-13 | Prototype changed. | Angelos D. Keromytis | |
2001-09-13 | Simplify userret. | Artur Grabowski | |
2001-09-13 | Remove a comment that just doesn't make any sense. | Artur Grabowski | |
2001-09-13 | Simplify userret, modelled after alpha. | Artur Grabowski | |
2001-09-13 | Change nsops to u_int to match prototype as discussed with millert@. | Federico G. Schwindt | |
2001-09-13 | Bind MSA port to localhost as well; noted by fgs@ | Todd C. Miller | |
2001-09-13 | In sys_semop(), change local nsops to size_t to avoid ending with a | Federico G. Schwindt | |
negative value if a sufficiently big number is used, thus passing the check. From NetBSD. | |||
2001-09-13 | The 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. |