summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was generated by cvs2svn to compensate for changes in r97049,peter2002-05-21277-5940/+24153
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import ncurses-5.2-20020518 onto the vendor branch.peter2002-05-21280-5982/+24329
| | | | | | | | Obtained from: ftp://dickey.his.com/ncurses/
* | Spread the word of PowerPC.benno2002-05-212-2/+2
| |
* | MFi386: 1.398-1.399 (${MACHINE_ARCH}_dump.c -> dump_machdep.c)non2002-05-211-1/+1
| |
* | Spread the word of PowerPC.benno2002-05-211-1/+2
| |
* | Let this code know about PowerPC.benno2002-05-211-1/+1
| |
* | New release notes: ls(1) -m/-p/-x, sh(1) -C/-u, tabs(1).bmah2002-05-212-8/+28
| | | | | | | | Deleted release note: IFS.
* | Mark argc as __unused to silence GCC.tjr2002-05-211-1/+1
| |
* | Lock the writer socket across sorwakeup(fip->fi_writesock).tanimura2002-05-211-1/+3
| | | | | | | | Spotted by: peter
* | Build the tabs(1) utility.tjr2002-05-211-0/+1
| | | | | | | | PR: 36126
* | Add an implementation of the tabs(1) utility, as required by SUSv3.tjr2002-05-213-0/+388
| | | | | | | | PR: 36126
* | Catch up to tte.h changes.jake2002-05-211-2/+2
| |
* | Update tsb_tte_enter prototype per tsb.c rev 1.20.jake2002-05-211-1/+1
| |
* | Rewrite pmap_enter to avoid copying ttes in all cases.jake2002-05-212-111/+98
| | | | | | | | | | Pass the tte data to tsb_tte_enter instead of a whole tte, also to avoid copying.
* | There are still many broken nameservers out there in the wild. Evengshapiro2002-05-211-0/+1
| | | | | | | | | | | | | | | | | | | | though I would personally prefer to see the broken nameservers fixed instead of standards compliant applications work around them, I can't force FreeBSD users to help fight that battle. Submitted by: Damon Anton Permezel <dap@damon.com> MFC after: 2 days pending RE approval
* | Change parts of the source code to make it closer to style(9), mainlygad2002-05-213-1036/+1101
| | | | | | | | | | | | | | | | | | | | changing indentation and some comments. Main goal is not perfect style, but just to reduce differences with NetBSD. The object code is exactly the same after this change as before it (except for assert() statements which have moved). Reviewed by: /sbin/md5 on i386 Obtained from: NetBSD
* | Redefine the tte accessor macros to take a pointer to a tte, instead of thejake2002-05-215-84/+77
| | | | | | | | | | | | | | value of the tag or data field. Add macros for getting the page shift, size and mask for the physical page that a tte maps (which may be one of several sizes). Use the new cache functions for invalidating single pages.
* | Include machine/ia64_cpu.h because we use ia64_mf().marcel2002-05-211-0/+1
| | | | | | | | Submitted by: ru
* | Add gx(4) to the SEE ALSO.obrien2002-05-201-0/+1
| |
* | Avoid exposing struct if_clone and the sys/queue.h macros to userlandiedowse2002-05-201-0/+4
| | | | | | | | | | | | programs by restricting these to the case where _KERNEL is defined. Reviewed by: brooks (ages ago)
* | Fix whitespace nits, no content changes.bmah2002-05-202-2/+6
| |
* | New release notes: SA-02:24, SA-02:25.bmah2002-05-202-0/+38
| |
* | - Turn a few DIAGNOSTIC into INVARIANTS since they are really sanityarr2002-05-201-3/+3
| | | | | | | | checks.
* | - Turn a DIAGNOSTIC into an INVARIANTS since it's a sanity check. Usearr2002-05-201-2/+3
| | | | | | | | proper ``if'' statement style.
* | - Turn a #ifdef DIAGNOSTIC to #ifdef INVARIANTS as the code from this linearr2002-05-201-1/+1
| | | | | | | | | | | | through the #endif is really a sanity check. Reviewed by: jake
* | Use correct inactivity timeout of 2 minutes rather than 24 seconds due toimp2002-05-201-1/+1
| | | | | | | | | | | | bogons introduced at some point. Submitted by: thomas skibo
* | In witness_unlock(), when updating a lock list entry bucket, decrement thejhb2002-05-201-2/+2
| | | | | | | | | | count of lock list entries after we fixup the bucket of lock list entries. In theory we can remove the intr_disable/intr_restore() calls now.
* | Add a manual page for the spic(4) device driver and hook it in the build.will2002-05-202-0/+61
| | | | | | | | Reviewed by: ru
* | Add a bandaid so that sysctl kern.malloc works on sparc64.jake2002-05-201-1/+1
| |
* | In uma_zalloc_arg(), if we are performing a M_WAITOK allocation, ensurejhb2002-05-201-0/+7
| | | | | | | | | | | | | | that td_intr_nesting_level is 0 (like malloc() does). Since malloc() calls uma we can probably remove the check in malloc() for this now. Also, perform an extra witness check in that case to make sure we don't hold any locks when performing a M_WAITOK allocation.
* | - Allow witness_sleep() to be called when witness hasn't been initializedjhb2002-05-201-16/+8
| | | | | | | | | | | | | | | | | | | | | | yet. We just return without performing any checks. - Don't explicitly enter and exit critical sections when walking lock lists. We don't need a critical section to walk the list of sleep locks for a thread. We check to see if a spin lock list is empty before we walk it. If the list is empty we don't need to walk it. If it isn't then we already hold at least one spin lock and are already in a critical section and thus don't need our own explicit critical section.
* | Fix the td_intr_nesting_level check to work ok if a flag like M_ZERO isjhb2002-05-201-3/+1
| | | | | | | | passed in with M_WAITOK to malloc().
* | Subtle fix to the accept filter LRU code. In some cases, a newlysilby2002-05-202-2/+2
| | | | | | | | | | | | | | | | | | | | initialized socket with no qlimit was being passed in. In order to handle this case properly, we must not use >= when comparing queue sizes to qlimit. As a result of this improper handling, a panic could result in certain cases. PR: 38325 MFC after: 3 days
* | Add two FTP mirrors in France:roberto2002-05-202-0/+8
| | | | | | | | | | | | | | - ftp7 in Paris (ftp.club-internet.fr) - ftp8 in Stransbourg (ftp.u-strasbg.fr) MFC after: 1 day
* | Style.ru2002-05-201-3/+2
| |
* | Add SMP aware cache flushing functions, which operate on a single physicaljake2002-05-207-17/+327
| | | | | | | | | | page. These send IPIs if necessary in order to keep the caches in sync on all cpus.
* | Forward declare struct trapframe.jake2002-05-201-0/+2
| |
* | Forward declare struct thread.jake2002-05-201-0/+2
| |
* | De-inline the tlb demap functions. These were so big that gcc3.1 refusedjake2002-05-203-100/+144
| | | | | | | | to inline them anyway. ;)
* | Try to guess prefixlen for guessable cases.ume2002-05-201-0/+33
| | | | | | | | | | | | | | | | - /0 if matches ::/128 - /64 if matches 2000::/3 and lowermost 64 bit is all 0 - /128 if matches 2000::/3 and lowermost 64 bit is non-zero 0 Obtained from: KAME/NetBSD
* | Change two vput() that should have been vrele().mux2002-05-202-4/+4
| | | | | | | | Submitted by: iedowse
* | Bootstrap elf2aout(1) for sparc64; used to build sys/boot/sparc64/boot1.ru2002-05-203-3/+63
| |
* | Reconnect 21.troff to the build.ru2002-05-201-1/+1
| |
* | Build this document in a standard way.ru2002-05-201-30/+2
| |
* | Fixed roffing.ru2002-05-204-13/+19
| |
* | Use more common phrasing for the "request reviews" text. Add UFS EAs,rwatson2002-05-201-1/+3
| | | | | | | | POSIX.1e ACLs to the list of things I like to review changes for.
* | Add a note that NO_WERROR is a good idea for the time being due to therwatson2002-05-201-0/+8
| | | | | | | | compiler upgrade. People still seem to be tripping over this.
* | Regen after changing Device ID string for DaisyTech devices.sobomax2002-05-202-4/+4
| | | | | | | | MFC after: 1 week
* | Change Device ID string for DaisyTech devices.sobomax2002-05-201-1/+1
| | | | | | | | | | Submitted by: Olexander Kunytsa <kunia@istc.kiev.ua> MFC after: 1 week
* | Don't grab Giant around malloc(9) and free(9).phk2002-05-204-59/+44
| | | | | | | | | | | | | | | | Don't grab Giant around wakeup(9). Don't print verbose messages about each device found in geom_dev. Various cleanups. Sponsored by: DARPA & NAI Labs.
OpenPOWER on IntegriCloud