summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* There's no need to call pmap_vac_me_harder() in pmap_protect(), as itcognet2007-12-111-1/+0
| | | | | | already happened in pmap_modify_pv(). Submitted by: Mark Tinguely <tinguely AT casselton DOT net>
* Don't assume that make(1) is a bsd-like make program. It might not be. Thisimp2007-12-111-3/+5
| | | | | | only matters in the early stages of bootstrapping, of course, but gnu make can't handle bsd make Makefiles at all if they use any of the 'dot' directives, which src/Makefile has in abudnance.
* Fix calculation of descriptor tag checksums. According to ECMA-167, Part 4,markus2007-12-111-1/+1
| | | | | | | | | | 7.2.3, bytes 0-3 and 5-15 are used to calculate the checksum of a descriptor tag. PR: kern/90521 Submitted by: Björn König <bkoenig@cs.tu-berlin.de> Reviewed by: scottl Approved by: emax (mentor)
* Update for the 6.1.5 import.obrien2007-12-112-9/+133
|
* Fix LOR of thread lock and umtx's priority propagation mutex duedavidxu2007-12-113-17/+17
| | | | | | to the reworking of scheduler lock. MFC: after 3 days
* Enclose all code for macro ENQUEUE_MUTEX in do while statement, anddavidxu2007-12-111-5/+7
| | | | | | add missing brackets. MFC: after 1 day
* Add quirks for Netac Onlydisk 2000 USB disk.davidxu2007-12-113-0/+9
|
* + Open ctty in non-blocking mode to avoid hangs during open and close(waitingobrien2007-12-111-9/+20
| | | | | | | | | | | | | | for the port to drain). + Handle "*" as a priority properly. + Test what is free'ed. + Dynamically determine length vs. hardcoding it. + Free the previous message buffer (f_prevline) only after logging all the messages and just before the process exit. Also check f_prevline for NULL before using it. + The time displayed is not synchornized with the other log destinations. + Fix a comment. Obtained from: Juniper Networks
* This commit was generated by cvs2svn to compensate for changes in r174531,obrien2007-12-111-0/+3
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Do not fold -C*ABS<n> to ABS<-C*n> (i.e., do not move negative constantsobrien2007-12-111-0/+3
| | | | | | | | | | | | inside ABS expression). Obtained from: Richard Guenther <rguenther@suse.de> Approved by: core
* | Add 'COMM' column to a few more output modes of procstat(1). The onlyrwatson2007-12-104-20/+29
| | | | | | | | | | one it's missing from is the VM display, where there's really not room, and the file output display is looking quite cramped.
* | Bah, remove last vestiges of some statfs conversion fixes that aren't quitejhb2007-12-101-22/+10
| | | | | | | | | | | | ready for CVS yet that snuck into 1.68. Pointy hat to: jhb
* | Regenerated page that includes the WITH_GSSAPI knob.dougb2007-12-101-2/+12
| |
* | Hide the building and installation of libgssapi behind thedougb2007-12-104-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WITHOUT_KERBEROS knob. While GSS can be used for other things some third party software (most notably ports/x11/kdelibs3) takes the presence of libgssapi as an indication that kerberos is available, and attempts to link with the kerberos libs. If they are not available, the build will fail. Because you might want to use GSS but not kerberos, add a knob to re-enable it if WITHOUT_KERBEROS is present. Document the new knob, and the new behavior of WITHOUT_KERBEROS. Not objected and/or generally agreed to by: freebsd-arch Problem discussed/analyzed in: PR: ports/116484
* | Clean up VCS Ids.obrien2007-12-1045-134/+177
| |
* | Bump .Dd for r1.63; fix small nit from the same.ceri2007-12-101-2/+2
| |
* | Language nit.ceri2007-12-101-2/+2
| |
* | Add a bit more detailed description about a configurationphk2007-12-101-0/+20
| | | | | | | | | | | | file format and about using NAT "instances". Submitted by: "Andrey V. Elsukov" <bu7cher@yandex.ru>
* | Wake On Lan (WOL) infrastructuresam2007-12-103-4/+31
| | | | | | | | | | Submitted by: Stefan Sperling <stsp@stsp.name> Reviewed by: brooks
* | Reduce diff against RELENG_7.delphij2007-12-0953-5794/+2943
| | | | | | | | Obtained from: The FreeBSD Simplified Chinese Project
* | Allow bsdlabel to operate on labels that have at most 26 partitionsmarcel2007-12-091-3/+5
| | | | | | | | | | by virtue of there not being any (lower-case) letters avaliable for more partitions.
* | Decode as many or as few partition entries as the label claims theremarcel2007-12-091-1/+1
| | | | | | | | are. We have already checked it against the caller provided maxpart.
* | Fix a bug in the add verb, where we failed to keep the listmarcel2007-12-091-2/+2
| | | | | | | | | | of partitions in index-order. This is assumed by the APM, MBR and BSD partitioning schemes.
* | Commit the regenerated page that includes the WITHOUT_INSTALLLIB knob.dougb2007-12-091-3/+9
| |
* | Add a reasonable-sounding description of the WITHOUT_INSTALLLIB knob.dougb2007-12-091-0/+5
| |
* | Eliminate compilation warnings due to the use of non-static inlinesalc2007-12-095-8/+14
| | | | | | | | | | | | | | through the introduction and use of the __gnu89_inline attribute. Submitted by: bde (i386) MFC after: 3 days
* | Remove some test instrumentation. (The Symbol.map changes broke it anyway.)das2007-12-093-12/+0
| |
* | Fixes to avoid overzealous constant folding.das2007-12-091-13/+15
| |
* | Fix spelling.thompsa2007-12-092-8/+8
| | | | | | | | Obtained from: OpenBSD
* | gcc 4 does some overzealous constant folding, and since it doesn'tdas2007-12-091-1/+6
| | | | | | | | | | support FENV_ACCESS, that was causing this test to fail. Use a volatile to avoid the constant folding.
* | sc->ndis_tq variable is only initialized when a driver module is for wirelessthompsa2007-12-091-2/+4
| | | | | | | | | | | | | | NICs. PR: kern/118439 Submitted by: Weongyo Jeong
* | Fix handling of subnormals on i386/ia64/amd64.das2007-12-091-2/+0
| | | | | | | | PR: 85080
* | Fix an incorrect FreeBSD version test.scottl2007-12-091-1/+1
| |
* | Modify locking so that a single version of the driver src can be used on 6.xscottl2007-12-091-5/+22
| | | | | | | | and beyond.
* | Allow the targeted CPU type to be set via -mcpu instead ofmarius2007-12-091-5/+7
| | | | | | | | | | | | | | limiting to the hardcoded equivalent of -mcpu=ultrasparc. PR: 109510 MFC after: 3 months
* | Check for P_WEXIT before PHOLD() on a process in kstack and vm queryrwatson2007-12-091-0/+8
| | | | | | | | | | | | sysctls, as PHOLD() asserts !P_WEXIT. Reported by: Michael Plass <mfp49_freebsd at plass-family dot net>
* | Use a clever definition of __FBSDID to allow building on !FreeBSD systems.imp2007-12-091-2/+5
| |
* | If we are walking the IPv6 header chain and we hit an IPPROTO_NONEdwmalone2007-12-091-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | header, then don't try to pullup anything, because there is no next header if we hit IPPROTO_NONE. Set ulp to a non-NULL value so the search for an upper layer header terinates. This is based on Pekka's diagnosis, but I chose a simpler fix. PR: 115261 Submitted by: Pekka Savola <pekkas@netcore.fi> Reviewed by: mlaier MFC after: 2 weeks
* | Be more accurate in the maximum filesize, it's 4GB not 4.3GB.remko2007-12-091-1/+1
| | | | | | | | Reported by: njl
* | Backout previous commit, since it's done without maintainerskrion2007-12-0910-173/+1
| | | | | | | | | | | | | | approval. These changes were approved by adding it as port to ports/ tree, but not for src/. I talked to PR submitter and miwi@ some days ago and explained the reasons for it, the both were agree to add it to ports/ only.
* | Make it easier to experiment with alternate compression.obrien2007-12-091-8/+9
| | | | | | | | Reviewed by: kensmith
* | Be more consistant and use UNZIPPER everywhere.obrien2007-12-092-6/+5
| |
* | Add the 'pkg_search' script.obrien2007-12-0910-1/+173
| | | | | | | | | | | | This makes it easier to figure what packages you want to install. Submitted by: Matthias Schmidt <schmidtm @ mathematik . uni-marburg . de>
* | A few more cleanups.dougb2007-12-094-73/+70
| |
* | Move WARNS as ed(1) also is only WARNS = 2 clean in the !DES case.marius2007-12-091-1/+1
| | | | | | | | | | | | | | | | | | This fixes its compilation if MK_OPENSSL == no and also obsoletes release/Makefile rev. 1.192. The latter isn't reverted though as support for the fixit floppy and the rest of the boot floppies is scheduled to be deorbited anyway. Discussed with: kensmith
* | There is no list to stop, so dont use .El.remko2007-12-081-1/+0
| | | | | | | | Noticed by: brueffer
* | Remove redundant whitespace.remko2007-12-081-1/+1
| | | | | | | | Noticed by: brueffer
* | .Ed is not needed here, remove it.remko2007-12-081-1/+0
| | | | | | | | Noticed by: brueffer
* | Internal partitions can not be deleted or modified.marcel2007-12-081-2/+2
| |
* | Add an empty stop_cmd to the remaining scripts that don't startdougb2007-12-084-0/+4
| | | | | | | | daemons and don't already have one.
OpenPOWER on IntegriCloud