]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
16 years agoEliminate gcc "variable clobbered" warnings by declaring the variables
dds [Sun, 16 Dec 2007 17:47:34 +0000 (17:47 +0000)]
Eliminate gcc "variable clobbered" warnings by declaring the variables
living across the vfork as volatile.

Noted by: kan

16 years agoRemove cxgb module from build until I can compensate for the lack of header
kmacy [Sun, 16 Dec 2007 17:43:40 +0000 (17:43 +0000)]
Remove cxgb module from build until I can compensate for the lack of header
pollution on architectures other than amd64

16 years agoReport CFA extension, CFA -> (Compact) Flash Association
phk [Sun, 16 Dec 2007 15:11:40 +0000 (15:11 +0000)]
Report CFA extension, CFA -> (Compact) Flash Association

16 years agoWhen moving a directory across devices to a place where a directory
dds [Sun, 16 Dec 2007 14:14:31 +0000 (14:14 +0000)]
When moving a directory across devices to a place where a directory
with the same name exists, delete that directory first, before performing
the copy.  This ensures that mv(1) across devices follows the semantics
of rename(2), as required by POSIX.

This change could introduce the potential of data loss, even if the
copy fails, violating the atomicity properties of rename(2).  This is
(mostly) mitigated by first renaming the destination and obliterating
it only after a succesfull copy.

The above logic also led to the introduction of code that will cleanup
the results of a partial copy, if a cross-device copy fails.

PR: bin/118367
MFC after: 1 month

16 years agoAutogenerate hardware notes for hptrr(4).
bmah [Sun, 16 Dec 2007 13:14:47 +0000 (13:14 +0000)]
Autogenerate hardware notes for hptrr(4).

16 years ago- Don't return 0xffff if PHY id isn't equal 0. This allows PHYs with
stas [Sun, 16 Dec 2007 12:57:12 +0000 (12:57 +0000)]
- Don't return 0xffff if PHY id isn't equal 0. This allows PHYs with
  non-zero addresses to be used.

Approved by: cognet
MFC after: 2 weeks

16 years ago- Add quirk for the TrendNet TU-S9 adapter, which uses new version of PL2303
stas [Sun, 16 Dec 2007 12:39:50 +0000 (12:39 +0000)]
- Add quirk for the TrendNet TU-S9 adapter, which uses new version of PL2303
  chip (revision 0x400). This allows it to be correctly identified as PL2303X.

Approved by: maxim
MFC after: 1 week

16 years agoVerify that the moved source is no longer there.
dds [Sun, 16 Dec 2007 08:25:34 +0000 (08:25 +0000)]
Verify that the moved source is no longer there.

16 years agoRegression tests for upcoming makeup of mv.
dds [Sun, 16 Dec 2007 08:11:38 +0000 (08:11 +0000)]
Regression tests for upcoming makeup of mv.
Case 20 corresponds to PR bin/118367.

16 years agoMake the reported number of tests match their actual number.
dds [Sun, 16 Dec 2007 08:02:09 +0000 (08:02 +0000)]
Make the reported number of tests match their actual number.
This fixes the reporting under prove(1)

16 years agocd to the correct directory so that the tests can be run from prove(1)
dds [Sun, 16 Dec 2007 07:55:33 +0000 (07:55 +0000)]
cd to the correct directory so that the tests can be run from prove(1)

16 years agoAdd a missing mutex unlock.
scottl [Sun, 16 Dec 2007 07:49:44 +0000 (07:49 +0000)]
Add a missing mutex unlock.

Reported by: Michael Jung

16 years agoturn off building of cxgb properly ... sigh
kmacy [Sun, 16 Dec 2007 07:44:08 +0000 (07:44 +0000)]
turn off building of cxgb properly ... sigh

16 years agoDon't use old-style mbuf iovecs
kmacy [Sun, 16 Dec 2007 07:41:57 +0000 (07:41 +0000)]
Don't use old-style mbuf iovecs

16 years agoUpdate tod_connect call to reflect updated interface
kmacy [Sun, 16 Dec 2007 07:37:48 +0000 (07:37 +0000)]
Update tod_connect call to reflect updated interface

