| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
- Update hier(7) to reflect latest changes in mtree file.
- Add UPDATING entry following Intel firmwares inclusion.
Submitted by: mlaier
MFC after: 1 month
Notes:
svn path=/head/; revision=167169
|
|
|
|
|
|
|
|
|
|
| |
a note in UPDATING that tried to work around the build breakage.
Tested by: jhb
OK'ed by: njl
Notes:
svn path=/head/; revision=167146
|
|
|
|
|
|
|
| |
support for getnameinfo.
Notes:
svn path=/head/; revision=167123
|
|
|
|
|
|
|
| |
- Put URL on seperate line to not get very long lines.
Notes:
svn path=/head/; revision=166953
|
|
|
|
|
|
|
| |
Submitted by: ru
Notes:
svn path=/head/; revision=166949
|
|
|
|
|
|
|
| |
__FreeBSD_version bump.
Notes:
svn path=/head/; revision=166947
|
|
|
|
| |
Notes:
svn path=/head/; revision=166946
|
|
|
|
| |
Notes:
svn path=/head/; revision=166939
|
|
|
|
|
|
|
|
| |
There may be better ways to fix/work around these issues but this worked
for me.
Notes:
svn path=/head/; revision=166834
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without -n, we now only print a "network name" without the prefix length
under the following conditions:
1) the network address and mask matches a classful network prefix;
2) getnetbyaddr(3) returns a network name for this network address.
With -n, we unconditionally print the full unabbreviated CIDR network
prefix in the form "a.b.c.d/p". 0.0.0.0/0 is still printed as "default".
This change is in preparation for changes such as equal-cost multipath, and
to more generally assist operational deployment of FreeBSD as a modern IPv4
router. There are currently no plans to backport this change.
Discussed on: freebsd-net
Notes:
svn path=/head/; revision=166711
|
|
|
|
|
|
|
|
|
|
|
| |
Make PIM dynamically loadable by using encap_attach_func().
PIM may now be loaded into a GENERIC kernel.
Tested with: ports/net/pimdd && tcpreplay && wireshark
Reviewed by: Pavlin Radoslavov
Notes:
svn path=/head/; revision=166622
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
never used them; with mrouted, their functionality may be replaced by
explicitly configuring gif(4) instances and specifying them with the
'phyint' keyword.
Bump __FreeBSD_version to 700030, and update UPDATING.
A doc update is forthcoming.
Discussed on: net
Reviewed by: fenner
MFC after: 3 months
Notes:
svn path=/head/; revision=166549
|
|
|
|
| |
Notes:
svn path=/head/; revision=165460
|
|
|
|
| |
Notes:
svn path=/head/; revision=165237
|
|
|
|
|
|
|
| |
driver.
Notes:
svn path=/head/; revision=165234
|
|
|
|
|
|
|
| |
kernel modules.
Notes:
svn path=/head/; revision=164937
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
in every sense.
General
-------
- Multichannel safe, endian safe, format safe
* Large part of critical pcm filters such as vchan.c, feeder_rate.c,
feeder_volume.c, feeder_fmt.c and feeder.c has been rewritten so that
using them does not cause the pcm data to be converted to 16bit little
endian.
* Macrosses for accessing pcm data safely are defined within sound.h in
the form of PCM_READ_* / PCM_WRITE_*
* Currently, most of them are probably limited for mono/stereo handling,
but the future addition of true multichannel will be much easier.
- Low latency operation
* Well, this require lot more works to do not just within sound driver,
but we're heading towards right direction. Buffer/block sizing within
channel.c is rewritten to calculate precise allocation for various
combination of sample/data/rate size. As a result, applying correct
SNDCTL_DSP_POLICY value will achive expected latency behaviour simmilar
to what commercial 4front driver do.
* Signal handling fix. ctrl+c of "cat /dev/zero > /dev/dsp" does not
result long delay.
* Eliminate sound truncation if the sound data is too small.
DIY:
1) Download / extract
http://people.freebsd.org/~ariff/lowlatency/shortfiles.tar.gz
2) Do a comparison between "cat state*.au > /dev/dsp" and
"for x in state*.au ; do cat $x > /dev/dsp ; done"
- there should be no "perceivable" differences.
Double close for PR kern/31445.
CAVEAT: Low latency come with (unbearable) price especially for poorly
written applications. Applications that trying to act smarter
by requesting (wrong) blocksize/blockcount will suffer the most.
Fixup samples/patches can be found at:
http://people.freebsd.org/~ariff/ports/
- Switch minimum/maximum sampling rate limit to "1" and "2016000" (48k * 42)
due to closer compatibility with 4front driver.
Discussed with: marcus@ (long time ago?)
- All driver specific sysctls in the form of "hw.snd.pcm%d.*" have been
moved to their own dev sysctl nodes, notably:
hw.snd.pcm%d.vchans -> dev.pcm.%d.vchans
Bump __FreeBSD_version.
Driver specific
---------------
- Ditto for sysctls.
- snd_atiixp, snd_es137x, snd_via8233, snd_hda
* Numerous cleanups and fixes.
* _EXPERIMENTAL_ polling mode support using simple callout_* mechanisme.
This was intended for pure debugging and latency measurement, but proven
good enough in few unexpected and rare cases (such as problematic shared
IRQ with GIANT devices - USB). Polling can be enabled/disabled through
dev.pcm.0.polling. Disabled by default.
- snd_ich
* Fix possible overflow during speed calibration. Delay final
initialization (pcm_setstatus) after calibration finished.
PR: kern/100169
Tested by: Kevin Overman <oberman@es.net>
* Inverted EAPD for few Nec VersaPro.
PR: kern/104715
Submitted by: KAWATA Masahiko <kawata@mta.biglobe.ne.jp>
Thanks to various people, notably Joel Dahl, Yuriy Tsibizov, Kevin Oberman,
those at #freebsd-azalia @ freenode and others for testing.
Joel Dahl will do the manpage update.
Notes:
svn path=/head/; revision=164614
|
|
|
|
|
|
|
|
| |
from the build: mount_devfs, mount_ext2fs,
mount_fdescfs, mount_procfs, mount_linprocfs, and mount_std.
Notes:
svn path=/head/; revision=164528
|
|
|
|
|
|
|
| |
things break.
Notes:
svn path=/head/; revision=164304
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
wait (time waited to acquire) and hold times for *all* kernel locks. If
the architecture has a system synchronized TSC, the profiling code will
use that - thereby minimizing profiling overhead. Large chunks of profiling
code have been moved out of line, the overhead measured on the T1 for when
it is compiled in but not enabled is < 1%.
Approved by: scottl (standing in for mentor rwatson)
Reviewed by: des and jhb
Notes:
svn path=/head/; revision=164159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
except sun4v.
This change makes the transition from a default to an option more
transparent and is an attempt to head off all the compliants that are
likely from people who don't read UPDATING, based on experience with
the io/mem change.
Submitted by: scottl@
Notes:
svn path=/head/; revision=163710
|
|
|
|
|
|
|
|
|
|
| |
kernel configs except sun4v (which doesn't process signals properly
with KSE).
Reviewed by: davidxu@
Notes:
svn path=/head/; revision=163709
|
|
|
|
|
|
|
|
| |
Hint users to add "options COMPAT_FREEBSD6" to their kernel config
files, so that X.Org and friends still work without recompiling.
Notes:
svn path=/head/; revision=162897
|
|
|
|
|
|
|
|
|
| |
They may now be obtained from ports.
Discussed with: fenner, net@
Notes:
svn path=/head/; revision=162780
|
|
|
|
| |
Notes:
svn path=/head/; revision=162779
|
|
|
|
| |
Notes:
svn path=/head/; revision=162721
|
|
|
|
|
|
|
|
|
| |
PR: docs/103251
Submitted by: vd
MFC after: 3 days
Notes:
svn path=/head/; revision=162393
|
|
|
|
| |
Notes:
svn path=/head/; revision=162023
|
|
|
|
| |
Notes:
svn path=/head/; revision=161924
|
|
|
|
|
|
|
| |
MFC after: 1 week
Notes:
svn path=/head/; revision=161381
|
|
|
|
| |
Notes:
svn path=/head/; revision=160710
|
|
|
|
|
|
|
|
|
|
|
|
| |
part of
c4b, CAPI for BSD). This is a preparation to add CAPI for BSD to the source tree.
Approved by: hm (mentor)
MFC after: 2 weeks
Notes:
svn path=/head/; revision=160216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
OpenBSD. This driver seems to give a small performance increase, and
should lead to better maintainability in the future.
The nForce Ethernet-specific hack in sys/i386/xbox/xbox.c is still
required, judging from dev/nfe/if_nfe.c. The condition it hacks will
almost certainly only occur on XBOX-es anyway, so it is best left there.
Approved by: imp (mentor)
Notes:
svn path=/head/; revision=159997
|
|
|
|
|
|
|
|
|
|
| |
sysctlbyname() changes, so the new adjkerntz binary should be
used while in single-user mode.
Reviewed by: ceri, maxim
Notes:
svn path=/head/; revision=158601
|
|
|
|
| |
Notes:
svn path=/head/; revision=158574
|
|
|
|
| |
Notes:
svn path=/head/; revision=158513
|
|
|
|
|
|
|
|
|
| |
the overhaul of puc(4). On sparc64 people may end up without serial
console if they upgrade without adding scc(4) to their kernel
configuration file.
Notes:
svn path=/head/; revision=158281
|
|
|
|
| |
Notes:
svn path=/head/; revision=157578
|
|
|
|
| |
Notes:
svn path=/head/; revision=156943
|
|
|
|
|
|
|
|
|
|
|
| |
Add note about the '_dhcp' user.
While one is expected to run mergemaster -p before installworld, make
a note of the points where this will actively fail due to the addition of
users/groups.
Notes:
svn path=/head/; revision=156538
|
|
|
|
| |
Notes:
svn path=/head/; revision=156510
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
enabled by default in NETSMB and smbfs.ko.
With the most of modern SMB providers requiring encryption by
default, there is little sense left in keeping the crypto part
of NETSMB optional at the build time.
This will also return smbfs.ko to its former properties users
are rather accustomed to.
Discussed with: freebsd-stable, re (scottl)
Not objected by: bp, tjr (silence)
MFC after: 5 days
Notes:
svn path=/head/; revision=156326
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
into a separate module. Accordingly, convert the option into a device
named similarly.
Note for MFC: Perhaps the option should stay in RELENG_6 for POLA reasons.
Suggested by: scottl
Reviewed by: cokane
MFC after: 5 days
Notes:
svn path=/head/; revision=156260
|
|
|
|
|
|
|
|
|
|
| |
mainly to stick to the conventional MFC procedure.
Requested by: Thomas E. Zander <riggs at rrr dot de>
MFC after: 3 days
Notes:
svn path=/head/; revision=155827
|
|
|
|
|
|
|
|
| |
which broke kernel ABI to filesystem modules on i386, where
sizeof(size_t) != sizeof(off_t).
Notes:
svn path=/head/; revision=155178
|
|
|
|
| |
Notes:
svn path=/head/; revision=155137
|
|
|
|
|
|
|
| |
Reported by: neologism/#freenode
Notes:
svn path=/head/; revision=154536
|
|
|
|
|
|
|
| |
right options are used. Tell how to avoid this.
Notes:
svn path=/head/; revision=154531
|
|
|
|
|
|
|
| |
Approved by: markm (mentor)
Notes:
svn path=/head/; revision=154315
|
|
|
|
| |
Notes:
svn path=/head/; revision=154302
|