16 years agodisable cxgb build to prevent tinderbox whining
kmacy [Sun, 16 Dec 2007 07:36:35 +0000 (07:36 +0000)]
disable cxgb build to prevent tinderbox whining

16 years agoo Get missed "%" in output back.
maxim [Sun, 16 Dec 2007 07:18:59 +0000 (07:18 +0000)]
o Get missed "%" in output back.

Submitted by: sem
MFC after: 1 week

16 years agoMove arp update upcall to always be called for ARP replies - previous invocation
kmacy [Sun, 16 Dec 2007 06:42:33 +0000 (06:42 +0000)]
Move arp update upcall to always be called for ARP replies - previous invocation
would not always get called at the appropriate times

16 years agoRefactor select to reduce contention and hide internal implementation
jeff [Sun, 16 Dec 2007 06:21:20 +0000 (06:21 +0000)]
Refactor select to reduce contention and hide internal implementation
details from consumers.

 - Track individual selecters on a per-descriptor basis such that there
   are no longer collisions and after sleeping for events only those
   descriptors which triggered events must be rescaned.
 - Protect the selinfo (per descriptor) structure with a mtx pool mutex.
   mtx pool mutexes were chosen to preserve api compatibility with
   existing code which does nothing but bzero() to setup selinfo
   structures.
 - Use a per-thread wait channel rather than a global wait channel.
 - Hide select implementation details in a seltd structure which is
   opaque to the rest of the kernel.
 - Provide a 'selsocket' interface for those kernel consumers who wish to
   select on a socket when they have no fd so they no longer have to
   be aware of select implementation details.

Tested by: kris
Reviewed on: arch

16 years ago - Don't depend on header pollution to declare struct thread.
jeff [Sun, 16 Dec 2007 06:12:53 +0000 (06:12 +0000)]
 - Don't depend on header pollution to declare struct thread.

16 years agoFix tinderbox on sun4v
kmacy [Sun, 16 Dec 2007 06:07:34 +0000 (06:07 +0000)]
Fix tinderbox on sun4v
include cpufunc.h so that nanoseconds(void) is defined

16 years agoMakefile for the TCP offload module
kmacy [Sun, 16 Dec 2007 05:40:18 +0000 (05:40 +0000)]
Makefile for the TCP offload module

16 years agoDon't use old style mbuf iovec interface
kmacy [Sun, 16 Dec 2007 05:34:18 +0000 (05:34 +0000)]
Don't use old style mbuf iovec interface

16 years agoUpdate the toedev's connect interface to reflect the fact that the inpcb
kmacy [Sun, 16 Dec 2007 05:30:21 +0000 (05:30 +0000)]
Update the toedev's connect interface to reflect the fact that the inpcb
doesn't cache the rtentry in HEAD.

16 years agoAdd driver for TCP offload
kmacy [Sun, 16 Dec 2007 05:27:26 +0000 (05:27 +0000)]
Add driver for TCP offload

Sponsored by: Chelsio Inc.

16 years agoUpdate the buffer management support code needed by the tcp offload module
kmacy [Sun, 16 Dec 2007 05:19:48 +0000 (05:19 +0000)]
Update the buffer management support code needed by the tcp offload module

16 years agoSanitize of a routine that is going away
kmacy [Sun, 16 Dec 2007 05:14:25 +0000 (05:14 +0000)]
Sanitize of a routine that is going away

16 years agooverlead mbuf fields for use by toe
kmacy [Sun, 16 Dec 2007 05:11:42 +0000 (05:11 +0000)]
overlead mbuf fields for use by toe

16 years agoAdd system includes for mvec.h
kmacy [Sun, 16 Dec 2007 05:11:10 +0000 (05:11 +0000)]
Add system includes for mvec.h

16 years agoAdd socket option for setting and retrieving the congestion control algorithm.
kmacy [Sun, 16 Dec 2007 03:30:07 +0000 (03:30 +0000)]
Add socket option for setting and retrieving the congestion control algorithm.
The name used is to allow compatibility with Linux.

16 years agoMake files under src/sys/powerpc/aim, as well as Open Firmware related
marcel [Sun, 16 Dec 2007 01:02:47 +0000 (01:02 +0000)]
Make files under src/sys/powerpc/aim, as well as Open Firmware related
files dependent upon option/cpu AIM. This is in preparation of adding
support for Book-E (e500) support.

Obtained from: Juniper, Semihalf

16 years ago - Define lpohead even if userspace includes this file.
jeff [Sun, 16 Dec 2007 00:52:32 +0000 (00:52 +0000)]
 - Define lpohead even if userspace includes this file.

16 years agoRename OEA to AIM. The former means nothing as it applies to all
marcel [Sun, 16 Dec 2007 00:45:56 +0000 (00:45 +0000)]
Rename OEA to AIM. The former means nothing as it applies to all
processors (it's the PowerPC Operating Environment Architecture).
AIM designates the processors made by the Apple-IBM-Motorola
alliance and those we typically support.

While here, remove the NetBSD option IPKDB. It's not an option
used by us. Also, PPC_HAVE_FPU is not used by us either. Remove
that too.

Obtained from: Juniper, Semihalf

16 years ago- fix tab to space issue, hmm maybe I should use vi.
rrs [Sat, 15 Dec 2007 23:14:53 +0000 (23:14 +0000)]
- fix tab to space issue, hmm maybe I should use vi.

16 years ago - Re-implement lock profiling in such a way that it no longer breaks
jeff [Sat, 15 Dec 2007 23:13:31 +0000 (23:13 +0000)]
 - Re-implement lock profiling in such a way that it no longer breaks
   the ABI when enabled.  There is no longer an embedded lock_profile_object
   in each lock.  Instead a list of lock_profile_objects is kept per-thread
   for each lock it may own.  The cnt_hold statistic is now always 0 to
   facilitate this.
 - Support shared locking by tracking individual lock instances and
   statistics in the per-thread per-instance lock_profile_object.
 - Make the lock profiling hash table a per-cpu singly linked list with a
   per-cpu static lock_prof allocator.  This removes the need for an array
   of spinlocks and reduces cache contention between cores.
 - Use a seperate hash for spinlocks and other locks so that only a
   critical_enter() is required and not a spinlock_enter() to modify the
   per-cpu tables.
 - Count time spent spinning in the lock statistics.
 - Remove the LOCK_PROFILE_SHARED option as it is always supported now.
 - Specifically drop and release the scheduler locks in both schedulers
   since we track owners now.

In collaboration with: Kip Macy
Sponsored by: Nokia

16 years agofix bonehead cut and paste error in last commit
kmacy [Sat, 15 Dec 2007 22:06:23 +0000 (22:06 +0000)]
fix bonehead cut and paste error in last commit

16 years agoMove NIC driver (cxgb) into its own directory. Add toecore to support
kmacy [Sat, 15 Dec 2007 22:03:19 +0000 (22:03 +0000)]
Move NIC driver (cxgb) into its own directory. Add toecore to support
registering different TOMs.

16 years agoImport updated support code for the TOM (tcp offload module).
kmacy [Sat, 15 Dec 2007 21:54:59 +0000 (21:54 +0000)]
Import updated support code for the TOM (tcp offload module).

16 years agoCreate separate capability flags for TCP over IPv4 and TCP over IPv6
kmacy [Sat, 15 Dec 2007 21:01:48 +0000 (21:01 +0000)]
Create separate capability flags for TCP over IPv4 and TCP over IPv6

16 years agoadd interface capability for TOE
kmacy [Sat, 15 Dec 2007 20:22:09 +0000 (20:22 +0000)]
add interface capability for TOE

16 years agomake naming prefixes consistent across tom_info
kmacy [Sat, 15 Dec 2007 20:20:08 +0000 (20:20 +0000)]
make naming prefixes consistent across tom_info

16 years agoadd compile option to remove extra branch introduced by tcp offload support code
kmacy [Sat, 15 Dec 2007 19:53:35 +0000 (19:53 +0000)]
add compile option to remove extra branch introduced by tcp offload support code

16 years agoRegression tests for csqrt(3).
das [Sat, 15 Dec 2007 09:16:26 +0000 (09:16 +0000)]
Regression tests for csqrt(3).

16 years ago1. Add csqrt{,f}(3).
das [Sat, 15 Dec 2007 08:39:03 +0000 (08:39 +0000)]
1. Add csqrt{,f}(3).
2. Put carg{,f}(3) under the FBSD_1.1 namespace where it belongs
   (requested by kan@)

16 years agoImplement and document csqrt(3) and csqrtf(3).
das [Sat, 15 Dec 2007 08:38:44 +0000 (08:38 +0000)]
Implement and document csqrt(3) and csqrtf(3).

16 years agoAdd sqrt() to the first table in the manpage. It seems it was accidentally
das [Sat, 15 Dec 2007 02:40:10 +0000 (02:40 +0000)]
Add sqrt() to the first table in the manpage. It seems it was accidentally
omitted.

16 years agoAdd the 'hptrr' driver for supporting the following Highpoint RocketRAID
scottl [Sat, 15 Dec 2007 00:56:17 +0000 (00:56 +0000)]
Add the 'hptrr' driver for supporting the following Highpoint RocketRAID
cards:

     o   RocketRAID 172x series
     o   RocketRAID 174x series
     o   RocketRAID 2210
     o   RocketRAID 222x series
     o   RocketRAID 2240
     o   RocketRAID 230x series
     o   RocketRAID 231x series
     o   RocketRAID 232x series
     o   RocketRAID 2340
     o   RocketRAID 2522

Many thanks to Highpoint for their continued support of FreeBSD.

Submitted by: Highpoint

16 years agoSort.
marcel [Fri, 14 Dec 2007 23:47:39 +0000 (23:47 +0000)]
Sort.

16 years agoThis file was repocopied to src/sys/powerpc/aim, where it will
marcel [Fri, 14 Dec 2007 23:03:48 +0000 (23:03 +0000)]
This file was repocopied to src/sys/powerpc/aim, where it will
live on -- an afterlife.

16 years agoUpdate file list after repocopying select files from
marcel [Fri, 14 Dec 2007 23:00:15 +0000 (23:00 +0000)]
Update file list after repocopying select files from
src/sys/powerpc/powerpc to src/sys/powerpc/aim.

16 years agoForced commit to record that this file was repocopied from
marcel [Fri, 14 Dec 2007 22:39:35 +0000 (22:39 +0000)]
Forced commit to record that this file was repocopied from
src/sys/powerpc/powerpc and modified for its new location.

16 years agoAdd comment to pc_cp_time.
obrien [Fri, 14 Dec 2007 22:20:10 +0000 (22:20 +0000)]
Add comment to pc_cp_time.

16 years agoTypo
des [Fri, 14 Dec 2007 21:58:58 +0000 (21:58 +0000)]
Typo

16 years agostyle.Makefile(5)
obrien [Fri, 14 Dec 2007 21:30:51 +0000 (21:30 +0000)]
style.Makefile(5)

16 years agoIncrement the version namespace for 8.0-current. New symbols and
deischen [Fri, 14 Dec 2007 20:49:06 +0000 (20:49 +0000)]
Increment the version namespace for 8.0-current.  New symbols and
symbols whose ABI has changed should be added to FBSD_1.1.

16 years agoRemove unused file.
marcel [Fri, 14 Dec 2007 19:59:53 +0000 (19:59 +0000)]
Remove unused file.

16 years agoo Markup and grammar fixes.
maxim [Fri, 14 Dec 2007 14:34:26 +0000 (14:34 +0000)]
o Markup and grammar fixes.

16 years agoMinor style consistency improvements.
rwatson [Fri, 14 Dec 2007 12:19:40 +0000 (12:19 +0000)]
Minor style consistency improvements.

16 years agoClean up namespace violations.
des [Fri, 14 Dec 2007 10:26:58 +0000 (10:26 +0000)]
Clean up namespace violations.

MFC after: 1 week

16 years agoGive a better description when a install of multiple files fails
edwin [Fri, 14 Dec 2007 08:46:57 +0000 (08:46 +0000)]
Give a better description when a install of multiple files fails
because of the absence of a destination directory or if the
"destination directory" is not a directory.

PR: bin/11826
Submitted by: Denis Eremenko <moonshade@pnhz.kz>
Approved by: grog@
X-MFC after: various freezes

16 years agoUpdate the standards section, and make a minor clarification about the
das [Fri, 14 Dec 2007 07:53:09 +0000 (07:53 +0000)]
Update the standards section, and make a minor clarification about the
return value of sqrt.

16 years ago1. Add function pthread_mutex_setspinloops_np to turn a mutex's spin
davidxu [Fri, 14 Dec 2007 06:25:57 +0000 (06:25 +0000)]
1. Add function pthread_mutex_setspinloops_np to turn a mutex's spin
   loop count.
2. Add function pthread_mutex_setyieldloops_np to turn a mutex's yield
   loop count.
3. Make environment variables PTHREAD_SPINLOOPS and PTHREAD_YIELDLOOPS
   to be only used for turnning PTHREAD_MUTEX_ADAPTIVE_NP mutex.

16 years agoTypo in previous commit
das [Fri, 14 Dec 2007 03:08:10 +0000 (03:08 +0000)]
Typo in previous commit

16 years agoSymbol.map additions for carg and cargf. (They're in C99, so I didn't
das [Fri, 14 Dec 2007 03:06:50 +0000 (03:06 +0000)]
Symbol.map additions for carg and cargf. (They're in C99, so I didn't
add a new version for them.)

16 years agoLimit total hardware playback channels to just 1. The reliability of
ariff [Fri, 14 Dec 2007 02:16:26 +0000 (02:16 +0000)]
Limit total hardware playback channels to just 1. The reliability of
it's multi DAC / playback channels is not that good. Enabling vchans
make the bug more visible since playback allocation will look for
possible free hardware channels first (i.e: the next DAC, the very first
has been consumed by vchan mixer) which in this case has been proven faulty.

Tested by: Dominic Fandrey <LoN_Kamikaze at gmx dot de>
URL: http://lists.freebsd.org/pipermail/freebsd-stable/2007-December/039022.html

16 years agoAdd my all-time favorite quote, from one of my all-time favorite people.
wes [Fri, 14 Dec 2007 01:47:11 +0000 (01:47 +0000)]
Add my all-time favorite quote, from one of my all-time favorite people.

16 years agoAdd speaker/headphone controls for HP Compaq DC7700 Small Form Factor PC
ariff [Thu, 13 Dec 2007 15:48:45 +0000 (15:48 +0000)]
Add speaker/headphone controls for HP Compaq DC7700 Small Form Factor PC
@ ALC262.

Submitted by: Carlos A. M. dos Santos <unixmania at gmail dot com>

16 years agonid 28 for Acer @ ALC268 should be identified as analog CD input pin,
ariff [Thu, 13 Dec 2007 15:44:53 +0000 (15:44 +0000)]
nid 28 for Acer @ ALC268 should be identified as analog CD input pin,
though it doesn't provides proper (sane, valid, usable, etc) analog CD
playback due to its stripped down nature.

16 years agoImplement a workaround of the datacorruption problem on serverworks HT1000 chipsets.
sos [Thu, 13 Dec 2007 11:47:36 +0000 (11:47 +0000)]
Implement a workaround of the datacorruption problem on serverworks HT1000 chipsets.
The HT1000 DMA engine seems to not always like 64K transfers and sometimes barfs data all over memory leading to instant chrash and burn.
Also fix 48bit adressing issues, apparently newer chips needs 16bit writes and not the usual fifo thing.

HW donated by: Travis Mikalson at TerraNovaNet

16 years agoAdd the -H, -h and -P flags to vmstat. -P causes per-cpu output of
peter [Thu, 13 Dec 2007 02:36:11 +0000 (02:36 +0000)]
Add the -H, -h and -P flags to vmstat.  -P causes per-cpu output of
user/system/idle stats.  -h feeds the memory column through
humanize_number() to reduce the amount of column overflowing.  -H turns
this off.  -h is turned on by default if stdout is a tty.

16 years agouse ATH environment variable (when set) as the default interface name
sam [Thu, 13 Dec 2007 02:01:01 +0000 (02:01 +0000)]
use ATH environment variable (when set) as the default interface name

16 years agoSome overdue tlc:
sam [Thu, 13 Dec 2007 01:39:30 +0000 (01:39 +0000)]
Some overdue tlc:
o push include paths to the Makefile
o use the AFTER trick to simplify adding new items
o prepare stat blocks for additional data
o align values for verbose output
o fillin some missing stats

MFC after: 1 week

16 years agoFix error in previous commit - the style fix changed flag name without
kmacy [Thu, 13 Dec 2007 01:24:20 +0000 (01:24 +0000)]
Fix error in previous commit - the style fix changed flag name without
changing references to the flag

16 years agoupdate channel flag defs to match _ieee80211.h so cpp doesn't complain
sam [Thu, 13 Dec 2007 01:23:40 +0000 (01:23 +0000)]
update channel flag defs to match _ieee80211.h so cpp doesn't complain
about redefinitions

MFC after: 1 week

16 years agoOnly pass paths to directories or config files that exist for ldconfig for
jhb [Thu, 13 Dec 2007 00:51:01 +0000 (00:51 +0000)]
Only pass paths to directories or config files that exist for ldconfig for
32-bit binaries.

MFC after: 3 days

16 years agoBSDMAKE isn't really needed and was removed, so remove here
imp [Thu, 13 Dec 2007 00:09:43 +0000 (00:09 +0000)]
BSDMAKE isn't really needed and was removed, so remove here

16 years agoUpdate posix_openpt(3) to handle 512 ptys. This was missed in the earlier
jhb [Thu, 13 Dec 2007 00:08:59 +0000 (00:08 +0000)]
Update posix_openpt(3) to handle 512 ptys.  This was missed in the earlier
pty(4) changes.

MFC after: 3 days

16 years agoWe don't need to invent BSDMAKE. ${MAKE} is sufficient.
imp [Thu, 13 Dec 2007 00:08:02 +0000 (00:08 +0000)]
We don't need to invent BSDMAKE.  ${MAKE} is sufficient.

Submitted by: jmallet@

16 years agos/C90/C99/
das [Wed, 12 Dec 2007 23:50:00 +0000 (23:50 +0000)]
s/C90/C99/

16 years agoAdd a "STANDARDS" section.
das [Wed, 12 Dec 2007 23:49:40 +0000 (23:49 +0000)]
Add a "STANDARDS" section.

16 years agoImplement carg(3) and cargf(3).
das [Wed, 12 Dec 2007 23:43:51 +0000 (23:43 +0000)]
Implement carg(3) and cargf(3).

Rotting in an old src tree since: March 2005

16 years agoFix style issues with initial TCP offload commit
kmacy [Wed, 12 Dec 2007 23:31:49 +0000 (23:31 +0000)]
Fix style issues with initial TCP offload commit

Requested by: rwatson
Submitted by: rwatson

16 years agoadd interface for allowing consumers to register for ARP updates,
kmacy [Wed, 12 Dec 2007 20:53:25 +0000 (20:53 +0000)]
add interface for allowing consumers to register for ARP updates,
redirects, and path MTU changes

Reviewed by: silby

16 years agoAdd interface for tcp offload to syncache:
kmacy [Wed, 12 Dec 2007 20:35:59 +0000 (20:35 +0000)]
Add interface for tcp offload to syncache:
 - make neccessary changes to release offload resources when a syncache
   entry is removed before connection establishment
 - disable checks for offloaded connection where insufficient information
   is available

Reviewed by: silby

16 years agoDisallow the legacy USB circuit to generate an SMI# via an ICH
rpaulo [Wed, 12 Dec 2007 20:24:06 +0000 (20:24 +0000)]
Disallow the legacy USB circuit to generate an SMI# via an ICH
register (MacBooks only).
This allows MacBooks to boot in SMP mode without any trick and solves
the timer problems with HZ=1000.

MFC after:    1 week

Reviewed by:    njl (mentor), jhb
Approved by:    njl (mentor), jhb

16 years agoAdd driver independent interface to offload active established TCP connections
kmacy [Wed, 12 Dec 2007 20:21:39 +0000 (20:21 +0000)]
Add driver independent interface to offload active established TCP connections

Reviewed by: silby

16 years agoIncrease control channel xmit queue to 128 packets.
mav [Wed, 12 Dec 2007 19:04:30 +0000 (19:04 +0000)]
Increase control channel xmit queue to 128 packets.
Previous value 16 was too small for real LAC as temporal activity
spike cound easily overflow queue demanding tunnel disconnection due
to possible state inconsistency.

16 years agoRemove license clause 3 to agree with the now-standard BSD license.
wes [Wed, 12 Dec 2007 18:33:06 +0000 (18:33 +0000)]
Remove license clause 3 to agree with the now-standard BSD license.

Prompted by: Glenn Halperin, Symbian Software

16 years agoDisable AC97 microphone channel. Due to the channel allocation priority
ariff [Wed, 12 Dec 2007 18:21:05 +0000 (18:21 +0000)]
Disable AC97 microphone channel. Due to the channel allocation priority
that favours true hardware channel, the first instance of recording
request will grab this channel (the first channel is being used as
vchan master). In many cases, it is not really work as intended and give
false impression of broken recording.

PR: kern/118546
MFC after: 3 days

16 years agoRegen.
ru [Wed, 12 Dec 2007 16:45:01 +0000 (16:45 +0000)]
Regen.

16 years agoFix markup nits.
ru [Wed, 12 Dec 2007 16:43:17 +0000 (16:43 +0000)]
Fix markup nits.

16 years agoOption depencies are (again) tracked automatically.
ru [Wed, 12 Dec 2007 16:42:03 +0000 (16:42 +0000)]
Option depencies are (again) tracked automatically.

16 years ago- Fix setting of MK_GSSAPI option by bsd.own.mk; its value should
ru [Wed, 12 Dec 2007 16:39:32 +0000 (16:39 +0000)]
- Fix setting of MK_GSSAPI option by bsd.own.mk; its value should
  default to the value of MK_KERBEROS unless set explicitly by
  WITH_GSSAPI/WITHOUT_GSSAPI.  (This introduces another type of
  MK_* variables which itself is questionable.)

- Teach tools/build/options/makeman script that generates the
  src.conf(5) manpage about the new type of MK_* variables.

- Fix broken logic in lib/Makefile.

16 years agoImplementing 'fallback' nsswitch source. 'fallback' source is used
bushman [Wed, 12 Dec 2007 10:08:03 +0000 (10:08 +0000)]
Implementing 'fallback' nsswitch source. 'fallback' source is used
when particular function can't be found in nsswitch-module. For
example, getgrouplist(3) will use module-supplied 'getgroupmembership'
function (which can work in an optimal way for such source as LDAP) and
will fall back to the stanard iterate-through-all-groups implementation
otherwise.

PR: ports/114655
Submitted by: Michael Hanselmann <freebsd AT hansmi DOT ch>
Reviewed by: brooks (mentor)

16 years agoRemove 3rd clause of license
phantom [Wed, 12 Dec 2007 07:43:23 +0000 (07:43 +0000)]
Remove 3rd clause of license

Per request of: glenn halperin at symbian.com

16 years agoRemove spurious timestamp check. RFC 1323 explicitly states that timestamps MAY
kmacy [Wed, 12 Dec 2007 06:11:50 +0000 (06:11 +0000)]
Remove spurious timestamp check. RFC 1323 explicitly states that timestamps MAY
be transmitted if negotiated.

16 years agoRewrite the DMA code paths from being an impenitrable maze of special cases
scottl [Wed, 12 Dec 2007 05:55:03 +0000 (05:55 +0000)]
Rewrite the DMA code paths from being an impenitrable maze of special cases
to a much saner and simplier unified code path.  Along the way, fix various
CAM nits and bugs so that the passthrough works correctly for all cases.

16 years agoSimplify vm_page_free_toq().
alc [Tue, 11 Dec 2007 21:20:34 +0000 (21:20 +0000)]
Simplify vm_page_free_toq().

16 years agoDocument BSDMAKE variable that was recently introduced. Also, since
imp [Tue, 11 Dec 2007 21:14:10 +0000 (21:14 +0000)]
Document BSDMAKE variable that was recently introduced.  Also, since
RELENG_7, the way to do a cross build changed from specifying only
TARGET_ARCH (which has an ambigous mapping to TARGET) to specifying
only TARGET (which has a unique mapping to TARGET_ARCH).  Update the
example to reflect this.

MFC After: 1 week (the example change only)

16 years agoFix typo in the comment
ache [Tue, 11 Dec 2007 20:39:32 +0000 (20:39 +0000)]
Fix typo in the comment