1999-09-08 11:14:56 +00:00
|
|
|
# $FreeBSD$
|
1997-09-21 21:32:04 +00:00
|
|
|
#
|
|
|
|
# The long compile-with and dependency lines are required because of
|
|
|
|
# limitations in config: backslash-newline doesn't work in strings, and
|
|
|
|
# dependency lines other than the first are silently ignored.
|
|
|
|
#
|
2004-06-30 04:54:39 +00:00
|
|
|
acpi_quirks.h optional acpi \
|
2004-06-24 06:29:22 +00:00
|
|
|
dependency "$S/tools/acpi_quirks2h.awk $S/dev/acpica/acpi_quirks" \
|
|
|
|
compile-with "${AWK} -f $S/tools/acpi_quirks2h.awk $S/dev/acpica/acpi_quirks" \
|
2004-06-30 05:21:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
2004-06-24 06:29:22 +00:00
|
|
|
clean "acpi_quirks.h"
|
2010-06-13 13:02:43 +00:00
|
|
|
#
|
|
|
|
# The 'fdt_dtb_file' target covers an actual DTB file name, which is derived
|
|
|
|
# from the specified source (DTS) file: <platform>.dts -> <platform>.dtb
|
|
|
|
#
|
2014-02-28 22:06:19 +00:00
|
|
|
fdt_dtb_file optional fdt fdt_dtb_static \
|
2014-09-03 17:32:17 +00:00
|
|
|
compile-with "sh -c 'MACHINE=${MACHINE} $S/tools/fdt/make_dtb.sh $S ${FDT_DTS_FILE} ${.CURDIR}'" \
|
2010-06-13 13:02:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
2013-03-14 22:16:13 +00:00
|
|
|
clean "${FDT_DTS_FILE:R}.dtb"
|
2010-06-13 13:02:43 +00:00
|
|
|
fdt_static_dtb.h optional fdt fdt_dtb_static \
|
2014-09-03 17:32:17 +00:00
|
|
|
compile-with "sh -c 'MACHINE=${MACHINE} $S/tools/fdt/make_dtbh.sh ${FDT_DTS_FILE} ${.CURDIR}'" \
|
2014-02-28 18:29:09 +00:00
|
|
|
dependency "fdt_dtb_file" \
|
2010-06-13 13:02:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "fdt_static_dtb.h"
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
feeder_eq_gen.h optional sound \
|
2009-06-10 06:49:45 +00:00
|
|
|
dependency "$S/tools/sound/feeder_eq_mkfilter.awk" \
|
|
|
|
compile-with "${AWK} -f $S/tools/sound/feeder_eq_mkfilter.awk -- ${FEEDER_EQ_PRESETS} > feeder_eq_gen.h" \
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "feeder_eq_gen.h"
|
|
|
|
feeder_rate_gen.h optional sound \
|
2010-11-02 05:39:57 +00:00
|
|
|
dependency "$S/tools/sound/feeder_rate_mkfilter.awk" \
|
2009-06-10 06:49:45 +00:00
|
|
|
compile-with "${AWK} -f $S/tools/sound/feeder_rate_mkfilter.awk -- ${FEEDER_RATE_PRESETS} > feeder_rate_gen.h" \
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "feeder_rate_gen.h"
|
|
|
|
snd_fxdiv_gen.h optional sound \
|
2010-11-02 05:39:57 +00:00
|
|
|
dependency "$S/tools/sound/snd_fxdiv_gen.awk" \
|
2009-06-10 06:49:45 +00:00
|
|
|
compile-with "${AWK} -f $S/tools/sound/snd_fxdiv_gen.awk -- > snd_fxdiv_gen.h" \
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "snd_fxdiv_gen.h"
|
2006-02-07 18:41:56 +00:00
|
|
|
miidevs.h optional miibus | mii \
|
2004-05-26 00:38:52 +00:00
|
|
|
dependency "$S/tools/miidevs2h.awk $S/dev/mii/miidevs" \
|
|
|
|
compile-with "${AWK} -f $S/tools/miidevs2h.awk $S/dev/mii/miidevs" \
|
2004-06-26 05:58:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
2004-05-26 00:38:52 +00:00
|
|
|
clean "miidevs.h"
|
2004-06-30 14:52:49 +00:00
|
|
|
pccarddevs.h standard \
|
2004-05-26 00:53:10 +00:00
|
|
|
dependency "$S/tools/pccarddevs2h.awk $S/dev/pccard/pccarddevs" \
|
|
|
|
compile-with "${AWK} -f $S/tools/pccarddevs2h.awk $S/dev/pccard/pccarddevs" \
|
2004-06-26 05:58:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
2004-05-26 00:53:10 +00:00
|
|
|
clean "pccarddevs.h"
|
2016-04-07 20:12:45 +00:00
|
|
|
kbdmuxmap.h optional kbdmux_dflt_keymap \
|
|
|
|
compile-with "kbdcontrol -P ${S:S/sys$/share/}/vt/keymaps -P ${S:S/sys$/share/}/syscons/keymaps -L ${KBDMUX_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > kbdmuxmap.h" \
|
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "kbdmuxmap.h"
|
2013-12-05 22:38:53 +00:00
|
|
|
teken_state.h optional sc | vt \
|
2009-09-03 09:33:57 +00:00
|
|
|
dependency "$S/teken/gensequences $S/teken/sequences" \
|
|
|
|
compile-with "${AWK} -f $S/teken/gensequences $S/teken/sequences > teken_state.h" \
|
Replace syscons terminal renderer by a new renderer that uses libteken.
Some time ago I started working on a library called libteken, which is
terminal emulator. It does not buffer any screen contents, but only
keeps terminal state, such as cursor position, attributes, etc. It
should implement all escape sequences that are implemented by the
cons25 terminal emulator, but also a fair amount of sequences that are
present in VT100 and xterm.
A lot of random notes, which could be of interest to users/developers:
- Even though I'm leaving the terminal type set to `cons25', users can
do experiments with placing `xterm-color' in /etc/ttys. Because we
only implement a subset of features of xterm, this may cause
artifacts. We should consider extending libteken, because in my
opinion xterm is the way to go. Some missing features:
- Keypad application mode (DECKPAM)
- Character sets (SCS)
- libteken is filled with a fair amount of assertions, but unfortunately
we cannot go into the debugger anymore if we fail them. I've done
development of this library almost entirely in userspace. In
sys/dev/syscons/teken there are two applications that can be helpful
when debugging the code:
- teken_demo: a terminal emulator that can be started from a regular
xterm that emulates a terminal using libteken. This application can
be very useful to debug any rendering issues.
- teken_stress: a stress testing application that emulates random
terminal output. libteken has literally survived multiple terabytes
of random input.
- libteken also includes support for UTF-8, but unfortunately our input
layer and font renderer don't support this. If users want to
experiment with UTF-8 support, they can enable `TEKEN_UTF8' in
teken.h. If you recompile your kernel or the teken_demo application,
you can hold some nice experiments.
- I've left PC98 the way it is right now. The PC98 platform has a custom
syscons renderer, which supports some form of localised input. Maybe
we should port PC98 to libteken by the time syscons supports UTF-8?
- I've removed the `dumb' terminal emulator. It has been broken for
years. It hasn't survived the `struct proc' -> `struct thread'
conversion.
- To prevent confusion among people that want to hack on libteken:
unlike syscons, the state machines that parse the escape sequences are
machine generated. This means that if you want to add new escape
sequences, you have to add an entry to the `sequences' file. This will
cause new entries to be added to `teken_state.h'.
- Any rendering artifacts that didn't occur prior to this commit are by
accident. They should be reported to me, so I can fix them.
Discussed on: current@, hackers@
Discussed with: philip (at 25C3)
2009-01-01 13:26:53 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "teken_state.h"
|
2009-05-27 16:16:56 +00:00
|
|
|
usbdevs.h optional usb \
|
2004-05-26 00:53:10 +00:00
|
|
|
dependency "$S/tools/usbdevs2h.awk $S/dev/usb/usbdevs" \
|
2004-12-30 23:19:40 +00:00
|
|
|
compile-with "${AWK} -f $S/tools/usbdevs2h.awk $S/dev/usb/usbdevs -h" \
|
2004-06-26 05:58:43 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
2004-12-30 23:19:40 +00:00
|
|
|
clean "usbdevs.h"
|
2009-05-27 16:16:56 +00:00
|
|
|
usbdevs_data.h optional usb \
|
2004-12-30 23:19:40 +00:00
|
|
|
dependency "$S/tools/usbdevs2h.awk $S/dev/usb/usbdevs" \
|
|
|
|
compile-with "${AWK} -f $S/tools/usbdevs2h.awk $S/dev/usb/usbdevs -d" \
|
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "usbdevs_data.h"
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/cam.c optional scbus
|
2013-06-17 10:21:38 +00:00
|
|
|
cam/cam_compat.c optional scbus
|
2016-04-14 21:47:58 +00:00
|
|
|
cam/cam_iosched.c optional scbus
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/cam_periph.c optional scbus
|
|
|
|
cam/cam_queue.c optional scbus
|
|
|
|
cam/cam_sim.c optional scbus
|
|
|
|
cam/cam_xpt.c optional scbus
|
Separate the parallel scsi knowledge out of the core of the XPT, and
modularize it so that new transports can be created.
Add a transport for SATA
Add a periph+protocol layer for ATA
Add a driver for AHCI-compliant hardware.
Add a maxio field to CAM so that drivers can advertise their max
I/O capability. Modify various drivers so that they are insulated
from the value of MAXPHYS.
The new ATA/SATA code supports AHCI-compliant hardware, and will override
the classic ATA driver if it is loaded as a module at boot time or compiled
into the kernel. The stack now support NCQ (tagged queueing) for increased
performance on modern SATA drives. It also supports port multipliers.
ATA drives are accessed via 'ada' device nodes. ATAPI drives are
accessed via 'cd' device nodes. They can all be enumerated and manipulated
via camcontrol, just like SCSI drives. SCSI commands are not translated to
their ATA equivalents; ATA native commands are used throughout the entire
stack, including camcontrol. See the camcontrol manpage for further
details. Testing this code may require that you update your fstab, and
possibly modify your BIOS to enable AHCI functionality, if available.
This code is very experimental at the moment. The userland ABI/API has
changed, so applications will need to be recompiled. It may change
further in the near future. The 'ada' device name may also change as
more infrastructure is completed in this project. The goal is to
eventually put all CAM busses and devices until newbus, allowing for
interesting topology and management options.
Few functional changes will be seen with existing SCSI/SAS/FC drivers,
though the userland ABI has still changed. In the future, transports
specific modules for SAS and FC may appear in order to better support
the topologies and capabilities of these technologies.
The modularization of CAM and the addition of the ATA/SATA modules is
meant to break CAM out of the mold of being specific to SCSI, letting it
grow to be a framework for arbitrary transports and protocols. It also
allows drivers to be written to support discrete hardware without
jeopardizing the stability of non-related hardware. While only an AHCI
driver is provided now, a Silicon Image driver is also in the works.
Drivers for ICH1-4, ICH5-6, PIIX, classic IDE, and any other hardware
is possible and encouraged. Help with new transports is also encouraged.
Submitted by: scottl, mav
Approved by: re
2009-07-10 08:18:08 +00:00
|
|
|
cam/ata/ata_all.c optional scbus
|
|
|
|
cam/ata/ata_xpt.c optional scbus
|
2009-11-19 16:26:07 +00:00
|
|
|
cam/ata/ata_pmp.c optional scbus
|
Separate the parallel scsi knowledge out of the core of the XPT, and
modularize it so that new transports can be created.
Add a transport for SATA
Add a periph+protocol layer for ATA
Add a driver for AHCI-compliant hardware.
Add a maxio field to CAM so that drivers can advertise their max
I/O capability. Modify various drivers so that they are insulated
from the value of MAXPHYS.
The new ATA/SATA code supports AHCI-compliant hardware, and will override
the classic ATA driver if it is loaded as a module at boot time or compiled
into the kernel. The stack now support NCQ (tagged queueing) for increased
performance on modern SATA drives. It also supports port multipliers.
ATA drives are accessed via 'ada' device nodes. ATAPI drives are
accessed via 'cd' device nodes. They can all be enumerated and manipulated
via camcontrol, just like SCSI drives. SCSI commands are not translated to
their ATA equivalents; ATA native commands are used throughout the entire
stack, including camcontrol. See the camcontrol manpage for further
details. Testing this code may require that you update your fstab, and
possibly modify your BIOS to enable AHCI functionality, if available.
This code is very experimental at the moment. The userland ABI/API has
changed, so applications will need to be recompiled. It may change
further in the near future. The 'ada' device name may also change as
more infrastructure is completed in this project. The goal is to
eventually put all CAM busses and devices until newbus, allowing for
interesting topology and management options.
Few functional changes will be seen with existing SCSI/SAS/FC drivers,
though the userland ABI has still changed. In the future, transports
specific modules for SAS and FC may appear in order to better support
the topologies and capabilities of these technologies.
The modularization of CAM and the addition of the ATA/SATA modules is
meant to break CAM out of the mold of being specific to SCSI, letting it
grow to be a framework for arbitrary transports and protocols. It also
allows drivers to be written to support discrete hardware without
jeopardizing the stability of non-related hardware. While only an AHCI
driver is provided now, a Silicon Image driver is also in the works.
Drivers for ICH1-4, ICH5-6, PIIX, classic IDE, and any other hardware
is possible and encouraged. Help with new transports is also encouraged.
Submitted by: scottl, mav
Approved by: re
2009-07-10 08:18:08 +00:00
|
|
|
cam/scsi/scsi_xpt.c optional scbus
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/scsi/scsi_all.c optional scbus
|
|
|
|
cam/scsi/scsi_cd.c optional cd
|
|
|
|
cam/scsi/scsi_ch.c optional ch
|
2009-11-19 16:26:07 +00:00
|
|
|
cam/ata/ata_da.c optional ada | da
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
cam/ctl/ctl.c optional ctl
|
2012-02-23 21:32:32 +00:00
|
|
|
cam/ctl/ctl_backend.c optional ctl
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
cam/ctl/ctl_backend_block.c optional ctl
|
|
|
|
cam/ctl/ctl_backend_ramdisk.c optional ctl
|
2012-02-23 21:32:32 +00:00
|
|
|
cam/ctl/ctl_cmd_table.c optional ctl
|
|
|
|
cam/ctl/ctl_frontend.c optional ctl
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
cam/ctl/ctl_frontend_cam_sim.c optional ctl
|
2015-08-15 15:42:21 +00:00
|
|
|
cam/ctl/ctl_frontend_ioctl.c optional ctl
|
2013-09-14 15:29:06 +00:00
|
|
|
cam/ctl/ctl_frontend_iscsi.c optional ctl
|
2015-09-10 12:40:31 +00:00
|
|
|
cam/ctl/ctl_ha.c optional ctl
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
cam/ctl/ctl_scsi_all.c optional ctl
|
2014-07-16 15:57:17 +00:00
|
|
|
cam/ctl/ctl_tpc.c optional ctl
|
|
|
|
cam/ctl/ctl_tpc_local.c optional ctl
|
2012-02-23 21:32:32 +00:00
|
|
|
cam/ctl/ctl_error.c optional ctl
|
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.
It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.
Some CTL features:
- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.
(1) HA Support is just an API stub, and needs much more to be fully
functional.
ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.
ctl.h: Basic function declarations and data structures.
ctl_backend.c,
ctl_backend.h: The basic CTL backend API.
ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.
ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.
ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.
ctl_debug.h: Debugging support.
ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.
ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.
ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.
ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.
ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.
ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.
ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.
ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.
ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.
ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.
ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.
ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.
scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.
README.ctl.txt: CTL code features, roadmap, to-do list.
usr.sbin/Makefile: Add ctladm.
ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.
usr.bin/Makefile: Add ctlstat.
ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.
sys/conf/files: Add CTL files.
sys/conf/NOTES: Add device ctl.
sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.
Add several mode page definitions for CTL.
sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.
sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.
scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.
amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.
i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.
Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month
2012-01-12 00:34:33 +00:00
|
|
|
cam/ctl/ctl_util.c optional ctl
|
|
|
|
cam/ctl/scsi_ctl.c optional ctl
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/scsi/scsi_da.c optional da
|
2005-11-27 21:41:58 +00:00
|
|
|
cam/scsi/scsi_low.c optional ct | ncv | nsp | stg
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/scsi/scsi_pass.c optional pass
|
|
|
|
cam/scsi/scsi_pt.c optional pt
|
|
|
|
cam/scsi/scsi_sa.c optional sa
|
2012-05-24 14:07:44 +00:00
|
|
|
cam/scsi/scsi_enc.c optional ses
|
|
|
|
cam/scsi/scsi_enc_ses.c optional ses
|
|
|
|
cam/scsi/scsi_enc_safte.c optional ses
|
2007-04-07 19:40:58 +00:00
|
|
|
cam/scsi/scsi_sg.c optional sg
|
2005-01-04 06:07:25 +00:00
|
|
|
cam/scsi/scsi_targ_bh.c optional targbh
|
|
|
|
cam/scsi/scsi_target.c optional targ
|
Add Serial Management Protocol (SMP) passthrough support to CAM.
This includes support in the kernel, camcontrol(8), libcam and the mps(4)
driver for SMP passthrough.
The CAM SCSI probe code has been modified to fetch Inquiry VPD page 0x00
to determine supported pages, and will now fetch page 0x83 in addition to
page 0x80 if supported.
Add two new CAM CCBs, XPT_SMP_IO, and XPT_GDEV_ADVINFO. The SMP CCB is
intended for SMP requests and responses. The ADVINFO is currently used to
fetch cached VPD page 0x83 data from the transport layer, but is intended
to be extensible to fetch other types of device-specific data.
SMP-only devices are not currently represented in the CAM topology, and so
the current semantics are that the SIM will route SMP CCBs to either the
addressed device, if it contains an SMP target, or its parent, if it
contains an SMP target. (This is noted in cam_ccb.h, since it will change
later once we have the ability to have SMP-only devices in CAM's topology.)
smp_all.c,
smp_all.h: New helper routines for SMP. This includes
SMP request building routines, response parsing
routines, error decoding routines, and structure
definitions for a number of SMP commands.
libcam/Makefile: Add smp_all.c to libcam, so that SMP functionality
is available to userland applications.
camcontrol.8,
camcontrol.c: Add smp passthrough support to camcontrol. Several
new subcommands are now available:
'smpcmd' functions much like 'cmd', except that it
allows the user to send generic SMP commands.
'smprg' sends the SMP report general command, and
displays the decoded output. It will automatically
fetch extended output if it is available.
'smppc' sends the SMP phy control command, with any
number of potential options. Among other things,
this allows the user to reset a phy on a SAS
expander, or disable a phy on an expander.
'smpmaninfo' sends the SMP report manufacturer
information and displays the decoded output.
'smpphylist' displays a list of phys on an
expander, and the CAM devices attached to those
phys, if any.
cam.h,
cam.c: Add a status value for SMP errors
(CAM_SMP_STATUS_ERROR).
Add a missing description for CAM_SCSI_IT_NEXUS_LOST.
Add support for SMP commands to cam_error_string().
cam_ccb.h: Rename the CAM_DIR_RESV flag to CAM_DIR_BOTH. SMP
commands are by nature bi-directional, and we may
need to support bi-directional SCSI commands later.
Add the XPT_SMP_IO CCB. Since SMP commands are
bi-directional, there are pointers for both the
request and response.
Add a fill routine for SMP CCBs.
Add the XPT_GDEV_ADVINFO CCB. This is currently
used to fetch cached page 0x83 data from the
transport later, but is extensible to fetch many
other types of data.
cam_periph.c: Add support in cam_periph_mapmem() for XPT_SMP_IO
and XPT_GDEV_ADVINFO CCBs.
cam_xpt.c: Add support for executing XPT_SMP_IO CCBs.
cam_xpt_internal.h: Add fields for VPD pages 0x00 and 0x83 in struct
cam_ed.
scsi_all.c: Add scsi_get_sas_addr(), a function that parses
VPD page 0x83 data and pulls out a SAS address.
scsi_all.h: Add VPD page 0x00 and 0x83 structures, and a
prototype for scsi_get_sas_addr().
scsi_pass.c: Add support for mapping buffers in XPT_SMP_IO and
XPT_GDEV_ADVINFO CCBs.
scsi_xpt.c: In the SCSI probe code, first ask the device for
VPD page 0x00. If any VPD pages are supported,
that page is required to be implemented. Based on
the response, we may probe for the serial number
(page 0x80) or device id (page 0x83).
Add support for the XPT_GDEV_ADVINFO CCB.
sys/conf/files: Add smp_all.c.
mps.c: Add support for passing in a uio in mps_map_command(),
so we can map a S/G list at once.
Add support for SMP passthrough commands in
mps_data_cb(). SMP is a special case, because the
first buffer in the S/G list is outbound and the
second buffer is inbound.
Add support for warning the user if the busdma code
comes back with more buffers than will work for the
command. This will, for example, help the user
determine why an SMP command failed if busdma comes
back with three buffers.
mps_pci.c: Add sys/uio.h.
mps_sas.c: Add the SAS address and the parent handle to the
list of fields we pull from device page 0 and cache
in struct mpssas_target. These are needed for SMP
passthrough.
Add support for the XPT_SMP_IO CCB. For now, this
CCB is routed to the addressed device if it supports
SMP, or to its parent if it does not and the parent
does. This is necessary because CAM does not
currently support SMP-only nodes in the topology.
Make SMP passthrough support conditional on
__FreeBSD_version >= 900026. This will make it
easier to MFC this change to the driver without
MFCing the CAM changes as well.
mps_user.c: Un-staticize mpi_init_sge() so we can use it for
the SMP passthrough code.
mpsvar.h: Add a uio and iovecs into struct mps_command for
SMP passthrough commands.
Add a cm_max_segs field to struct mps_command so
that we can warn the user if busdma comes back with
too many segments.
Clear the cm_reply when a command gets freed. If
it is not cleared, reply frames will eventually get
freed into the pool multiple times and corrupt the
pool. (This fix is from scottl.)
Add a prototype for mpi_init_sge().
sys/param.h: Bump __FreeBSD_version to 900026 for the for the
inclusion of the XPT_GDEV_ADVINFO and XPT_SMP_IO
CAM CCBs.
2010-11-30 22:39:46 +00:00
|
|
|
cam/scsi/smp_all.c optional scbus
|
2012-03-27 21:23:56 +00:00
|
|
|
# shared between zfs and dtrace
|
2015-06-10 15:53:39 +00:00
|
|
|
cddl/compat/opensolaris/kern/opensolaris.c optional zfs | dtrace compile-with "${CDDL_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_cmn_err.c optional zfs | dtrace compile-with "${CDDL_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_kmem.c optional zfs | dtrace compile-with "${CDDL_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_misc.c optional zfs | dtrace compile-with "${CDDL_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_sunddi.c optional zfs | dtrace compile-with "${CDDL_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_taskq.c optional zfs | dtrace compile-with "${CDDL_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
# zfs specific
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_acl.c optional zfs compile-with "${ZFS_C}"
|
2014-09-19 13:55:28 +00:00
|
|
|
cddl/compat/opensolaris/kern/opensolaris_dtrace.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/compat/opensolaris/kern/opensolaris_kobj.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_kstat.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_lookup.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_policy.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_string.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_sysevent.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_uio.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/compat/opensolaris/kern/opensolaris_vfs.c optional zfs compile-with "${ZFS_C}"
|
2013-03-09 02:32:23 +00:00
|
|
|
cddl/compat/opensolaris/kern/opensolaris_vm.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/compat/opensolaris/kern/opensolaris_zone.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/acl/acl_common.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/avl/avl.c optional zfs compile-with "${ZFS_C}"
|
2015-07-09 21:53:40 +00:00
|
|
|
cddl/contrib/opensolaris/common/nvpair/opensolaris_fnvpair.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair_alloc_fixed.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/common/unicode/u8_textprep.c optional zfs compile-with "${ZFS_C}"
|
2012-06-23 14:43:25 +00:00
|
|
|
cddl/contrib/opensolaris/common/zfs/zfeature_common.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_comutil.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_deleg.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_fletcher.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_namecheck.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zfs_prop.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zpool_prop.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/common/zfs/zprop_common.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/gfs.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/vnode.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c optional zfs compile-with "${ZFS_C}"
|
2014-07-01 06:43:15 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/blkptr.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/bplist.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c optional zfs compile-with "${ZFS_C}"
|
2012-06-23 14:43:25 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c optional zfs compile-with "${ZFS_C}"
|
2015-08-13 05:42:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/bqueue.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/ddt_zap.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_object.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c optional zfs compile-with "${ZFS_C}" \
|
|
|
|
warning "kernel contains CDDL licensed ZFS filesystem"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c optional zfs compile-with "${ZFS_C}"
|
2014-01-02 07:34:36 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_bookmark.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c optional zfs compile-with "${ZFS_C}"
|
2013-03-23 20:01:45 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c optional zfs compile-with "${ZFS_C}"
|
2013-03-23 20:01:45 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/gzip.c optional zfs compile-with "${ZFS_C}"
|
2013-02-09 06:39:28 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/lz4.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/lzjb.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c optional zfs compile-with "${ZFS_C}"
|
2015-08-14 09:31:07 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/multilist.c optional zfs compile-with "${ZFS_C}"
|
2013-11-28 19:37:22 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/range_tree.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/refcount.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/rrwlock.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c optional zfs compile-with "${ZFS_C}"
|
2013-11-28 19:37:22 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/space_reftree.c optional zfs compile-with "${ZFS_C}"
|
2012-10-19 17:03:50 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/uberblock.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/unique.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c optional zfs compile-with "${ZFS_C}"
|
2012-06-23 14:43:25 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c optional zfs compile-with "${ZFS_C}"
|
2012-03-27 21:23:56 +00:00
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_byteswap.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fuid.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_onexit.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_sa.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zle.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zrlock.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/os/callb.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/os/fm.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/os/list.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/os/nvpair_alloc_system.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/adler32.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/deflate.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/inffast.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/inflate.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/inftrees.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/opensolaris_crc32.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/trees.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/zmod.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/zmod_subr.c optional zfs compile-with "${ZFS_C}"
|
|
|
|
cddl/contrib/opensolaris/uts/common/zmod/zutil.c optional zfs compile-with "${ZFS_C}"
|
2015-06-10 15:53:39 +00:00
|
|
|
# dtrace specific
|
|
|
|
cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c optional dtrace compile-with "${DTRACE_C}" \
|
|
|
|
warning "kernel contains CDDL licensed DTRACE"
|
|
|
|
cddl/dev/dtmalloc/dtmalloc.c optional dtmalloc | dtraceall compile-with "${CDDL_C}"
|
|
|
|
cddl/dev/profile/profile.c optional dtrace_profile | dtraceall compile-with "${CDDL_C}"
|
|
|
|
cddl/dev/sdt/sdt.c optional dtrace_sdt | dtraceall compile-with "${CDDL_C}"
|
|
|
|
cddl/dev/fbt/fbt.c optional dtrace_fbt | dtraceall compile-with "${FBT_C}"
|
|
|
|
cddl/dev/systrace/systrace.c optional dtrace_systrace | dtraceall compile-with "${CDDL_C}"
|
|
|
|
cddl/dev/prototype.c optional dtrace_prototype | dtraceall compile-with "${CDDL_C}"
|
|
|
|
fs/nfsclient/nfs_clkdtrace.c optional dtnfscl nfscl | dtraceall nfscl compile-with "${CDDL_C}"
|
2015-07-09 07:20:15 +00:00
|
|
|
compat/cloudabi/cloudabi_clock.c optional compat_cloudabi64
|
2015-07-16 18:24:06 +00:00
|
|
|
compat/cloudabi/cloudabi_errno.c optional compat_cloudabi64
|
2015-07-09 07:20:15 +00:00
|
|
|
compat/cloudabi/cloudabi_fd.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_file.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_futex.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_mem.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_proc.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_random.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_sock.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi/cloudabi_thread.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi64/cloudabi64_fd.c optional compat_cloudabi64
|
2015-10-22 09:07:53 +00:00
|
|
|
compat/cloudabi64/cloudabi64_module.c optional compat_cloudabi64
|
2015-07-09 07:20:15 +00:00
|
|
|
compat/cloudabi64/cloudabi64_poll.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi64/cloudabi64_sock.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi64/cloudabi64_syscalls.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi64/cloudabi64_sysent.c optional compat_cloudabi64
|
|
|
|
compat/cloudabi64/cloudabi64_thread.c optional compat_cloudabi64
|
2013-08-18 10:30:41 +00:00
|
|
|
compat/freebsd32/freebsd32_capability.c optional compat_freebsd32
|
2012-11-13 06:07:13 +00:00
|
|
|
compat/freebsd32/freebsd32_ioctl.c optional compat_freebsd32
|
|
|
|
compat/freebsd32/freebsd32_misc.c optional compat_freebsd32
|
|
|
|
compat/freebsd32/freebsd32_syscalls.c optional compat_freebsd32
|
|
|
|
compat/freebsd32/freebsd32_sysent.c optional compat_freebsd32
|
2014-10-02 19:11:18 +00:00
|
|
|
contrib/dev/acpica/common/ahids.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/common/ahuuids.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbcmds.c optional acpi acpi_debug
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbconvert.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbdisply.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbexec.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbfileio.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbhistry.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbinput.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbmethod.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbnames.c optional acpi acpi_debug
|
2015-07-22 16:25:07 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbobject.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbstats.c optional acpi acpi_debug
|
2014-10-02 19:11:18 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbtest.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/debugger/dbutils.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/debugger/dbxface.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmbuffer.c optional acpi acpi_debug
|
2015-02-18 20:33:00 +00:00
|
|
|
contrib/dev/acpica/components/disassembler/dmcstyle.c optional acpi acpi_debug
|
2012-11-20 21:01:59 +00:00
|
|
|
contrib/dev/acpica/components/disassembler/dmdeferred.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/disassembler/dmnames.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmopcode.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmresrc.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmresrcl.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmresrcl2.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmresrcs.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmutils.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/disassembler/dmwalk.c optional acpi acpi_debug
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsargs.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dscontrol.c optional acpi
|
2015-07-22 16:25:07 +00:00
|
|
|
contrib/dev/acpica/components/dispatcher/dsdebug.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/dispatcher/dsfield.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsinit.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsmethod.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsmthdat.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsobject.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsopcode.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dsutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dswexec.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dswload.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dswload2.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dswscope.c optional acpi
|
|
|
|
contrib/dev/acpica/components/dispatcher/dswstate.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evevent.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evglock.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evgpe.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evgpeblk.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evgpeinit.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evgpeutil.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/events/evhandler.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/events/evmisc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evregion.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evrgnini.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evsci.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evxface.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evxfevnt.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evxfgpe.c optional acpi
|
|
|
|
contrib/dev/acpica/components/events/evxfregn.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exconfig.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exconvrt.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/excreate.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exdebug.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exdump.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exfield.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exfldio.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exmisc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exmutex.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exnames.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exoparg1.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exoparg2.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exoparg3.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exoparg6.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exprep.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exregion.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exresnte.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exresolv.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exresop.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exstore.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exstoren.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exstorob.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exsystem.c optional acpi
|
|
|
|
contrib/dev/acpica/components/executer/exutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwacpi.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwesleep.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwgpe.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwpci.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwregs.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwsleep.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwtimer.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwvalid.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwxface.c optional acpi
|
|
|
|
contrib/dev/acpica/components/hardware/hwxfsleep.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsaccess.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsalloc.c optional acpi
|
2013-04-19 23:49:34 +00:00
|
|
|
contrib/dev/acpica/components/namespace/nsarguments.c optional acpi
|
2013-02-15 20:36:28 +00:00
|
|
|
contrib/dev/acpica/components/namespace/nsconvert.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/namespace/nsdump.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nseval.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsinit.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsload.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsnames.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsobject.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsparse.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nspredef.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/namespace/nsprepkg.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/namespace/nsrepair.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsrepair2.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nssearch.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nswalk.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsxfeval.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsxfname.c optional acpi
|
|
|
|
contrib/dev/acpica/components/namespace/nsxfobj.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/psargs.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/psloop.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/parser/psobject.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/parser/psopcode.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/parser/psopinfo.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/parser/psparse.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/psscope.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/pstree.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/psutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/pswalk.c optional acpi
|
|
|
|
contrib/dev/acpica/components/parser/psxface.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsaddr.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rscalc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rscreate.c optional acpi
|
2015-08-26 17:13:47 +00:00
|
|
|
contrib/dev/acpica/components/resources/rsdump.c optional acpi acpi_debug
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/resources/rsdumpinfo.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/resources/rsinfo.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsio.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsirq.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rslist.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsmemory.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsmisc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsserial.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/resources/rsxface.c optional acpi
|
2014-10-02 19:11:18 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbdata.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbfadt.c optional acpi
|
|
|
|
contrib/dev/acpica/components/tables/tbfind.c optional acpi
|
|
|
|
contrib/dev/acpica/components/tables/tbinstal.c optional acpi
|
2013-05-20 23:52:49 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbprint.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbutils.c optional acpi
|
|
|
|
contrib/dev/acpica/components/tables/tbxface.c optional acpi
|
2012-07-11 23:18:35 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbxfload.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/tables/tbxfroot.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utaddress.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utalloc.c optional acpi
|
2013-05-20 23:52:49 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utbuffer.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utcache.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utcopy.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utdebug.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utdecode.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utdelete.c optional acpi
|
2013-05-20 23:52:49 +00:00
|
|
|
contrib/dev/acpica/components/utilities/uterror.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/uteval.c optional acpi
|
2012-07-11 23:18:35 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utexcep.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utglobal.c optional acpi
|
2014-10-02 19:11:18 +00:00
|
|
|
contrib/dev/acpica/components/utilities/uthex.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utids.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utinit.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utlock.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utmath.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utmisc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utmutex.c optional acpi
|
2015-07-22 16:25:07 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utnonansi.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utobject.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utosi.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utownerid.c optional acpi
|
2013-04-04 22:11:30 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utpredef.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utresrc.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utstate.c optional acpi
|
2013-01-17 23:56:43 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utstring.c optional acpi
|
2014-10-02 19:11:18 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utuuid.c optional acpi acpi_debug
|
2012-02-16 22:59:29 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utxface.c optional acpi
|
|
|
|
contrib/dev/acpica/components/utilities/utxferror.c optional acpi
|
2012-08-16 20:54:52 +00:00
|
|
|
contrib/dev/acpica/components/utilities/utxfinit.c optional acpi
|
2012-02-16 22:59:29 +00:00
|
|
|
#contrib/dev/acpica/components/utilities/utxfmutex.c optional acpi
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/fil.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_auth.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_fil_freebsd.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_frag.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_log.c optional ipfilter inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ipfilter"
|
|
|
|
contrib/ipfilter/netinet/ip_nat.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_proxy.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_state.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_lookup.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN} -Wno-unused -Wno-error -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_pool.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_htable.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/ip_sync.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2005-09-11 02:27:34 +00:00
|
|
|
contrib/ipfilter/netinet/mlfk_ipl.c optional ipfilter inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ipfilter"
|
2013-09-06 23:11:19 +00:00
|
|
|
contrib/ipfilter/netinet/ip_nat6.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2013-09-06 23:11:19 +00:00
|
|
|
contrib/ipfilter/netinet/ip_rules.c optional ipfilter inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ipfilter"
|
|
|
|
contrib/ipfilter/netinet/ip_scan.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2013-09-06 23:11:19 +00:00
|
|
|
contrib/ipfilter/netinet/ip_dstlist.c optional ipfilter inet \
|
2013-12-29 14:21:55 +00:00
|
|
|
compile-with "${NORMAL_C} -Wno-unused -I$S/contrib/ipfilter"
|
2013-09-06 23:11:19 +00:00
|
|
|
contrib/ipfilter/netinet/radix_ipf.c optional ipfilter inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ipfilter"
|
2012-11-13 06:07:13 +00:00
|
|
|
contrib/libfdt/fdt.c optional fdt
|
|
|
|
contrib/libfdt/fdt_ro.c optional fdt
|
|
|
|
contrib/libfdt/fdt_rw.c optional fdt
|
|
|
|
contrib/libfdt/fdt_strerror.c optional fdt
|
|
|
|
contrib/libfdt/fdt_sw.c optional fdt
|
|
|
|
contrib/libfdt/fdt_wip.c optional fdt
|
2015-07-04 16:33:37 +00:00
|
|
|
contrib/libnv/dnvlist.c standard
|
|
|
|
contrib/libnv/nvlist.c standard
|
|
|
|
contrib/libnv/nvpair.c standard
|
2005-09-11 01:28:05 +00:00
|
|
|
contrib/ngatm/netnatm/api/cc_conn.c optional ngatm_ccatm \
|
2007-07-05 07:04:17 +00:00
|
|
|
compile-with "${NORMAL_C_NOWERROR} -I$S/contrib/ngatm"
|
2005-09-11 01:28:05 +00:00
|
|
|
contrib/ngatm/netnatm/api/cc_data.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/api/cc_dump.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/api/cc_port.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/api/cc_sig.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/api/cc_user.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/api/unisap.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/misc/straddr.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/misc/unimsg_common.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/msg/traffic.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/msg/uni_ie.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/msg/uni_msg.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/saal/saal_sscfu.c optional ngatm_sscfu \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/saal/saal_sscop.c optional ngatm_sscop \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_call.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_coord.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_party.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_print.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_reset.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_uni.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_unimsgcpy.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
contrib/ngatm/netnatm/sig/sig_verify.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
2012-11-13 06:07:13 +00:00
|
|
|
crypto/blowfish/bf_ecb.c optional ipsec
|
|
|
|
crypto/blowfish/bf_skey.c optional crypto | ipsec
|
|
|
|
crypto/camellia/camellia.c optional crypto | ipsec
|
|
|
|
crypto/camellia/camellia-api.c optional crypto | ipsec
|
2013-06-28 21:00:08 +00:00
|
|
|
crypto/des/des_ecb.c optional crypto | ipsec | netsmb
|
|
|
|
crypto/des/des_setkey.c optional crypto | ipsec | netsmb
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
crypto/rc4/rc4.c optional netgraph_mppc_encryption | kgssapi
|
2005-11-27 21:41:58 +00:00
|
|
|
crypto/rijndael/rijndael-alg-fst.c optional crypto | geom_bde | \
|
2015-08-17 07:36:12 +00:00
|
|
|
ipsec | random !random_loadable | wlan_ccmp
|
|
|
|
crypto/rijndael/rijndael-api-fst.c optional geom_bde | random !random_loadable
|
2005-11-27 21:41:58 +00:00
|
|
|
crypto/rijndael/rijndael-api.c optional crypto | ipsec | wlan_ccmp
|
|
|
|
crypto/sha1.c optional carp | crypto | ipsec | \
|
2006-11-03 15:23:16 +00:00
|
|
|
netgraph_mppc_encryption | sctp
|
2015-08-17 07:36:12 +00:00
|
|
|
crypto/sha2/sha256c.c optional crypto | geom_bde | ipsec | random !random_loadable | \
|
2014-03-16 01:43:23 +00:00
|
|
|
sctp | zfs
|
2015-12-27 17:33:59 +00:00
|
|
|
crypto/sha2/sha512c.c optional crypto | geom_bde | ipsec | zfs
|
2013-07-11 15:29:25 +00:00
|
|
|
crypto/siphash/siphash.c optional inet | inet6
|
|
|
|
crypto/siphash/siphash_test.c optional inet | inet6
|
2012-11-13 06:07:13 +00:00
|
|
|
ddb/db_access.c optional ddb
|
|
|
|
ddb/db_break.c optional ddb
|
|
|
|
ddb/db_capture.c optional ddb
|
|
|
|
ddb/db_command.c optional ddb
|
|
|
|
ddb/db_examine.c optional ddb
|
|
|
|
ddb/db_expr.c optional ddb
|
|
|
|
ddb/db_input.c optional ddb
|
|
|
|
ddb/db_lex.c optional ddb
|
|
|
|
ddb/db_main.c optional ddb
|
|
|
|
ddb/db_output.c optional ddb
|
|
|
|
ddb/db_print.c optional ddb
|
|
|
|
ddb/db_ps.c optional ddb
|
|
|
|
ddb/db_run.c optional ddb
|
|
|
|
ddb/db_script.c optional ddb
|
|
|
|
ddb/db_sym.c optional ddb
|
|
|
|
ddb/db_thread.c optional ddb
|
|
|
|
ddb/db_textdump.c optional ddb
|
|
|
|
ddb/db_variables.c optional ddb
|
|
|
|
ddb/db_watch.c optional ddb
|
|
|
|
ddb/db_write_cmd.c optional ddb
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/aac/aac.c optional aac
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/aac/aac_cam.c optional aacp aac
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/aac/aac_debug.c optional aac
|
|
|
|
dev/aac/aac_disk.c optional aac
|
2002-09-25 15:21:50 +00:00
|
|
|
dev/aac/aac_linux.c optional aac compat_linux
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/aac/aac_pci.c optional aac pci
|
2013-05-24 09:22:43 +00:00
|
|
|
dev/aacraid/aacraid.c optional aacraid
|
|
|
|
dev/aacraid/aacraid_cam.c optional aacraid scbus
|
|
|
|
dev/aacraid/aacraid_debug.c optional aacraid
|
|
|
|
dev/aacraid/aacraid_linux.c optional aacraid compat_linux
|
|
|
|
dev/aacraid/aacraid_pci.c optional aacraid pci
|
2009-06-23 13:17:25 +00:00
|
|
|
dev/acpi_support/acpi_wmi.c optional acpi_wmi acpi
|
2004-11-15 07:48:22 +00:00
|
|
|
dev/acpi_support/acpi_asus.c optional acpi_asus acpi
|
Add acpi_asus_wmi(4) -- driver for random extras found on WMI-compatible
Asus laptops. It is alike to acpi_asus(4), but uses WMI interface instead
of separate ACPI device.
On Asus EeePC T101MT netbook it allows to handle hotkeys and on/off WLAN,
Bluetooth, LCD backlight, camera, cardreader and touchpad.
On Asus UX31A ultrabook it allows to handle hotkeys, on/off WLAN, Bluetooth,
Wireless LED, control keyboard backlight brightness, monitor temperature
and fan speed. LCD brightness control doesn't work now for unknown reason,
possibly requiring some video card initialization.
Sponsored by: iXsystems, Inc.
2012-07-02 08:31:29 +00:00
|
|
|
dev/acpi_support/acpi_asus_wmi.c optional acpi_asus_wmi acpi
|
2005-03-18 09:34:52 +00:00
|
|
|
dev/acpi_support/acpi_fujitsu.c optional acpi_fujitsu acpi
|
2009-06-23 13:17:25 +00:00
|
|
|
dev/acpi_support/acpi_hp.c optional acpi_hp acpi
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/acpi_support/acpi_ibm.c optional acpi_ibm acpi
|
2004-11-15 07:48:22 +00:00
|
|
|
dev/acpi_support/acpi_panasonic.c optional acpi_panasonic acpi
|
|
|
|
dev/acpi_support/acpi_sony.c optional acpi_sony acpi
|
|
|
|
dev/acpi_support/acpi_toshiba.c optional acpi_toshiba acpi
|
2010-06-25 15:32:46 +00:00
|
|
|
dev/acpi_support/atk0110.c optional aibs acpi
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/acpica/Osd/OsdDebug.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdHardware.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdInterrupt.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdMemory.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdSchedule.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdStream.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdSynch.c optional acpi
|
|
|
|
dev/acpica/Osd/OsdTable.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi.c optional acpi
|
2003-04-29 19:19:47 +00:00
|
|
|
dev/acpica/acpi_acad.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_battery.c optional acpi
|
|
|
|
dev/acpica/acpi_button.c optional acpi
|
2003-04-29 19:19:47 +00:00
|
|
|
dev/acpica/acpi_cmbat.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_cpu.c optional acpi
|
|
|
|
dev/acpica/acpi_ec.c optional acpi
|
2003-07-09 16:14:10 +00:00
|
|
|
dev/acpica/acpi_isab.c optional acpi isa
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_lid.c optional acpi
|
2003-11-15 19:26:06 +00:00
|
|
|
dev/acpica/acpi_package.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_pci.c optional acpi pci
|
|
|
|
dev/acpica/acpi_pci_link.c optional acpi pci
|
|
|
|
dev/acpica/acpi_pcib.c optional acpi pci
|
|
|
|
dev/acpica/acpi_pcib_acpi.c optional acpi pci
|
|
|
|
dev/acpica/acpi_pcib_pci.c optional acpi pci
|
2005-02-24 20:48:07 +00:00
|
|
|
dev/acpica/acpi_perf.c optional acpi
|
2004-04-14 18:13:16 +00:00
|
|
|
dev/acpica/acpi_powerres.c optional acpi
|
2004-06-30 04:47:31 +00:00
|
|
|
dev/acpica/acpi_quirk.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_resource.c optional acpi
|
2005-10-23 00:22:02 +00:00
|
|
|
dev/acpica/acpi_smbat.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_thermal.c optional acpi
|
2005-02-24 20:48:07 +00:00
|
|
|
dev/acpica/acpi_throttle.c optional acpi
|
2002-10-24 19:05:04 +00:00
|
|
|
dev/acpica/acpi_timer.c optional acpi
|
2004-03-01 08:12:55 +00:00
|
|
|
dev/acpica/acpi_video.c optional acpi_video acpi
|
2006-04-15 12:31:34 +00:00
|
|
|
dev/acpica/acpi_dock.c optional acpi_dock acpi
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/adlink/adlink.c optional adlink
|
|
|
|
dev/advansys/adv_eisa.c optional adv eisa
|
|
|
|
dev/advansys/adv_pci.c optional adv pci
|
|
|
|
dev/advansys/advansys.c optional adv
|
|
|
|
dev/advansys/advlib.c optional adv
|
|
|
|
dev/advansys/advmcode.c optional adv
|
|
|
|
dev/advansys/adw_pci.c optional adw pci
|
|
|
|
dev/advansys/adwcam.c optional adw
|
|
|
|
dev/advansys/adwlib.c optional adw
|
|
|
|
dev/advansys/adwmcode.c optional adw
|
2008-10-03 10:31:31 +00:00
|
|
|
dev/ae/if_ae.c optional ae pci
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/age/if_age.c optional age pci
|
2007-11-12 21:51:38 +00:00
|
|
|
dev/agp/agp.c optional agp pci
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/agp/agp_if.m optional agp pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/aha/aha.c optional aha
|
|
|
|
dev/aha/aha_isa.c optional aha isa
|
|
|
|
dev/aha/aha_mca.c optional aha mca
|
|
|
|
dev/ahb/ahb.c optional ahb eisa
|
2014-09-04 22:22:53 +00:00
|
|
|
dev/ahci/ahci.c optional ahci
|
|
|
|
dev/ahci/ahciem.c optional ahci
|
|
|
|
dev/ahci/ahci_pci.c optional ahci pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/aic/aic.c optional aic
|
|
|
|
dev/aic/aic_pccard.c optional aic pccard
|
|
|
|
dev/aic7xxx/ahc_eisa.c optional ahc eisa
|
|
|
|
dev/aic7xxx/ahc_isa.c optional ahc isa
|
2011-12-21 15:59:18 +00:00
|
|
|
dev/aic7xxx/ahc_pci.c optional ahc pci \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}"
|
|
|
|
dev/aic7xxx/ahd_pci.c optional ahd pci \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}"
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/aic7xxx/aic7770.c optional ahc
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/aic7xxx/aic79xx.c optional ahd pci
|
2002-06-06 16:35:58 +00:00
|
|
|
dev/aic7xxx/aic79xx_osm.c optional ahd pci
|
|
|
|
dev/aic7xxx/aic79xx_pci.c optional ahd pci
|
2014-01-07 19:33:17 +00:00
|
|
|
dev/aic7xxx/aic79xx_reg_print.c optional ahd pci ahd_reg_pretty_print
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/aic7xxx/aic7xxx.c optional ahc
|
|
|
|
dev/aic7xxx/aic7xxx_93cx6.c optional ahc
|
|
|
|
dev/aic7xxx/aic7xxx_osm.c optional ahc
|
|
|
|
dev/aic7xxx/aic7xxx_pci.c optional ahc pci
|
2014-01-07 19:33:17 +00:00
|
|
|
dev/aic7xxx/aic7xxx_reg_print.c optional ahc ahc_reg_pretty_print
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/alc/if_alc.c optional alc pci
|
|
|
|
dev/ale/if_ale.c optional ale pci
|
2014-09-23 06:31:15 +00:00
|
|
|
dev/alpm/alpm.c optional alpm pci
|
Add altera_avgen(4), a generic device driver to be used by hard and soft
CPU cores on Altera FPGAs. The device driver allows memory-mapped devices
on Altera's Avalon SoC bus to be exported to userspace via device nodes.
device.hints directories dictate device name, permissible access methods,
physical address and length, and I/O alignment. Devices can be accessed
using read(2)/write(2), but also memory mapped in userspace using mmap(2).
Devices attach directly to the Nexus, as is common for embedded device
drivers; in the future something more mature might be desirable. There is
currently no facility to support directing device-originated interrupts to
userspace.
In the future, this device driver may be renamed to socgen(4), as it can
in principle also be used with other system-on-chip (SoC) busses, such as
Axi on ASICs and FPGAs. However, we have only tested it on Avalon busses
with memory-mapped ROMs, frame buffers, etc.
Sponsored by: DARPA, AFRL
2012-08-25 11:07:43 +00:00
|
|
|
dev/altera/avgen/altera_avgen.c optional altera_avgen
|
2013-01-13 16:51:57 +00:00
|
|
|
dev/altera/avgen/altera_avgen_fdt.c optional altera_avgen fdt
|
2013-01-13 16:43:59 +00:00
|
|
|
dev/altera/avgen/altera_avgen_nexus.c optional altera_avgen
|
Add a device driver for the Altera University Program SD Card IP Core,
which can be synthesised in Altera FPGAs. An altera_sdcardc device
probes during the boot, and /dev/altera_sdcard devices come and go as
inserted and removed. The device driver attaches directly to the
Nexus, as is common for system-on-chip device drivers.
This IP core suffers a number of significant limitations, including a
lack of interrupt-driven I/O -- we must implement timer-driven polling,
only CSD 0 cards (up to 2G) are supported, there are serious memory
access issues that require the driver to verify writes to memory-mapped
buffers, undocumented alignment requirements, and erroneous error
returns. The driver must therefore work quite hard, despite a fairly
simple hardware-software interface. The IP core also supports at most
one outstanding I/O at a time, so is not a speed demon.
However, with the above workarounds, and subject to performance
problems, it works quite reliably in practice, and we can use it for
read-write mounts of root file systems, etc.
Sponsored by: DARPA, AFRL
2012-08-25 11:19:20 +00:00
|
|
|
dev/altera/sdcard/altera_sdcard.c optional altera_sdcard
|
|
|
|
dev/altera/sdcard/altera_sdcard_disk.c optional altera_sdcard
|
|
|
|
dev/altera/sdcard/altera_sdcard_io.c optional altera_sdcard
|
2013-01-13 15:15:24 +00:00
|
|
|
dev/altera/sdcard/altera_sdcard_fdt.c optional altera_sdcard fdt
|
Add a device driver for the Altera University Program SD Card IP Core,
which can be synthesised in Altera FPGAs. An altera_sdcardc device
probes during the boot, and /dev/altera_sdcard devices come and go as
inserted and removed. The device driver attaches directly to the
Nexus, as is common for system-on-chip device drivers.
This IP core suffers a number of significant limitations, including a
lack of interrupt-driven I/O -- we must implement timer-driven polling,
only CSD 0 cards (up to 2G) are supported, there are serious memory
access issues that require the driver to verify writes to memory-mapped
buffers, undocumented alignment requirements, and erroneous error
returns. The driver must therefore work quite hard, despite a fairly
simple hardware-software interface. The IP core also supports at most
one outstanding I/O at a time, so is not a speed demon.
However, with the above workarounds, and subject to performance
problems, it works quite reliably in practice, and we can use it for
read-write mounts of root file systems, etc.
Sponsored by: DARPA, AFRL
2012-08-25 11:19:20 +00:00
|
|
|
dev/altera/sdcard/altera_sdcard_nexus.c optional altera_sdcard
|
2014-11-25 16:24:31 +00:00
|
|
|
dev/altera/pio/pio.c optional altera_pio
|
|
|
|
dev/altera/pio/pio_if.m optional altera_pio
|
2014-09-23 06:31:15 +00:00
|
|
|
dev/amdpm/amdpm.c optional amdpm pci | nfpm pci
|
2014-09-23 05:54:18 +00:00
|
|
|
dev/amdsmb/amdsmb.c optional amdsmb pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/amr/amr.c optional amr
|
2008-11-03 00:53:54 +00:00
|
|
|
dev/amr/amr_cam.c optional amrp amr
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/amr/amr_disk.c optional amr
|
2006-01-24 21:13:50 +00:00
|
|
|
dev/amr/amr_linux.c optional amr compat_linux
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/amr/amr_pci.c optional amr pci
|
|
|
|
dev/an/if_an.c optional an
|
|
|
|
dev/an/if_an_isa.c optional an isa
|
|
|
|
dev/an/if_an_pccard.c optional an pccard
|
|
|
|
dev/an/if_an_pci.c optional an pci
|
This is the roumored ATA modulerisation works, and it needs a little explanation.
If you just config KERNEL as usual there should be no apparent changes, you'll get all chipset support code compiled in.
However there is now a way to only compile in code for chipsets needed on a pr vendor basis. ATA now has the following "device" entries:
atacore: ATA core functionality, always needed for any ATA setup
atacard: CARDBUS support
atacbus: PC98 cbus support
ataisa: ISA bus support
atapci: PCI bus support only generic chipset support.
ataahci: AHCI support, also pulled in by some vendor modules.
ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek, atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron, atamarvell, atamicron, atanational, atanetcell, atanvidia, atapromise, ataserverworks, atasiliconimage, atasis, atavia; Vendor support, ie atavia for VIA chipsets
atadisk: ATA disk driver
ataraid: ATA softraid driver
atapicd: ATAPI cd/dvd driver
atapifd: ATAPI floppy/flashdisk driver
atapist: ATAPI tape driver
atausb: ATA<>USB bridge
atapicam: ATA<>CAM bridge
This makes it possible to config a kernel with just VIA chipset support by having the following ATA lines in the kernel config file:
device atacore
device atapci
device atavia
And then you need the atadisk, atapicd etc lines in there just as usual.
If you use ATA as modules loaded at boot there is few changes except the rename of the "ata" module to "atacore", things looks just as usual.
However under atapci you now have a whole bunch of vendor specific drivers, that you can kldload individually depending on you needs. Drivers have the same names as used in the kernel config explained above.
2008-10-09 12:56:57 +00:00
|
|
|
#
|
|
|
|
dev/ata/ata_if.m optional ata | atacore
|
|
|
|
dev/ata/ata-all.c optional ata | atacore
|
2009-06-25 18:09:23 +00:00
|
|
|
dev/ata/ata-dma.c optional ata | atacore
|
This is the roumored ATA modulerisation works, and it needs a little explanation.
If you just config KERNEL as usual there should be no apparent changes, you'll get all chipset support code compiled in.
However there is now a way to only compile in code for chipsets needed on a pr vendor basis. ATA now has the following "device" entries:
atacore: ATA core functionality, always needed for any ATA setup
atacard: CARDBUS support
atacbus: PC98 cbus support
ataisa: ISA bus support
atapci: PCI bus support only generic chipset support.
ataahci: AHCI support, also pulled in by some vendor modules.
ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek, atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron, atamarvell, atamicron, atanational, atanetcell, atanvidia, atapromise, ataserverworks, atasiliconimage, atasis, atavia; Vendor support, ie atavia for VIA chipsets
atadisk: ATA disk driver
ataraid: ATA softraid driver
atapicd: ATAPI cd/dvd driver
atapifd: ATAPI floppy/flashdisk driver
atapist: ATAPI tape driver
atausb: ATA<>USB bridge
atapicam: ATA<>CAM bridge
This makes it possible to config a kernel with just VIA chipset support by having the following ATA lines in the kernel config file:
device atacore
device atapci
device atavia
And then you need the atadisk, atapicd etc lines in there just as usual.
If you use ATA as modules loaded at boot there is few changes except the rename of the "ata" module to "atacore", things looks just as usual.
However under atapci you now have a whole bunch of vendor specific drivers, that you can kldload individually depending on you needs. Drivers have the same names as used in the kernel config explained above.
2008-10-09 12:56:57 +00:00
|
|
|
dev/ata/ata-lowlevel.c optional ata | atacore
|
2009-06-25 18:09:23 +00:00
|
|
|
dev/ata/ata-sata.c optional ata | atacore
|
This is the roumored ATA modulerisation works, and it needs a little explanation.
If you just config KERNEL as usual there should be no apparent changes, you'll get all chipset support code compiled in.
However there is now a way to only compile in code for chipsets needed on a pr vendor basis. ATA now has the following "device" entries:
atacore: ATA core functionality, always needed for any ATA setup
atacard: CARDBUS support
atacbus: PC98 cbus support
ataisa: ISA bus support
atapci: PCI bus support only generic chipset support.
ataahci: AHCI support, also pulled in by some vendor modules.
ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek, atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron, atamarvell, atamicron, atanational, atanetcell, atanvidia, atapromise, ataserverworks, atasiliconimage, atasis, atavia; Vendor support, ie atavia for VIA chipsets
atadisk: ATA disk driver
ataraid: ATA softraid driver
atapicd: ATAPI cd/dvd driver
atapifd: ATAPI floppy/flashdisk driver
atapist: ATAPI tape driver
atausb: ATA<>USB bridge
atapicam: ATA<>CAM bridge
This makes it possible to config a kernel with just VIA chipset support by having the following ATA lines in the kernel config file:
device atacore
device atapci
device atavia
And then you need the atadisk, atapicd etc lines in there just as usual.
If you use ATA as modules loaded at boot there is few changes except the rename of the "ata" module to "atacore", things looks just as usual.
However under atapci you now have a whole bunch of vendor specific drivers, that you can kldload individually depending on you needs. Drivers have the same names as used in the kernel config explained above.
2008-10-09 12:56:57 +00:00
|
|
|
dev/ata/ata-card.c optional ata pccard | atapccard
|
|
|
|
dev/ata/ata-cbus.c optional ata pc98 | atapc98
|
|
|
|
dev/ata/ata-isa.c optional ata isa | ataisa
|
|
|
|
dev/ata/ata-pci.c optional ata pci | atapci
|
|
|
|
dev/ata/chipsets/ata-acard.c optional ata pci | ataacard
|
|
|
|
dev/ata/chipsets/ata-acerlabs.c optional ata pci | ataacerlabs
|
|
|
|
dev/ata/chipsets/ata-amd.c optional ata pci | ataamd
|
|
|
|
dev/ata/chipsets/ata-ati.c optional ata pci | ataati
|
|
|
|
dev/ata/chipsets/ata-cenatek.c optional ata pci | atacenatek
|
|
|
|
dev/ata/chipsets/ata-cypress.c optional ata pci | atacypress
|
|
|
|
dev/ata/chipsets/ata-cyrix.c optional ata pci | atacyrix
|
|
|
|
dev/ata/chipsets/ata-highpoint.c optional ata pci | atahighpoint
|
|
|
|
dev/ata/chipsets/ata-intel.c optional ata pci | ataintel
|
|
|
|
dev/ata/chipsets/ata-ite.c optional ata pci | ataite
|
|
|
|
dev/ata/chipsets/ata-jmicron.c optional ata pci | atajmicron
|
2015-03-24 18:09:07 +00:00
|
|
|
dev/ata/chipsets/ata-marvell.c optional ata pci | atamarvell
|
This is the roumored ATA modulerisation works, and it needs a little explanation.
If you just config KERNEL as usual there should be no apparent changes, you'll get all chipset support code compiled in.
However there is now a way to only compile in code for chipsets needed on a pr vendor basis. ATA now has the following "device" entries:
atacore: ATA core functionality, always needed for any ATA setup
atacard: CARDBUS support
atacbus: PC98 cbus support
ataisa: ISA bus support
atapci: PCI bus support only generic chipset support.
ataahci: AHCI support, also pulled in by some vendor modules.
ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek, atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron, atamarvell, atamicron, atanational, atanetcell, atanvidia, atapromise, ataserverworks, atasiliconimage, atasis, atavia; Vendor support, ie atavia for VIA chipsets
atadisk: ATA disk driver
ataraid: ATA softraid driver
atapicd: ATAPI cd/dvd driver
atapifd: ATAPI floppy/flashdisk driver
atapist: ATAPI tape driver
atausb: ATA<>USB bridge
atapicam: ATA<>CAM bridge
This makes it possible to config a kernel with just VIA chipset support by having the following ATA lines in the kernel config file:
device atacore
device atapci
device atavia
And then you need the atadisk, atapicd etc lines in there just as usual.
If you use ATA as modules loaded at boot there is few changes except the rename of the "ata" module to "atacore", things looks just as usual.
However under atapci you now have a whole bunch of vendor specific drivers, that you can kldload individually depending on you needs. Drivers have the same names as used in the kernel config explained above.
2008-10-09 12:56:57 +00:00
|
|
|
dev/ata/chipsets/ata-micron.c optional ata pci | atamicron
|
|
|
|
dev/ata/chipsets/ata-national.c optional ata pci | atanational
|
|
|
|
dev/ata/chipsets/ata-netcell.c optional ata pci | atanetcell
|
|
|
|
dev/ata/chipsets/ata-nvidia.c optional ata pci | atanvidia
|
|
|
|
dev/ata/chipsets/ata-promise.c optional ata pci | atapromise
|
|
|
|
dev/ata/chipsets/ata-serverworks.c optional ata pci | ataserverworks
|
2009-10-29 20:53:26 +00:00
|
|
|
dev/ata/chipsets/ata-siliconimage.c optional ata pci | atasiliconimage | ataati
|
This is the roumored ATA modulerisation works, and it needs a little explanation.
If you just config KERNEL as usual there should be no apparent changes, you'll get all chipset support code compiled in.
However there is now a way to only compile in code for chipsets needed on a pr vendor basis. ATA now has the following "device" entries:
atacore: ATA core functionality, always needed for any ATA setup
atacard: CARDBUS support
atacbus: PC98 cbus support
ataisa: ISA bus support
atapci: PCI bus support only generic chipset support.
ataahci: AHCI support, also pulled in by some vendor modules.
ataacard, ataacerlabs, ataadaptec, ataamd, ataati, atacenatek, atacypress, atacyrix, atahighpoint, ataintel, ataite, atajmicron, atamarvell, atamicron, atanational, atanetcell, atanvidia, atapromise, ataserverworks, atasiliconimage, atasis, atavia; Vendor support, ie atavia for VIA chipsets
atadisk: ATA disk driver
ataraid: ATA softraid driver
atapicd: ATAPI cd/dvd driver
atapifd: ATAPI floppy/flashdisk driver
atapist: ATAPI tape driver
atausb: ATA<>USB bridge
atapicam: ATA<>CAM bridge
This makes it possible to config a kernel with just VIA chipset support by having the following ATA lines in the kernel config file:
device atacore
device atapci
device atavia
And then you need the atadisk, atapicd etc lines in there just as usual.
If you use ATA as modules loaded at boot there is few changes except the rename of the "ata" module to "atacore", things looks just as usual.
However under atapci you now have a whole bunch of vendor specific drivers, that you can kldload individually depending on you needs. Drivers have the same names as used in the kernel config explained above.
2008-10-09 12:56:57 +00:00
|
|
|
dev/ata/chipsets/ata-sis.c optional ata pci | atasis
|
|
|
|
dev/ata/chipsets/ata-via.c optional ata pci | atavia
|
|
|
|
#
|
2011-03-31 08:07:13 +00:00
|
|
|
dev/ath/if_ath_pci.c optional ath_pci pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
|
|
|
#
|
|
|
|
dev/ath/if_ath_ahb.c optional ath_ahb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
|
|
|
#
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/if_ath.c optional ath \
|
2012-11-15 06:58:18 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2014-08-16 03:05:02 +00:00
|
|
|
dev/ath/if_ath_alq.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2012-05-20 04:14:29 +00:00
|
|
|
dev/ath/if_ath_beacon.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
Bring over the initial static bluetooth coexistence configuration
for the WB195 combo NIC - an AR9285 w/ an AR3011 USB bluetooth NIC.
The AR3011 is wired up using a 3-wire coexistence scheme to the AR9285.
The code in if_ath_btcoex.c sets up the initial hardware mapping
and coexistence configuration. There's nothing special about it -
it's static; it doesn't try to configure bluetooth / MAC traffic priorities
or try to figure out what's actually going on. It's enough to stop basic
bluetooth traffic from causing traffic stalls and diassociation from
the wireless network.
To use this code, you must have the above NIC. No, it won't work
for the AR9287+AR3012, nor the AR9485, AR9462 or AR955x combo cards.
Then you set a kernel hint before boot or before kldload, where 'X'
is the unit number of your AR9285 NIC:
# kenv hint.ath.X.btcoex_profile=wb195
This will then appear in your boot messages:
[100482] athX: Enabling WB195 BTCOEX
This code is going to evolve pretty quickly (well, depending upon my
spare time) so don't assume the btcoex API is going to stay stable.
In order to use the bluetooth side, you must also load in firmware using
ath3kfw and the binary firmware file (ath3k-1.fw in my case.)
Tested:
* AR9280, no interference
* WB195 - AR9285 + AR3011 combo; STA mode; basic bluetooth inquiries
were enough to cause traffic stalls and disassociations. This has
stopped with the btcoex profile code.
TODO:
* Importantly - the AR9285 needs ASPM disabled if bluetooth coexistence
is enabled. No, I don't know why. It's likely some kind of bug to do
with the AR3011 sending bluetooth coexistence signals whilst the device
is asleep. Since we don't actually sleep the MAC just yet, it shouldn't
be a problem. That said, to be totally correct:
+ ASPM should be disabled - upon attach and wakeup
+ The PCIe powersave HAL code should never be called
Look at what the ath9k driver does for inspiration.
* Add WB197 (AR9287+AR3012) support
* Add support for the AR9485, which is another combo like the AR9285
* The later NICs have a different signaling mechanism between the MAC
and the bluetooth device; I haven't even begun to experiment with
making that HAL code work. But it should be a lot more automatic.
* The hardware can do much more interesting traffic weighting with
bluetooth and wifi traffic. None of this is currently used.
Ideally someone would code up something to watch the bluetooth traffic
GPIO (via an interrupt) and then watch it go high/low; then figure out
what the bluetooth traffic is and adjust things appropriately.
* If I get the time I may add in some code to at least track this stuff
and expose statistics. But it's up to someone else to experiment with
the bluetooth coexistence support and add the interesting stuff (like
"real" detection of bulk, audio, etc bluetooth traffic patterns and
change wifi parameters appropriately - eg, maximum aggregate length,
transmit power, using quiet time to control TX duty cycle, etc.)
2013-06-07 09:02:02 +00:00
|
|
|
dev/ath/if_ath_btcoex.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-01-29 05:08:21 +00:00
|
|
|
dev/ath/if_ath_debug.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2015-11-24 03:42:58 +00:00
|
|
|
dev/ath/if_ath_descdma.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-03-02 17:19:54 +00:00
|
|
|
dev/ath/if_ath_keycache.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2015-11-24 03:42:58 +00:00
|
|
|
dev/ath/if_ath_ioctl.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-12-26 05:37:09 +00:00
|
|
|
dev/ath/if_ath_led.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2013-06-12 14:52:57 +00:00
|
|
|
dev/ath/if_ath_lna_div.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-01-29 11:35:23 +00:00
|
|
|
dev/ath/if_ath_tx.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2012-07-23 03:52:18 +00:00
|
|
|
dev/ath/if_ath_tx_edma.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-02-01 08:03:01 +00:00
|
|
|
dev/ath/if_ath_tx_ht.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2012-05-20 02:49:42 +00:00
|
|
|
dev/ath/if_ath_tdma.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-03-02 16:03:19 +00:00
|
|
|
dev/ath/if_ath_sysctl.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2012-05-20 02:05:10 +00:00
|
|
|
dev/ath/if_ath_rx.c optional ath \
|
2012-07-03 07:01:12 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
|
|
|
dev/ath/if_ath_rx_edma.c optional ath \
|
2012-05-20 02:05:10 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2013-01-02 04:00:54 +00:00
|
|
|
dev/ath/if_ath_spectral.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ah_osdep.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2009-03-12 18:18:28 +00:00
|
|
|
#
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ah.c optional ath \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
|
|
|
dev/ath/ath_hal/ah_eeprom_v1.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
|
|
|
dev/ath/ath_hal/ah_eeprom_v3.c optional ath_hal | ath_ar5211 | ath_ar5212 \
|
2006-09-18 16:30:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2009-03-12 18:18:28 +00:00
|
|
|
dev/ath/ath_hal/ah_eeprom_v14.c \
|
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2010-01-29 10:10:14 +00:00
|
|
|
dev/ath/ath_hal/ah_eeprom_v4k.c \
|
2010-02-15 17:49:49 +00:00
|
|
|
optional ath_hal | ath_ar9285 \
|
2010-01-29 10:10:14 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-05-26 20:31:08 +00:00
|
|
|
dev/ath/ath_hal/ah_eeprom_9287.c \
|
|
|
|
optional ath_hal | ath_ar9287 \
|
2012-08-29 18:14:20 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ah_regdomain.c optional ath \
|
2011-12-21 17:01:13 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WSHIFT_COUNT_NEGATIVE} ${NO_WSHIFT_COUNT_OVERFLOW} -I$S/dev/ath"
|
2009-03-12 18:18:28 +00:00
|
|
|
# ar5210
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5210/ar5210_attach.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_beacon.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_interrupts.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_keycache.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_misc.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_phy.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_power.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_recv.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_reset.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5210/ar5210_xmit.c optional ath_hal | ath_ar5210 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2009-03-12 18:18:28 +00:00
|
|
|
# ar5211
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5211/ar5211_attach.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_beacon.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_interrupts.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_keycache.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_misc.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_phy.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_power.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_recv.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_reset.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5211/ar5211_xmit.c optional ath_hal | ath_ar5211 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2009-03-12 18:18:28 +00:00
|
|
|
# ar5212
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5212/ar5212_ani.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_attach.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_beacon.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_eeprom.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_gpio.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_interrupts.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_keycache.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_misc.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_phy.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_power.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_recv.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_reset.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_rfgain.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5212_xmit.c \
|
2010-01-29 10:10:14 +00:00
|
|
|
optional ath_hal | ath_ar5212 | ath_ar5416 | ath_ar9160 | ath_ar9280 | \
|
2011-05-26 20:31:08 +00:00
|
|
|
ath_ar9285 ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2009-03-12 18:18:28 +00:00
|
|
|
# ar5416 (depends on ar5212)
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_ani.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_attach.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_beacon.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-12-03 23:43:23 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_btcoex.c \
|
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_cal.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_cal_iq.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_cal_adcgain.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_cal_adcdc.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_eeprom.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_gpio.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_interrupts.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_keycache.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_misc.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_phy.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_power.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-02-20 03:07:07 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_radar.c \
|
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_recv.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5416/ar5416_reset.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2013-01-02 01:24:36 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_spectral.c \
|
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2008-12-01 16:53:01 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar5416_xmit.c \
|
2011-05-26 20:31:08 +00:00
|
|
|
optional ath_hal | ath_ar5416 | ath_ar9160 | ath_ar9280 | ath_ar9285 | \
|
|
|
|
ath_ar9287 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-04-28 12:47:40 +00:00
|
|
|
# ar9130 (depends upon ar5416) - also requires AH_SUPPORT_AR9130
|
2011-11-24 06:27:47 +00:00
|
|
|
#
|
|
|
|
# Since this is an embedded MAC SoC, there's no need to compile it into the
|
|
|
|
# default HAL.
|
|
|
|
dev/ath/ath_hal/ar9001/ar9130_attach.c optional ath_ar9130 \
|
2011-04-28 12:47:40 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-11-24 06:27:47 +00:00
|
|
|
dev/ath/ath_hal/ar9001/ar9130_phy.c optional ath_ar9130 \
|
2011-04-28 12:47:40 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-11-24 06:27:47 +00:00
|
|
|
dev/ath/ath_hal/ar9001/ar9130_eeprom.c optional ath_ar9130 \
|
2011-04-28 12:47:40 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2009-03-12 18:18:28 +00:00
|
|
|
# ar9160 (depends on ar5416)
|
2011-01-20 09:03:40 +00:00
|
|
|
dev/ath/ath_hal/ar9001/ar9160_attach.c optional ath_hal | ath_ar9160 \
|
2008-12-01 16:53:01 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2010-02-15 17:49:49 +00:00
|
|
|
# ar9280 (depends on ar5416)
|
2011-01-20 09:03:40 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9280_attach.c optional ath_hal | ath_ar9280 | \
|
2012-11-13 06:07:13 +00:00
|
|
|
ath_ar9285 \
|
2010-02-15 17:49:49 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-03-08 06:59:59 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9280_olc.c optional ath_hal | ath_ar9280 | \
|
2012-11-13 06:07:13 +00:00
|
|
|
ath_ar9285 \
|
2011-03-08 06:59:59 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2010-02-15 17:49:49 +00:00
|
|
|
# ar9285 (depends on ar5416 and ar9280)
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_attach.c optional ath_hal | ath_ar9285 \
|
2010-02-15 17:49:49 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-12-03 23:43:23 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_btcoex.c optional ath_hal | ath_ar9285 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_reset.c optional ath_hal | ath_ar9285 \
|
2009-03-12 18:18:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_cal.c optional ath_hal | ath_ar9285 \
|
2011-03-11 11:58:54 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_phy.c optional ath_hal | ath_ar9285 \
|
2011-04-13 02:40:45 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285_diversity.c optional ath_hal | ath_ar9285 \
|
2011-04-13 11:32:15 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-05-26 20:31:08 +00:00
|
|
|
# ar9287 (depends on ar5416)
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9287_attach.c optional ath_hal | ath_ar9287 \
|
2011-05-26 20:31:08 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9287_reset.c optional ath_hal | ath_ar9287 \
|
2011-05-26 20:31:08 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9287_cal.c optional ath_hal | ath_ar9287 \
|
2011-05-26 20:31:08 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9287_olc.c optional ath_hal | ath_ar9287 \
|
2011-05-26 20:31:08 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
|
2013-05-02 07:05:34 +00:00
|
|
|
# ar9300
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_ani.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_beacon.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_eeprom.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal ${NO_WCONSTANT_CONVERSION}"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_gpio.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_interrupts.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_keycache.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_mci.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_misc.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_paprd.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_phy.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_power.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_radar.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_radio.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_recv.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_recv_ds.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c optional ath_hal | ath_ar9300 \
|
2013-12-28 23:12:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal ${NO_WSOMETIMES_UNINITIALIZED} -Wno-unused-function"
|
2013-05-02 07:05:34 +00:00
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_stub.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
2015-12-02 05:36:45 +00:00
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_spectral.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
2013-05-02 07:05:34 +00:00
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_timer.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_xmit.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
contrib/dev/ath/ath_hal/ar9300/ar9300_xmit_ds.c optional ath_hal | ath_ar9300 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal -I$S/contrib/dev/ath/ath_hal"
|
|
|
|
|
2009-03-12 18:18:28 +00:00
|
|
|
# rf backends
|
|
|
|
dev/ath/ath_hal/ar5212/ar2316.c optional ath_rf2316 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar2317.c optional ath_rf2317 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar2413.c optional ath_hal | ath_rf2413 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar2425.c optional ath_hal | ath_rf2425 | ath_rf2417 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5111.c optional ath_hal | ath_rf5111 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5112.c optional ath_hal | ath_rf5112 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
|
|
|
dev/ath/ath_hal/ar5212/ar5413.c optional ath_hal | ath_rf5413 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-11-24 06:27:47 +00:00
|
|
|
dev/ath/ath_hal/ar5416/ar2133.c optional ath_hal | ath_ar5416 | \
|
|
|
|
ath_ar9130 | ath_ar9160 | ath_ar9280 \
|
2009-03-12 18:18:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-01-20 09:03:40 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9280.c optional ath_hal | ath_ar9280 | ath_ar9285 \
|
2009-03-12 18:18:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-01-20 09:03:40 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9285.c optional ath_hal | ath_ar9285 \
|
2010-02-15 17:49:49 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2011-05-26 20:31:08 +00:00
|
|
|
dev/ath/ath_hal/ar9002/ar9287.c optional ath_hal | ath_ar9287 \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath -I$S/dev/ath/ath_hal"
|
2013-05-02 07:05:34 +00:00
|
|
|
|
2009-03-12 18:18:28 +00:00
|
|
|
# ath rate control algorithms
|
2008-03-31 18:49:09 +00:00
|
|
|
dev/ath/ath_rate/amrr/amrr.c optional ath_rate_amrr \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2005-11-25 22:36:40 +00:00
|
|
|
dev/ath/ath_rate/onoe/onoe.c optional ath_rate_onoe \
|
2006-09-18 16:30:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2005-11-25 22:36:40 +00:00
|
|
|
dev/ath/ath_rate/sample/sample.c optional ath_rate_sample \
|
2006-09-18 16:30:28 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2011-06-01 20:09:49 +00:00
|
|
|
# ath DFS modules
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ath/ath_dfs/null/dfs_null.c optional ath \
|
2011-06-01 20:09:49 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ath"
|
2012-11-13 06:07:13 +00:00
|
|
|
#
|
2006-04-10 20:04:22 +00:00
|
|
|
dev/bce/if_bce.c optional bce
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/bfe/if_bfe.c optional bfe
|
|
|
|
dev/bge/if_bge.c optional bge
|
|
|
|
dev/bktr/bktr_audio.c optional bktr pci
|
|
|
|
dev/bktr/bktr_card.c optional bktr pci
|
|
|
|
dev/bktr/bktr_core.c optional bktr pci
|
|
|
|
dev/bktr/bktr_i2c.c optional bktr pci smbus
|
|
|
|
dev/bktr/bktr_os.c optional bktr pci
|
|
|
|
dev/bktr/bktr_tuner.c optional bktr pci
|
|
|
|
dev/bktr/msp34xx.c optional bktr pci
|
|
|
|
dev/buslogic/bt.c optional bt
|
|
|
|
dev/buslogic/bt_eisa.c optional bt eisa
|
|
|
|
dev/buslogic/bt_isa.c optional bt isa
|
|
|
|
dev/buslogic/bt_mca.c optional bt mca
|
|
|
|
dev/buslogic/bt_pci.c optional bt pci
|
Bring in Andrew Thompson's port of Sepherosa Ziehau's bwi driver for
Broadcom BCM43xx chipsets. This driver uses the v3 firmware that
needs to be fetched separately. A port will be committed to create
the bwi firmware module.
The driver matches the following chips: Broadcom BCM4301, BCM4307,
BCM4306, BCM4309, BCM4311, BCM4312, BCM4318, BCM4319
The driver works for 802.11b and 802.11g.
Limitations:
This doesn't support the 802.11a or 802.11n portion of radios.
Some BCM4306 and BCM4309 cards don't work with Channel 1, 2 or 3.
Documenation for this firmware is reverse engineered from
http://bcm.sipsolutions.net/
V4 of the firmware is needed for 11a or 11n support
http://bcm-v4.sipsolutions.net/
Firmware needs to be fetched from a third party, port to be committed
# I've tested this with a BCM4319 mini-pci and a BCM4318 CardBus card, and
# not connected it to the build until the firmware port is committed.
Obtained from: DragonFlyBSD, //depot/projects/vap
Reviewed by: sam@, thompsa@
2009-05-03 04:01:43 +00:00
|
|
|
dev/bwi/bwimac.c optional bwi
|
|
|
|
dev/bwi/bwiphy.c optional bwi
|
2009-05-11 04:57:40 +00:00
|
|
|
dev/bwi/bwirf.c optional bwi
|
Bring in Andrew Thompson's port of Sepherosa Ziehau's bwi driver for
Broadcom BCM43xx chipsets. This driver uses the v3 firmware that
needs to be fetched separately. A port will be committed to create
the bwi firmware module.
The driver matches the following chips: Broadcom BCM4301, BCM4307,
BCM4306, BCM4309, BCM4311, BCM4312, BCM4318, BCM4319
The driver works for 802.11b and 802.11g.
Limitations:
This doesn't support the 802.11a or 802.11n portion of radios.
Some BCM4306 and BCM4309 cards don't work with Channel 1, 2 or 3.
Documenation for this firmware is reverse engineered from
http://bcm.sipsolutions.net/
V4 of the firmware is needed for 11a or 11n support
http://bcm-v4.sipsolutions.net/
Firmware needs to be fetched from a third party, port to be committed
# I've tested this with a BCM4319 mini-pci and a BCM4318 CardBus card, and
# not connected it to the build until the firmware port is committed.
Obtained from: DragonFlyBSD, //depot/projects/vap
Reviewed by: sam@, thompsa@
2009-05-03 04:01:43 +00:00
|
|
|
dev/bwi/if_bwi.c optional bwi
|
|
|
|
dev/bwi/if_bwi_pci.c optional bwi pci
|
2012-08-20 18:33:03 +00:00
|
|
|
# XXX Work around clang warning, until maintainer approves fix.
|
|
|
|
dev/bwn/if_bwn.c optional bwn siba_bwn \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/cardbus/cardbus.c optional cardbus
|
2000-10-18 03:25:13 +00:00
|
|
|
dev/cardbus/cardbus_cis.c optional cardbus
|
2005-12-29 01:43:47 +00:00
|
|
|
dev/cardbus/cardbus_device.c optional cardbus
|
2009-06-15 18:22:41 +00:00
|
|
|
dev/cas/if_cas.c optional cas
|
2013-04-30 18:33:29 +00:00
|
|
|
dev/cfi/cfi_bus_fdt.c optional cfi fdt
|
2013-04-03 22:37:40 +00:00
|
|
|
dev/cfi/cfi_bus_nexus.c optional cfi
|
2008-10-25 06:18:12 +00:00
|
|
|
dev/cfi/cfi_core.c optional cfi
|
|
|
|
dev/cfi/cfi_dev.c optional cfi
|
2009-03-09 23:16:02 +00:00
|
|
|
dev/cfi/cfi_disk.c optional cfid
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ciss/ciss.c optional ciss
|
|
|
|
dev/cm/smc90cx6.c optional cm
|
2008-03-06 08:09:45 +00:00
|
|
|
dev/cmx/cmx.c optional cmx
|
|
|
|
dev/cmx/cmx_pccard.c optional cmx pccard
|
2005-02-05 21:01:09 +00:00
|
|
|
dev/cpufreq/ichss.c optional cpufreq
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/cs/if_cs.c optional cs
|
|
|
|
dev/cs/if_cs_isa.c optional cs isa
|
|
|
|
dev/cs/if_cs_pccard.c optional cs pccard
|
2008-09-23 03:16:54 +00:00
|
|
|
dev/cxgb/cxgb_main.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/cxgb_sge.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_mc5.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_vsc7323.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_vsc8211.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_ael1002.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
2009-10-05 20:21:41 +00:00
|
|
|
dev/cxgb/common/cxgb_aq100x.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
2008-09-23 03:16:54 +00:00
|
|
|
dev/cxgb/common/cxgb_mv88e1xxx.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_xgmac.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_t3_hw.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/common/cxgb_tn1010.c optional cxgb pci \
|
2012-11-13 06:07:13 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
2008-09-23 03:16:54 +00:00
|
|
|
dev/cxgb/sys/uipc_mvec.c optional cxgb pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
|
|
|
dev/cxgb/cxgb_t3fw.c optional cxgb cxgb_t3fw \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgb"
|
2014-12-31 23:19:16 +00:00
|
|
|
dev/cxgbe/t4_mp_ring.c optional cxgbe pci \
|
2015-02-17 19:27:14 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2011-02-18 08:00:26 +00:00
|
|
|
dev/cxgbe/t4_main.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2014-05-27 18:18:41 +00:00
|
|
|
dev/cxgbe/t4_netmap.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2011-02-18 08:00:26 +00:00
|
|
|
dev/cxgbe/t4_sge.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2011-05-30 21:07:26 +00:00
|
|
|
dev/cxgbe/t4_l2t.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
Add support for packet-sniffing tracers to cxgbe(4). This works with
all T4 and T5 based cards and is useful for analyzing TSO, LRO, TOE, and
for general purpose monitoring without tapping any cxgbe or cxl ifnet
directly.
Tracers on the T4/T5 chips provide access to Ethernet frames exactly as
they were received from or transmitted on the wire. On transmit, a
tracer will capture a frame after TSO segmentation, hw VLAN tag
insertion, hw L3 & L4 checksum insertion, etc. It will also capture
frames generated by the TCP offload engine (TOE traffic is normally
invisible to the kernel). On receive, a tracer will capture a frame
before hw VLAN extraction, runt filtering, other badness filtering,
before the steering/drop/L2-rewrite filters or the TOE have had a go at
it, and of course before sw LRO in the driver.
There are 4 tracers on a chip. A tracer can trace only in one direction
(tx or rx). For now cxgbetool will set up tracers to capture the first
128B of every transmitted or received frame on a given port. This is a
small subset of what the hardware can do. A pseudo ifnet with the same
name as the nexus driver (t4nex0 or t5nex0) will be created for tracing.
The data delivered to this ifnet is an additional copy made inside the
chip. Normal delivery to cxgbe<n> or cxl<n> will be made as usual.
/* watch cxl0, which is the first port hanging off t5nex0. */
# cxgbetool t5nex0 tracer 0 tx0 (watch what cxl0 is transmitting)
# cxgbetool t5nex0 tracer 1 rx0 (watch what cxl0 is receiving)
# cxgbetool t5nex0 tracer list
# tcpdump -i t5nex0 <== all that cxl0 sees and puts on the wire
If you were doing TSO, a tcpdump on cxl0 may have shown you ~64K
"frames" with no L3/L4 checksum but this will show you the frames that
were actually transmitted.
/* all done */
# cxgbetool t5nex0 tracer 0 disable
# cxgbetool t5nex0 tracer 1 disable
# cxgbetool t5nex0 tracer list
# ifconfig t5nex0 destroy
2013-07-26 22:04:11 +00:00
|
|
|
dev/cxgbe/t4_tracer.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2011-02-18 08:00:26 +00:00
|
|
|
dev/cxgbe/common/t4_hw.c optional cxgbe pci \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/cxgbe"
|
2012-09-13 09:01:52 +00:00
|
|
|
t4fw_cfg.c optional cxgbe \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk t4fw_cfg.fw:t4fw_cfg t4fw_cfg_uwire.fw:t4fw_cfg_uwire t4fw.fw:t4fw -mt4fw_cfg -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "t4fw_cfg.c"
|
|
|
|
t4fw_cfg.fwo optional cxgbe \
|
|
|
|
dependency "t4fw_cfg.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "t4fw_cfg.fwo"
|
|
|
|
t4fw_cfg.fw optional cxgbe \
|
|
|
|
dependency "$S/dev/cxgbe/firmware/t4fw_cfg.txt" \
|
|
|
|
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "t4fw_cfg.fw"
|
|
|
|
t4fw_cfg_uwire.fwo optional cxgbe \
|
|
|
|
dependency "t4fw_cfg_uwire.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "t4fw_cfg_uwire.fwo"
|
|
|
|
t4fw_cfg_uwire.fw optional cxgbe \
|
|
|
|
dependency "$S/dev/cxgbe/firmware/t4fw_cfg_uwire.txt" \
|
|
|
|
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "t4fw_cfg_uwire.fw"
|
|
|
|
t4fw.fwo optional cxgbe \
|
|
|
|
dependency "t4fw.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "t4fw.fwo"
|
|
|
|
t4fw.fw optional cxgbe \
|
2016-03-01 02:36:50 +00:00
|
|
|
dependency "$S/dev/cxgbe/firmware/t4fw-1.15.28.0.bin.uu" \
|
2012-09-13 09:01:52 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "t4fw.fw"
|
2013-07-03 23:52:15 +00:00
|
|
|
t5fw_cfg.c optional cxgbe \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk t5fw_cfg.fw:t5fw_cfg t5fw.fw:t5fw -mt5fw_cfg -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "t5fw_cfg.c"
|
|
|
|
t5fw_cfg.fwo optional cxgbe \
|
|
|
|
dependency "t5fw_cfg.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "t5fw_cfg.fwo"
|
|
|
|
t5fw_cfg.fw optional cxgbe \
|
|
|
|
dependency "$S/dev/cxgbe/firmware/t5fw_cfg.txt" \
|
|
|
|
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "t5fw_cfg.fw"
|
|
|
|
t5fw.fwo optional cxgbe \
|
|
|
|
dependency "t5fw.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "t5fw.fwo"
|
|
|
|
t5fw.fw optional cxgbe \
|
2016-03-01 02:36:50 +00:00
|
|
|
dependency "$S/dev/cxgbe/firmware/t5fw-1.15.28.0.bin.uu" \
|
2013-07-03 23:52:15 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "t5fw.fw"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/cy/cy.c optional cy
|
|
|
|
dev/cy/cy_isa.c optional cy isa
|
|
|
|
dev/cy/cy_pci.c optional cy pci
|
2015-08-19 09:49:29 +00:00
|
|
|
dev/cyapa/cyapa.c optional cyapa smbus
|
2005-10-18 06:11:59 +00:00
|
|
|
dev/dc/if_dc.c optional dc pci
|
|
|
|
dev/dc/dcphy.c optional dc pci
|
|
|
|
dev/dc/pnphy.c optional dc pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/dcons/dcons.c optional dcons
|
|
|
|
dev/dcons/dcons_crom.c optional dcons_crom
|
|
|
|
dev/dcons/dcons_os.c optional dcons
|
2006-02-26 17:54:04 +00:00
|
|
|
dev/de/if_de.c optional de pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/digi/CX.c optional digi_CX
|
|
|
|
dev/digi/CX_PCI.c optional digi_CX_PCI
|
|
|
|
dev/digi/EPCX.c optional digi_EPCX
|
|
|
|
dev/digi/EPCX_PCI.c optional digi_EPCX_PCI
|
|
|
|
dev/digi/Xe.c optional digi_Xe
|
|
|
|
dev/digi/Xem.c optional digi_Xem
|
|
|
|
dev/digi/Xr.c optional digi_Xr
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/digi/digi.c optional digi
|
|
|
|
dev/digi/digi_isa.c optional digi isa
|
|
|
|
dev/digi/digi_pci.c optional digi pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/dpt/dpt_eisa.c optional dpt eisa
|
|
|
|
dev/dpt/dpt_pci.c optional dpt pci
|
|
|
|
dev/dpt/dpt_scsi.c optional dpt
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
dev/drm/ati_pcigart.c optional drm
|
|
|
|
dev/drm/drm_agpsupport.c optional drm
|
|
|
|
dev/drm/drm_auth.c optional drm
|
|
|
|
dev/drm/drm_bufs.c optional drm
|
|
|
|
dev/drm/drm_context.c optional drm
|
|
|
|
dev/drm/drm_dma.c optional drm
|
|
|
|
dev/drm/drm_drawable.c optional drm
|
|
|
|
dev/drm/drm_drv.c optional drm
|
|
|
|
dev/drm/drm_fops.c optional drm
|
2010-01-31 14:25:29 +00:00
|
|
|
dev/drm/drm_hashtab.c optional drm
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
dev/drm/drm_ioctl.c optional drm
|
|
|
|
dev/drm/drm_irq.c optional drm
|
|
|
|
dev/drm/drm_lock.c optional drm
|
|
|
|
dev/drm/drm_memory.c optional drm
|
2010-01-31 14:25:29 +00:00
|
|
|
dev/drm/drm_mm.c optional drm
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
dev/drm/drm_pci.c optional drm
|
|
|
|
dev/drm/drm_scatter.c optional drm
|
2010-01-31 14:25:29 +00:00
|
|
|
dev/drm/drm_sman.c optional drm
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
dev/drm/drm_sysctl.c optional drm
|
|
|
|
dev/drm/drm_vm.c optional drm
|
2005-12-03 01:23:50 +00:00
|
|
|
dev/drm/i915_dma.c optional i915drm
|
|
|
|
dev/drm/i915_drv.c optional i915drm
|
|
|
|
dev/drm/i915_irq.c optional i915drm
|
|
|
|
dev/drm/i915_mem.c optional i915drm
|
2008-08-23 20:59:12 +00:00
|
|
|
dev/drm/i915_suspend.c optional i915drm
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
dev/drm/mach64_dma.c optional mach64drm
|
|
|
|
dev/drm/mach64_drv.c optional mach64drm
|
|
|
|
dev/drm/mach64_irq.c optional mach64drm
|
|
|
|
dev/drm/mach64_state.c optional mach64drm
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/drm/mga_dma.c optional mgadrm
|
|
|
|
dev/drm/mga_drv.c optional mgadrm
|
|
|
|
dev/drm/mga_irq.c optional mgadrm
|
2012-11-09 17:46:07 +00:00
|
|
|
dev/drm/mga_state.c optional mgadrm
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/drm/mga_warp.c optional mgadrm
|
2011-12-30 01:54:45 +00:00
|
|
|
dev/drm/r128_cce.c optional r128drm \
|
2015-01-03 03:35:18 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/drm/r128_drv.c optional r128drm
|
|
|
|
dev/drm/r128_irq.c optional r128drm
|
2015-01-03 03:35:18 +00:00
|
|
|
dev/drm/r128_state.c optional r128drm
|
2005-07-20 21:10:57 +00:00
|
|
|
dev/drm/r300_cmdbuf.c optional radeondrm
|
2009-08-23 14:55:57 +00:00
|
|
|
dev/drm/r600_blit.c optional radeondrm
|
2011-12-30 01:54:45 +00:00
|
|
|
dev/drm/r600_cp.c optional radeondrm \
|
2015-01-03 03:35:18 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}"
|
2011-12-30 01:54:45 +00:00
|
|
|
dev/drm/radeon_cp.c optional radeondrm \
|
2015-01-03 03:35:18 +00:00
|
|
|
compile-with "${NORMAL_C} ${NO_WCONSTANT_CONVERSION}"
|
2009-08-23 14:55:57 +00:00
|
|
|
dev/drm/radeon_cs.c optional radeondrm
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/drm/radeon_drv.c optional radeondrm
|
|
|
|
dev/drm/radeon_irq.c optional radeondrm
|
|
|
|
dev/drm/radeon_mem.c optional radeondrm
|
|
|
|
dev/drm/radeon_state.c optional radeondrm
|
2005-11-28 23:13:57 +00:00
|
|
|
dev/drm/savage_bci.c optional savagedrm
|
|
|
|
dev/drm/savage_drv.c optional savagedrm
|
|
|
|
dev/drm/savage_state.c optional savagedrm
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/drm/sis_drv.c optional sisdrm
|
|
|
|
dev/drm/sis_ds.c optional sisdrm
|
|
|
|
dev/drm/sis_mm.c optional sisdrm
|
|
|
|
dev/drm/tdfx_drv.c optional tdfxdrm
|
2010-01-31 14:30:39 +00:00
|
|
|
dev/drm/via_dma.c optional viadrm
|
|
|
|
dev/drm/via_dmablit.c optional viadrm
|
|
|
|
dev/drm/via_drv.c optional viadrm
|
|
|
|
dev/drm/via_irq.c optional viadrm
|
|
|
|
dev/drm/via_map.c optional viadrm
|
|
|
|
dev/drm/via_mm.c optional viadrm
|
|
|
|
dev/drm/via_verifier.c optional viadrm
|
|
|
|
dev/drm/via_video.c optional viadrm
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ed/if_ed.c optional ed
|
2005-02-09 20:03:40 +00:00
|
|
|
dev/ed/if_ed_novell.c optional ed
|
2005-10-05 21:56:27 +00:00
|
|
|
dev/ed/if_ed_rtl80x9.c optional ed
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ed/if_ed_pccard.c optional ed pccard
|
|
|
|
dev/ed/if_ed_pci.c optional ed pci
|
|
|
|
dev/eisa/eisa_if.m standard
|
|
|
|
dev/eisa/eisaconf.c optional eisa
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/e1000/if_em.c optional em \
|
2008-07-30 22:01:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/e1000/if_lem.c optional em \
|
Update to igb and em:
em revision 7.0.0:
- Using driver devclass, seperate legacy (pre-pcie) code
into a seperate source file. This will at least help
protect against regression issues. It compiles along
with em, and is transparent to end use, devices in each
appear to be 'emX'. When using em in a modular form this
also allows the legacy stuff to be defined out.
- Add tx and rx rings as in igb, in the 82574 this becomes
actual multiqueue for the first time (2 queues) while in
other PCIE adapters its just make code cleaner.
- Add RX mbuf handling logic that matches igb, this will
eliminate packet drops due to temporary mbuf shortage.
igb revision 1.9.3:
- Following the ixgbe code, use a new approach in what
was called 'get_buf', the routine now has been made
independent of rxeof, it now does the update to the
engine TDT register, this design allows temporary
mbuf resources to become non-critical, not requiring
a packet to be discarded, instead it just returns and
does not increment the tail pointer.
- With the above change it was also unnecessary to keep
'spare' maps around, since we do not have the discard
issue.
- Performance tweaks and improvements to the code also.
MFC in a week
2010-03-29 23:36:34 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/e1000/if_igb.c optional igb \
|
2008-07-30 22:01:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_80003es2lan.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82540.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82541.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82542.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82543.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82571.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_82575.c optional em | igb \
|
2011-02-04 18:36:09 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2008-07-30 22:01:32 +00:00
|
|
|
dev/e1000/e1000_ich8lan.c optional em | igb \
|
2012-07-05 20:26:57 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_i210.c optional em | igb \
|
2008-07-30 22:01:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_api.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_mac.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_manage.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_nvm.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_phy.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2010-06-30 21:05:51 +00:00
|
|
|
dev/e1000/e1000_vf.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
|
|
|
dev/e1000/e1000_mbx.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2008-07-30 22:01:32 +00:00
|
|
|
dev/e1000/e1000_osdep.c optional em | igb \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/e1000"
|
2008-06-20 19:28:33 +00:00
|
|
|
dev/et/if_et.c optional et
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/en/if_en_pci.c optional en pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/en/midway.c optional en
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ep/if_ep.c optional ep
|
|
|
|
dev/ep/if_ep_eisa.c optional ep eisa
|
|
|
|
dev/ep/if_ep_isa.c optional ep isa
|
|
|
|
dev/ep/if_ep_mca.c optional ep mca
|
|
|
|
dev/ep/if_ep_pccard.c optional ep pccard
|
2011-11-01 21:26:57 +00:00
|
|
|
dev/esp/esp_pci.c optional esp pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/esp/ncr53c9x.c optional esp
|
2012-10-24 16:37:53 +00:00
|
|
|
dev/etherswitch/arswitch/arswitch.c optional arswitch
|
|
|
|
dev/etherswitch/arswitch/arswitch_reg.c optional arswitch
|
|
|
|
dev/etherswitch/arswitch/arswitch_phy.c optional arswitch
|
|
|
|
dev/etherswitch/arswitch/arswitch_8216.c optional arswitch
|
|
|
|
dev/etherswitch/arswitch/arswitch_8226.c optional arswitch
|
|
|
|
dev/etherswitch/arswitch/arswitch_8316.c optional arswitch
|
2014-02-24 04:47:16 +00:00
|
|
|
dev/etherswitch/arswitch/arswitch_8327.c optional arswitch
|
2012-10-24 16:37:53 +00:00
|
|
|
dev/etherswitch/arswitch/arswitch_7240.c optional arswitch
|
2013-10-16 04:10:28 +00:00
|
|
|
dev/etherswitch/arswitch/arswitch_9340.c optional arswitch
|
2013-07-23 14:24:22 +00:00
|
|
|
dev/etherswitch/arswitch/arswitch_vlans.c optional arswitch
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/etherswitch/etherswitch.c optional etherswitch
|
2012-10-24 16:37:53 +00:00
|
|
|
dev/etherswitch/etherswitch_if.m optional etherswitch
|
2013-05-08 20:58:41 +00:00
|
|
|
dev/etherswitch/ip17x/ip17x.c optional ip17x
|
|
|
|
dev/etherswitch/ip17x/ip175c.c optional ip17x
|
|
|
|
dev/etherswitch/ip17x/ip175d.c optional ip17x
|
|
|
|
dev/etherswitch/ip17x/ip17x_phy.c optional ip17x
|
|
|
|
dev/etherswitch/ip17x/ip17x_vlans.c optional ip17x
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/etherswitch/miiproxy.c optional miiproxy
|
|
|
|
dev/etherswitch/rtl8366/rtl8366rb.c optional rtl8366rb
|
2013-04-19 17:50:38 +00:00
|
|
|
dev/etherswitch/ukswitch/ukswitch.c optional ukswitch
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ex/if_ex.c optional ex
|
|
|
|
dev/ex/if_ex_isa.c optional ex isa
|
2005-07-19 02:06:48 +00:00
|
|
|
dev/ex/if_ex_pccard.c optional ex pccard
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/exca/exca.c optional cbb
|
2016-01-24 11:00:38 +00:00
|
|
|
dev/extres/clk/clk.c optional ext_resources clk
|
|
|
|
dev/extres/clk/clkdev_if.m optional ext_resources clk
|
|
|
|
dev/extres/clk/clknode_if.m optional ext_resources clk
|
2016-03-15 15:27:15 +00:00
|
|
|
dev/extres/clk/clk_bus.c optional ext_resources clk fdt
|
2016-01-24 11:00:38 +00:00
|
|
|
dev/extres/clk/clk_div.c optional ext_resources clk
|
|
|
|
dev/extres/clk/clk_fixed.c optional ext_resources clk
|
|
|
|
dev/extres/clk/clk_gate.c optional ext_resources clk
|
|
|
|
dev/extres/clk/clk_mux.c optional ext_resources clk
|
2016-03-15 15:31:17 +00:00
|
|
|
dev/extres/phy/phy.c optional ext_resources phy
|
|
|
|
dev/extres/phy/phy_if.m optional ext_resources phy
|
2016-01-24 11:03:35 +00:00
|
|
|
dev/extres/hwreset/hwreset.c optional ext_resources hwreset
|
|
|
|
dev/extres/hwreset/hwreset_if.m optional ext_resources hwreset
|
2016-03-15 15:30:17 +00:00
|
|
|
dev/extres/regulator/regdev_if.m optional ext_resources regulator
|
|
|
|
dev/extres/regulator/regnode_if.m optional ext_resources regulator
|
|
|
|
dev/extres/regulator/regulator.c optional ext_resources regulator
|
|
|
|
dev/extres/regulator/regulator_bus.c optional ext_resources regulator fdt
|
|
|
|
dev/extres/regulator/regulator_fixed.c optional ext_resources regulator
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/fatm/if_fatm.c optional fatm pci
|
2013-12-05 22:38:53 +00:00
|
|
|
dev/fb/fbd.c optional fbd | vt
|
2013-12-07 15:24:43 +00:00
|
|
|
dev/fb/fb_if.m standard
|
2013-12-08 22:49:12 +00:00
|
|
|
dev/fb/splash.c optional sc splash
|
2014-09-13 19:03:32 +00:00
|
|
|
dev/fdt/fdt_clock.c optional fdt fdt_clock
|
|
|
|
dev/fdt/fdt_clock_if.m optional fdt fdt_clock
|
2010-06-13 13:02:43 +00:00
|
|
|
dev/fdt/fdt_common.c optional fdt
|
2014-09-13 19:03:32 +00:00
|
|
|
dev/fdt/fdt_pinctrl.c optional fdt fdt_pinctrl
|
|
|
|
dev/fdt/fdt_pinctrl_if.m optional fdt fdt_pinctrl
|
2016-01-23 05:27:55 +00:00
|
|
|
dev/fdt/fdt_slicer.c optional fdt cfi | fdt nand | fdt mx25l
|
2013-02-13 15:13:47 +00:00
|
|
|
dev/fdt/fdt_static_dtb.S optional fdt fdt_dtb_static \
|
2016-04-15 15:28:23 +00:00
|
|
|
dependency "fdt_dtb_file"
|
2010-06-13 13:02:43 +00:00
|
|
|
dev/fdt/simplebus.c optional fdt
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/fe/if_fe.c optional fe
|
|
|
|
dev/fe/if_fe_pccard.c optional fe pccard
|
2013-07-03 20:22:12 +00:00
|
|
|
dev/filemon/filemon.c optional filemon
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/firewire/firewire.c optional firewire
|
|
|
|
dev/firewire/fwcrom.c optional firewire
|
|
|
|
dev/firewire/fwdev.c optional firewire
|
|
|
|
dev/firewire/fwdma.c optional firewire
|
|
|
|
dev/firewire/fwmem.c optional firewire
|
|
|
|
dev/firewire/fwohci.c optional firewire
|
2002-10-14 19:21:44 +00:00
|
|
|
dev/firewire/fwohci_pci.c optional firewire pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/firewire/if_fwe.c optional fwe
|
|
|
|
dev/firewire/if_fwip.c optional fwip
|
|
|
|
dev/firewire/sbp.c optional sbp
|
|
|
|
dev/firewire/sbp_targ.c optional sbp_targ
|
2006-11-29 08:08:30 +00:00
|
|
|
dev/flash/at45d.c optional at45d
|
2010-01-10 05:28:36 +00:00
|
|
|
dev/flash/mx25l.c optional mx25l
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/fxp/if_fxp.c optional fxp
|
2011-10-08 12:33:10 +00:00
|
|
|
dev/fxp/inphy.c optional fxp
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/gem/if_gem.c optional gem
|
|
|
|
dev/gem/if_gem_pci.c optional gem pci
|
2009-06-23 20:36:59 +00:00
|
|
|
dev/gem/if_gem_sbus.c optional gem sbus
|
2015-07-30 19:04:14 +00:00
|
|
|
dev/gpio/gpiobacklight.c optional gpiobacklight fdt
|
2010-09-28 03:24:53 +00:00
|
|
|
dev/gpio/gpiobus.c optional gpio \
|
|
|
|
dependency "gpiobus_if.h"
|
|
|
|
dev/gpio/gpioc.c optional gpio \
|
|
|
|
dependency "gpio_if.h"
|
|
|
|
dev/gpio/gpioiic.c optional gpioiic
|
|
|
|
dev/gpio/gpioled.c optional gpioled
|
|
|
|
dev/gpio/gpio_if.m optional gpio
|
|
|
|
dev/gpio/gpiobus_if.m optional gpio
|
2014-02-13 17:08:29 +00:00
|
|
|
dev/gpio/ofw_gpiobus.c optional fdt gpio
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/hatm/if_hatm.c optional hatm pci
|
|
|
|
dev/hatm/if_hatm_intr.c optional hatm pci
|
2003-06-17 16:12:50 +00:00
|
|
|
dev/hatm/if_hatm_ioctl.c optional hatm pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/hatm/if_hatm_rx.c optional hatm pci
|
|
|
|
dev/hatm/if_hatm_tx.c optional hatm pci
|
|
|
|
dev/hifn/hifn7751.c optional hifn
|
|
|
|
dev/hme/if_hme.c optional hme
|
|
|
|
dev/hme/if_hme_pci.c optional hme pci
|
|
|
|
dev/hme/if_hme_sbus.c optional hme sbus
|
2008-10-04 10:39:31 +00:00
|
|
|
dev/hptiop/hptiop.c optional hptiop scbus
|
2005-06-16 15:07:16 +00:00
|
|
|
dev/hwpmc/hwpmc_logging.c optional hwpmc
|
|
|
|
dev/hwpmc/hwpmc_mod.c optional hwpmc
|
2012-03-28 20:58:30 +00:00
|
|
|
dev/hwpmc/hwpmc_soft.c optional hwpmc
|
2015-08-19 09:49:29 +00:00
|
|
|
dev/ichiic/ig4_iic.c optional ig4 smbus
|
|
|
|
dev/ichiic/ig4_pci.c optional ig4 pci smbus
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ichsmb/ichsmb.c optional ichsmb
|
|
|
|
dev/ichsmb/ichsmb_pci.c optional ichsmb pci
|
|
|
|
dev/ida/ida.c optional ida
|
|
|
|
dev/ida/ida_disk.c optional ida
|
|
|
|
dev/ida/ida_eisa.c optional ida eisa
|
|
|
|
dev/ida/ida_pci.c optional ida pci
|
|
|
|
dev/ie/if_ie.c optional ie isa nowerror
|
|
|
|
dev/ie/if_ie_isa.c optional ie isa
|
2006-11-19 23:43:29 +00:00
|
|
|
dev/iicbus/ad7418.c optional ad7418
|
2015-03-20 19:51:24 +00:00
|
|
|
dev/iicbus/ds1307.c optional ds1307
|
2008-08-11 19:26:55 +00:00
|
|
|
dev/iicbus/ds133x.c optional ds133x
|
2012-03-27 09:48:18 +00:00
|
|
|
dev/iicbus/ds1374.c optional ds1374
|
2006-11-19 23:43:29 +00:00
|
|
|
dev/iicbus/ds1672.c optional ds1672
|
2015-02-28 19:02:44 +00:00
|
|
|
dev/iicbus/ds3231.c optional ds3231
|
2007-03-23 23:10:35 +00:00
|
|
|
dev/iicbus/icee.c optional icee
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/iicbus/if_ic.c optional ic
|
|
|
|
dev/iicbus/iic.c optional iic
|
|
|
|
dev/iicbus/iicbb.c optional iicbb
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/iicbus/iicbb_if.m optional iicbb
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/iicbus/iicbus.c optional iicbus
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/iicbus/iicbus_if.m optional iicbus
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/iicbus/iiconf.c optional iicbus
|
|
|
|
dev/iicbus/iicsmb.c optional iicsmb \
|
2000-03-23 19:08:49 +00:00
|
|
|
dependency "iicbus_if.h"
|
2012-03-27 10:44:32 +00:00
|
|
|
dev/iicbus/iicoc.c optional iicoc
|
2014-05-10 12:19:02 +00:00
|
|
|
dev/iicbus/lm75.c optional lm75
|
2012-04-13 23:07:32 +00:00
|
|
|
dev/iicbus/pcf8563.c optional pcf8563
|
2012-08-21 17:31:10 +00:00
|
|
|
dev/iicbus/s35390a.c optional s35390a
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/iir/iir.c optional iir
|
|
|
|
dev/iir/iir_ctrl.c optional iir
|
|
|
|
dev/iir/iir_pci.c optional iir pci
|
2014-09-23 06:31:15 +00:00
|
|
|
dev/intpm/intpm.c optional intpm pci
|
2012-08-20 18:33:03 +00:00
|
|
|
# XXX Work around clang warning, until maintainer approves fix.
|
|
|
|
dev/ips/ips.c optional ips \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ips/ips_commands.c optional ips
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/ips/ips_disk.c optional ips
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ips/ips_ioctl.c optional ips
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/ips/ips_pci.c optional ips pci
|
2005-04-18 18:47:38 +00:00
|
|
|
dev/ipw/if_ipw.c optional ipw
|
2008-04-25 20:42:48 +00:00
|
|
|
ipwbssfw.c optional ipwbssfw | ipwfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk ipw_bss.fw:ipw_bss:130 -lintel_ipw -mipw_bss -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "ipwbssfw.c"
|
|
|
|
ipw_bss.fwo optional ipwbssfw | ipwfw \
|
|
|
|
dependency "ipw_bss.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "ipw_bss.fwo"
|
|
|
|
ipw_bss.fw optional ipwbssfw | ipwfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ipw/ipw2100-1.3.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "ipw_bss.fw"
|
|
|
|
ipwibssfw.c optional ipwibssfw | ipwfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk ipw_ibss.fw:ipw_ibss:130 -lintel_ipw -mipw_ibss -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "ipwibssfw.c"
|
|
|
|
ipw_ibss.fwo optional ipwibssfw | ipwfw \
|
|
|
|
dependency "ipw_ibss.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "ipw_ibss.fwo"
|
|
|
|
ipw_ibss.fw optional ipwibssfw | ipwfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ipw/ipw2100-1.3-i.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "ipw_ibss.fw"
|
|
|
|
ipwmonitorfw.c optional ipwmonitorfw | ipwfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk ipw_monitor.fw:ipw_monitor:130 -lintel_ipw -mipw_monitor -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "ipwmonitorfw.c"
|
|
|
|
ipw_monitor.fwo optional ipwmonitorfw | ipwfw \
|
|
|
|
dependency "ipw_monitor.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "ipw_monitor.fwo"
|
|
|
|
ipw_monitor.fw optional ipwmonitorfw | ipwfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ipw/ipw2100-1.3-p.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "ipw_monitor.fw"
|
2016-03-15 15:30:17 +00:00
|
|
|
dev/iscsi/icl.c optional iscsi | ctl
|
|
|
|
dev/iscsi/icl_conn_if.m optional iscsi | ctl
|
2013-09-14 15:29:06 +00:00
|
|
|
dev/iscsi/icl_proxy.c optional iscsi | ctl
|
2016-03-15 15:30:17 +00:00
|
|
|
dev/iscsi/icl_soft.c optional iscsi | ctl
|
2013-09-14 15:29:06 +00:00
|
|
|
dev/iscsi/iscsi.c optional iscsi scbus
|
2013-08-22 14:02:34 +00:00
|
|
|
dev/iscsi_initiator/iscsi.c optional iscsi_initiator scbus
|
|
|
|
dev/iscsi_initiator/iscsi_subr.c optional iscsi_initiator scbus
|
|
|
|
dev/iscsi_initiator/isc_cam.c optional iscsi_initiator scbus
|
|
|
|
dev/iscsi_initiator/isc_soc.c optional iscsi_initiator scbus
|
|
|
|
dev/iscsi_initiator/isc_sm.c optional iscsi_initiator scbus
|
|
|
|
dev/iscsi_initiator/isc_subr.c optional iscsi_initiator scbus
|
2014-05-20 19:55:06 +00:00
|
|
|
dev/ismt/ismt.c optional ismt
|
2015-08-19 09:49:29 +00:00
|
|
|
dev/isl/isl.c optional isl smbus
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/isp/isp.c optional isp
|
|
|
|
dev/isp/isp_freebsd.c optional isp
|
2006-02-03 00:36:19 +00:00
|
|
|
dev/isp/isp_library.c optional isp
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/isp/isp_pci.c optional isp pci
|
|
|
|
dev/isp/isp_sbus.c optional isp sbus
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/isp/isp_target.c optional isp
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ispfw/ispfw.c optional ispfw
|
2005-04-18 18:47:38 +00:00
|
|
|
dev/iwi/if_iwi.c optional iwi
|
2008-04-25 20:42:48 +00:00
|
|
|
iwibssfw.c optional iwibssfw | iwifw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwi_bss.fw:iwi_bss:300 -lintel_iwi -miwi_bss -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwibssfw.c"
|
|
|
|
iwi_bss.fwo optional iwibssfw | iwifw \
|
|
|
|
dependency "iwi_bss.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwi_bss.fwo"
|
|
|
|
iwi_bss.fw optional iwibssfw | iwifw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwi/ipw2200-bss.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwi_bss.fw"
|
|
|
|
iwiibssfw.c optional iwiibssfw | iwifw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwi_ibss.fw:iwi_ibss:300 -lintel_iwi -miwi_ibss -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwiibssfw.c"
|
|
|
|
iwi_ibss.fwo optional iwiibssfw | iwifw \
|
|
|
|
dependency "iwi_ibss.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwi_ibss.fwo"
|
|
|
|
iwi_ibss.fw optional iwiibssfw | iwifw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwi/ipw2200-ibss.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwi_ibss.fw"
|
|
|
|
iwimonitorfw.c optional iwimonitorfw | iwifw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwi_monitor.fw:iwi_monitor:300 -lintel_iwi -miwi_monitor -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwimonitorfw.c"
|
|
|
|
iwi_monitor.fwo optional iwimonitorfw | iwifw \
|
|
|
|
dependency "iwi_monitor.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwi_monitor.fwo"
|
|
|
|
iwi_monitor.fw optional iwimonitorfw | iwifw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwi/ipw2200-sniffer.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwi_monitor.fw"
|
2015-08-08 21:08:10 +00:00
|
|
|
dev/iwm/if_iwm.c optional iwm
|
|
|
|
dev/iwm/if_iwm_binding.c optional iwm
|
|
|
|
dev/iwm/if_iwm_mac_ctxt.c optional iwm
|
|
|
|
dev/iwm/if_iwm_pcie_trans.c optional iwm
|
|
|
|
dev/iwm/if_iwm_phy_ctxt.c optional iwm
|
|
|
|
dev/iwm/if_iwm_phy_db.c optional iwm
|
|
|
|
dev/iwm/if_iwm_power.c optional iwm
|
|
|
|
dev/iwm/if_iwm_scan.c optional iwm
|
|
|
|
dev/iwm/if_iwm_time_event.c optional iwm
|
|
|
|
dev/iwm/if_iwm_util.c optional iwm
|
|
|
|
iwm3160fw.c optional iwm3160fw | iwmfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwm3160.fw:iwm3160fw -miwm3160fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwm3160fw.c"
|
|
|
|
iwm3160fw.fwo optional iwm3160fw | iwmfw \
|
|
|
|
dependency "iwm3160.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwm3160fw.fwo"
|
|
|
|
iwm3160.fw optional iwm3160fw | iwmfw \
|
|
|
|
dependency "$S/contrib/dev/iwm/iwm-3160-9.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwm3160.fw"
|
|
|
|
iwm7260fw.c optional iwm7260fw | iwmfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwm7260.fw:iwm7260fw -miwm7260fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwm7260fw.c"
|
|
|
|
iwm7260fw.fwo optional iwm7260fw | iwmfw \
|
|
|
|
dependency "iwm7260.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwm7260fw.fwo"
|
|
|
|
iwm7260.fw optional iwm7260fw | iwmfw \
|
|
|
|
dependency "$S/contrib/dev/iwm/iwm-7260-9.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwm7260.fw"
|
|
|
|
iwm7265fw.c optional iwm7265fw | iwmfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwm7265.fw:iwm7265fw -miwm7265fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwm7265fw.c"
|
|
|
|
iwm7265fw.fwo optional iwm7265fw | iwmfw \
|
|
|
|
dependency "iwm7265.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwm7265fw.fwo"
|
|
|
|
iwm7265.fw optional iwm7265fw | iwmfw \
|
|
|
|
dependency "$S/contrib/dev/iwm/iwm-7265-9.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwm7265.fw"
|
2008-04-29 21:36:17 +00:00
|
|
|
dev/iwn/if_iwn.c optional iwn
|
2009-12-29 19:47:34 +00:00
|
|
|
iwn1000fw.c optional iwn1000fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn1000.fw:iwn1000fw -miwn1000fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn1000fw.c"
|
|
|
|
iwn1000fw.fwo optional iwn1000fw | iwnfw \
|
|
|
|
dependency "iwn1000.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-12-29 19:47:34 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn1000fw.fwo"
|
|
|
|
iwn1000.fw optional iwn1000fw | iwnfw \
|
2011-04-20 17:32:20 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-1000-39.31.5.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-12-29 19:47:34 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn1000.fw"
|
2014-08-30 13:47:05 +00:00
|
|
|
iwn100fw.c optional iwn100fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn100.fw:iwn100fw -miwn100fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn100fw.c"
|
|
|
|
iwn100fw.fwo optional iwn100fw | iwnfw \
|
|
|
|
dependency "iwn100.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn100fw.fwo"
|
|
|
|
iwn100.fw optional iwn100fw | iwnfw \
|
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-100-39.31.5.1.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn100.fw"
|
2014-08-14 18:16:27 +00:00
|
|
|
iwn105fw.c optional iwn105fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn105.fw:iwn105fw -miwn105fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn105fw.c"
|
|
|
|
iwn105fw.fwo optional iwn105fw | iwnfw \
|
|
|
|
dependency "iwn105.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn105fw.fwo"
|
|
|
|
iwn105.fw optional iwn105fw | iwnfw \
|
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-105-6-18.168.6.1.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn105.fw"
|
|
|
|
iwn135fw.c optional iwn135fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn135.fw:iwn135fw -miwn135fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn135fw.c"
|
|
|
|
iwn135fw.fwo optional iwn135fw | iwnfw \
|
|
|
|
dependency "iwn135.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn135fw.fwo"
|
|
|
|
iwn135.fw optional iwn135fw | iwnfw \
|
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-135-6-18.168.6.1.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn135.fw"
|
2014-02-09 22:42:14 +00:00
|
|
|
iwn2000fw.c optional iwn2000fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn2000.fw:iwn2000fw -miwn2000fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn2000fw.c"
|
|
|
|
iwn2000fw.fwo optional iwn2000fw | iwnfw \
|
|
|
|
dependency "iwn2000.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn2000fw.fwo"
|
|
|
|
iwn2000.fw optional iwn2000fw | iwnfw \
|
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn2000.fw"
|
|
|
|
iwn2030fw.c optional iwn2030fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn2030.fw:iwn2030fw -miwn2030fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn2030fw.c"
|
|
|
|
iwn2030fw.fwo optional iwn2030fw | iwnfw \
|
|
|
|
dependency "iwn2030.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn2030fw.fwo"
|
|
|
|
iwn2030.fw optional iwn2030fw | iwnfw \
|
|
|
|
dependency "$S/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn2030.fw"
|
2009-10-25 10:23:11 +00:00
|
|
|
iwn4965fw.c optional iwn4965fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn4965.fw:iwn4965fw -miwn4965fw -c${.TARGET}" \
|
2008-04-29 21:36:17 +00:00
|
|
|
no-implicit-rule before-depend local \
|
2009-10-25 10:23:11 +00:00
|
|
|
clean "iwn4965fw.c"
|
|
|
|
iwn4965fw.fwo optional iwn4965fw | iwnfw \
|
|
|
|
dependency "iwn4965.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-29 21:36:17 +00:00
|
|
|
no-implicit-rule \
|
2009-10-25 10:23:11 +00:00
|
|
|
clean "iwn4965fw.fwo"
|
|
|
|
iwn4965.fw optional iwn4965fw | iwnfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-4965-228.61.2.24.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-29 21:36:17 +00:00
|
|
|
no-obj no-implicit-rule \
|
2009-10-25 10:23:11 +00:00
|
|
|
clean "iwn4965.fw"
|
|
|
|
iwn5000fw.c optional iwn5000fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn5000.fw:iwn5000fw -miwn5000fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn5000fw.c"
|
|
|
|
iwn5000fw.fwo optional iwn5000fw | iwnfw \
|
|
|
|
dependency "iwn5000.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-10-25 10:23:11 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn5000fw.fwo"
|
|
|
|
iwn5000.fw optional iwn5000fw | iwnfw \
|
2011-04-20 17:32:20 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-5000-8.83.5.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-10-25 10:23:11 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn5000.fw"
|
|
|
|
iwn5150fw.c optional iwn5150fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn5150.fw:iwn5150fw -miwn5150fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn5150fw.c"
|
|
|
|
iwn5150fw.fwo optional iwn5150fw | iwnfw \
|
|
|
|
dependency "iwn5150.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-10-25 10:23:11 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn5150fw.fwo"
|
|
|
|
iwn5150.fw optional iwn5150fw | iwnfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-5150-8.24.2.2.fw.uu"\
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-10-25 10:23:11 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn5150.fw"
|
2009-12-29 19:47:34 +00:00
|
|
|
iwn6000fw.c optional iwn6000fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn6000.fw:iwn6000fw -miwn6000fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn6000fw.c"
|
|
|
|
iwn6000fw.fwo optional iwn6000fw | iwnfw \
|
|
|
|
dependency "iwn6000.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-12-29 19:47:34 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn6000fw.fwo"
|
|
|
|
iwn6000.fw optional iwn6000fw | iwnfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-6000-9.221.4.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2010-07-15 11:26:07 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn6000.fw"
|
2011-04-20 17:34:09 +00:00
|
|
|
iwn6000g2afw.c optional iwn6000g2afw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn6000g2a.fw:iwn6000g2afw -miwn6000g2afw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn6000g2afw.c"
|
|
|
|
iwn6000g2afw.fwo optional iwn6000g2afw | iwnfw \
|
|
|
|
dependency "iwn6000g2a.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2011-04-20 17:34:09 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn6000g2afw.fwo"
|
|
|
|
iwn6000g2a.fw optional iwn6000g2afw | iwnfw \
|
2014-12-27 17:10:35 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2011-04-20 17:34:09 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn6000g2a.fw"
|
|
|
|
iwn6000g2bfw.c optional iwn6000g2bfw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn6000g2b.fw:iwn6000g2bfw -miwn6000g2bfw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn6000g2bfw.c"
|
|
|
|
iwn6000g2bfw.fwo optional iwn6000g2bfw | iwnfw \
|
|
|
|
dependency "iwn6000g2b.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2011-04-20 17:34:09 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn6000g2bfw.fwo"
|
|
|
|
iwn6000g2b.fw optional iwn6000g2bfw | iwnfw \
|
2014-12-27 17:10:35 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-6000g2b-18.168.6.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2011-04-20 17:34:09 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "iwn6000g2b.fw"
|
2010-07-15 11:26:07 +00:00
|
|
|
iwn6050fw.c optional iwn6050fw | iwnfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk iwn6050.fw:iwn6050fw -miwn6050fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "iwn6050fw.c"
|
|
|
|
iwn6050fw.fwo optional iwn6050fw | iwnfw \
|
|
|
|
dependency "iwn6050.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2010-07-15 11:26:07 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "iwn6050fw.fwo"
|
|
|
|
iwn6050.fw optional iwn6050fw | iwnfw \
|
2011-04-20 17:32:20 +00:00
|
|
|
dependency "$S/contrib/dev/iwn/iwlwifi-6050-41.28.5.1.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-12-29 19:47:34 +00:00
|
|
|
no-obj no-implicit-rule \
|
2011-02-06 10:25:11 +00:00
|
|
|
clean "iwn6050.fw"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ixgb/if_ixgb.c optional ixgb
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/ixgb/ixgb_ee.c optional ixgb
|
|
|
|
dev/ixgb/ixgb_hw.c optional ixgb
|
2015-03-17 18:32:28 +00:00
|
|
|
dev/ixgbe/if_ix.c optional ix inet \
|
Disable flow-director support until it's been debugged and verified.
The flowdirector feature shares on-chip memory with other things
such as the RX buffers. In theory it should be configured in a way
that doesn't interfere with the rest of operation. In practice,
the RX buffer calculation didn't take the flow-director allocation
into account and there'd be overlap. This lead to various garbage
frames being received containing what looks like internal NIC state.
What _I_ saw was traffic ending up in the wrong RX queues.
If I was doing a UDP traffic test with only one NIC ring receiving
traffic, everything is fine. If I fired up a second UDP stream
which came in on another ring, there'd be a few percent of traffic
from both rings ending up in the wrong ring. Ie, the RSS hash would
indicate it was supposed to come in ring X, but it'd come in ring Y.
However, when the allocation was fixed up, the developers at Verisign
still saw traffic stalls.
The flowdirector feature ends up fiddling with the NIC to do various
attempts at load balancing connections by populating flow table rules
based on sampled traffic. It's likely that all of that has to be
carefully reviewed and made less "magic".
So for now the flow director feature is disabled (which fixes both
what I was seeing and what they were seeing) until it's all much
more debugged and verified.
Tested:
* (me) 82599EB 2x10G NIC, RSS UDP testing.
* (verisign) not sure on the NIC (but likely 82599), 100k-200k/sec TCP
transaction tests.
Submitted by: Marc De La Gueronniere <mdelagueronniere@verisign.com>
MFC after: 1 week
Sponsored by: Verisign, Inc.
2014-09-15 21:09:19 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe -DSMP"
|
2015-03-17 18:32:28 +00:00
|
|
|
dev/ixgbe/if_ixv.c optional ixv inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe -DSMP"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ix_txrx.c optional ix inet | ixv inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-12-23 22:45:17 +00:00
|
|
|
dev/ixgbe/ixgbe_osdep.c optional ix inet | ixv inet \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_phy.c optional ix inet | ixv inet \
|
2007-07-11 22:59:57 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_api.c optional ix inet | ixv inet \
|
2007-07-11 22:59:57 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_common.c optional ix inet | ixv inet \
|
2007-07-11 22:59:57 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_mbx.c optional ix inet | ixv inet \
|
2010-11-26 22:46:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_vf.c optional ix inet | ixv inet \
|
2010-11-26 22:46:32 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_82598.c optional ix inet | ixv inet \
|
2007-07-11 22:59:57 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_82599.c optional ix inet | ixv inet \
|
2009-04-10 00:34:55 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_x540.c optional ix inet | ixv inet \
|
2012-01-30 16:42:02 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_x550.c optional ix inet | ixv inet \
|
2015-05-01 03:33:31 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_dcb.c optional ix inet | ixv inet \
|
2013-06-18 21:28:19 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_dcb_82598.c optional ix inet | ixv inet \
|
2013-06-18 21:28:19 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2015-06-24 15:53:52 +00:00
|
|
|
dev/ixgbe/ixgbe_dcb_82599.c optional ix inet | ixv inet \
|
2013-06-18 21:28:19 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/dev/ixgbe"
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/jme/if_jme.c optional jme pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/joy/joy.c optional joy
|
|
|
|
dev/joy/joy_isa.c optional joy isa
|
2015-09-21 17:31:11 +00:00
|
|
|
dev/kbd/kbd.c optional atkbd | pckbd | sc | ukbd | vt
|
2005-07-14 23:04:23 +00:00
|
|
|
dev/kbdmux/kbdmux.c optional kbdmux
|
2009-05-26 21:39:09 +00:00
|
|
|
dev/ksyms/ksyms.c optional ksyms
|
2006-01-31 22:34:13 +00:00
|
|
|
dev/le/am7990.c optional le
|
|
|
|
dev/le/am79900.c optional le
|
|
|
|
dev/le/if_le_pci.c optional le pci
|
|
|
|
dev/le/lance.c optional le
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/led/led.c standard
|
|
|
|
dev/lge/if_lge.c optional lge
|
2005-10-03 07:05:34 +00:00
|
|
|
dev/lmc/if_lmc.c optional lmc
|
2008-04-20 20:35:46 +00:00
|
|
|
dev/malo/if_malo.c optional malo
|
|
|
|
dev/malo/if_malohal.c optional malo
|
|
|
|
dev/malo/if_malo_pci.c optional malo pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/mc146818/mc146818.c optional mc146818
|
|
|
|
dev/mca/mca_bus.c optional mca
|
|
|
|
dev/mcd/mcd.c optional mcd isa nowerror
|
|
|
|
dev/mcd/mcd_isa.c optional mcd isa nowerror
|
|
|
|
dev/md/md.c optional md
|
2015-12-26 02:31:39 +00:00
|
|
|
dev/mdio/mdio_if.m optional miiproxy | mdio
|
|
|
|
dev/mdio/mdio.c optional miiproxy | mdio
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/mem/memdev.c optional mem
|
2011-01-17 22:58:28 +00:00
|
|
|
dev/mem/memutil.c optional mem
|
2006-03-29 09:57:22 +00:00
|
|
|
dev/mfi/mfi.c optional mfi
|
2006-09-25 11:40:14 +00:00
|
|
|
dev/mfi/mfi_debug.c optional mfi
|
2006-03-29 09:57:22 +00:00
|
|
|
dev/mfi/mfi_pci.c optional mfi pci
|
|
|
|
dev/mfi/mfi_disk.c optional mfi
|
2011-11-04 02:34:52 +00:00
|
|
|
dev/mfi/mfi_syspd.c optional mfi
|
|
|
|
dev/mfi/mfi_tbolt.c optional mfi
|
2006-05-18 23:30:48 +00:00
|
|
|
dev/mfi/mfi_linux.c optional mfi compat_linux
|
2007-05-16 17:19:47 +00:00
|
|
|
dev/mfi/mfi_cam.c optional mfip scbus
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/acphy.c optional miibus | acphy
|
|
|
|
dev/mii/amphy.c optional miibus | amphy
|
2008-05-19 01:18:02 +00:00
|
|
|
dev/mii/atphy.c optional miibus | atphy
|
2009-03-30 16:01:09 +00:00
|
|
|
dev/mii/axphy.c optional miibus | axphy
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/bmtphy.c optional miibus | bmtphy
|
|
|
|
dev/mii/brgphy.c optional miibus | brgphy
|
|
|
|
dev/mii/ciphy.c optional miibus | ciphy
|
|
|
|
dev/mii/e1000phy.c optional miibus | e1000phy
|
2006-07-25 00:20:11 +00:00
|
|
|
dev/mii/gentbi.c optional miibus | gentbi
|
2007-06-11 02:07:08 +00:00
|
|
|
dev/mii/icsphy.c optional miibus | icsphy
|
2006-07-25 00:20:11 +00:00
|
|
|
dev/mii/ip1000phy.c optional miibus | ip1000phy
|
2008-05-27 01:23:17 +00:00
|
|
|
dev/mii/jmphy.c optional miibus | jmphy
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/lxtphy.c optional miibus | lxtphy
|
|
|
|
dev/mii/mii.c optional miibus | mii
|
2011-11-01 16:13:59 +00:00
|
|
|
dev/mii/mii_bitbang.c optional miibus | mii_bitbang
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/mii_physubr.c optional miibus | mii
|
|
|
|
dev/mii/miibus_if.m optional miibus | mii
|
|
|
|
dev/mii/mlphy.c optional miibus | mlphy
|
|
|
|
dev/mii/nsgphy.c optional miibus | nsgphy
|
|
|
|
dev/mii/nsphy.c optional miibus | nsphy
|
2008-01-27 01:10:41 +00:00
|
|
|
dev/mii/nsphyter.c optional miibus | nsphyter
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/pnaphy.c optional miibus | pnaphy
|
|
|
|
dev/mii/qsphy.c optional miibus | qsphy
|
2010-12-30 23:50:25 +00:00
|
|
|
dev/mii/rdcphy.c optional miibus | rdcphy
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/rgephy.c optional miibus | rgephy
|
|
|
|
dev/mii/rlphy.c optional miibus | rlphy
|
2007-01-05 01:46:26 +00:00
|
|
|
dev/mii/rlswitch.c optional rlswitch
|
2008-06-06 05:00:49 +00:00
|
|
|
dev/mii/smcphy.c optional miibus | smcphy
|
2012-08-15 04:03:55 +00:00
|
|
|
dev/mii/smscphy.c optional miibus | smscphy
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/tdkphy.c optional miibus | tdkphy
|
|
|
|
dev/mii/tlphy.c optional miibus | tlphy
|
2008-06-20 19:28:33 +00:00
|
|
|
dev/mii/truephy.c optional miibus | truephy
|
2006-02-07 18:41:56 +00:00
|
|
|
dev/mii/ukphy.c optional miibus | mii
|
|
|
|
dev/mii/ukphy_subr.c optional miibus | mii
|
|
|
|
dev/mii/xmphy.c optional miibus | xmphy
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/mk48txx/mk48txx.c optional mk48txx
|
|
|
|
dev/mlx/mlx.c optional mlx
|
|
|
|
dev/mlx/mlx_disk.c optional mlx
|
|
|
|
dev/mlx/mlx_pci.c optional mlx pci
|
|
|
|
dev/mly/mly.c optional mly
|
2006-10-20 06:39:59 +00:00
|
|
|
dev/mmc/mmc.c optional mmc
|
2007-02-03 06:45:02 +00:00
|
|
|
dev/mmc/mmcbr_if.m standard
|
|
|
|
dev/mmc/mmcbus_if.m standard
|
2006-10-20 06:39:59 +00:00
|
|
|
dev/mmc/mmcsd.c optional mmcsd
|
2008-11-02 17:04:54 +00:00
|
|
|
dev/mn/if_mn.c optional mn pci
|
2014-05-02 20:25:09 +00:00
|
|
|
dev/mpr/mpr.c optional mpr
|
|
|
|
dev/mpr/mpr_config.c optional mpr
|
|
|
|
# XXX Work around clang warning, until maintainer approves fix.
|
|
|
|
dev/mpr/mpr_mapping.c optional mpr \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
|
|
|
dev/mpr/mpr_pci.c optional mpr pci
|
|
|
|
dev/mpr/mpr_sas.c optional mpr \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WUNNEEDED_INTERNAL_DECL}"
|
|
|
|
dev/mpr/mpr_sas_lsi.c optional mpr
|
|
|
|
dev/mpr/mpr_table.c optional mpr
|
|
|
|
dev/mpr/mpr_user.c optional mpr
|
2010-09-10 15:03:56 +00:00
|
|
|
dev/mps/mps.c optional mps
|
2012-01-26 18:17:21 +00:00
|
|
|
dev/mps/mps_config.c optional mps
|
2012-08-20 18:33:03 +00:00
|
|
|
# XXX Work around clang warning, until maintainer approves fix.
|
|
|
|
dev/mps/mps_mapping.c optional mps \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
2010-09-10 15:03:56 +00:00
|
|
|
dev/mps/mps_pci.c optional mps pci
|
2012-03-23 11:35:01 +00:00
|
|
|
dev/mps/mps_sas.c optional mps \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WUNNEEDED_INTERNAL_DECL}"
|
2012-01-26 18:17:21 +00:00
|
|
|
dev/mps/mps_sas_lsi.c optional mps
|
2010-09-10 15:03:56 +00:00
|
|
|
dev/mps/mps_table.c optional mps
|
|
|
|
dev/mps/mps_user.c optional mps
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/mpt/mpt.c optional mpt
|
2005-07-10 15:07:57 +00:00
|
|
|
dev/mpt/mpt_cam.c optional mpt
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/mpt/mpt_debug.c optional mpt
|
|
|
|
dev/mpt/mpt_pci.c optional mpt pci
|
2005-07-10 15:07:57 +00:00
|
|
|
dev/mpt/mpt_raid.c optional mpt
|
2008-05-06 20:49:53 +00:00
|
|
|
dev/mpt/mpt_user.c optional mpt
|
2014-05-07 16:16:49 +00:00
|
|
|
dev/mrsas/mrsas.c optional mrsas
|
|
|
|
dev/mrsas/mrsas_cam.c optional mrsas
|
|
|
|
dev/mrsas/mrsas_ioctl.c optional mrsas
|
|
|
|
dev/mrsas/mrsas_fp.c optional mrsas
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/msk/if_msk.c optional msk
|
2010-05-02 19:28:30 +00:00
|
|
|
dev/mvs/mvs.c optional mvs
|
2010-05-17 03:51:57 +00:00
|
|
|
dev/mvs/mvs_if.m optional mvs
|
2010-05-02 19:28:30 +00:00
|
|
|
dev/mvs/mvs_pci.c optional mvs pci
|
2009-06-01 18:07:01 +00:00
|
|
|
dev/mwl/if_mwl.c optional mwl
|
|
|
|
dev/mwl/if_mwl_pci.c optional mwl pci
|
|
|
|
dev/mwl/mwlhal.c optional mwl
|
|
|
|
mwlfw.c optional mwlfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk mw88W8363.fw:mw88W8363fw mwlboot.fw:mwlboot -mmwl -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "mwlfw.c"
|
|
|
|
mw88W8363.fwo optional mwlfw \
|
|
|
|
dependency "mw88W8363.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-06-01 18:07:01 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "mw88W8363.fwo"
|
|
|
|
mw88W8363.fw optional mwlfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/mwl/mw88W8363.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-06-01 18:07:01 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "mw88W8363.fw"
|
|
|
|
mwlboot.fwo optional mwlfw \
|
|
|
|
dependency "mwlboot.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2009-06-01 18:07:01 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "mwlboot.fwo"
|
|
|
|
mwlboot.fw optional mwlfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/mwl/mwlboot.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2009-06-01 18:07:01 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "mwlboot.fw"
|
2009-06-23 17:42:06 +00:00
|
|
|
dev/mxge/if_mxge.c optional mxge pci
|
|
|
|
dev/mxge/mxge_eth_z8e.c optional mxge pci
|
|
|
|
dev/mxge/mxge_ethp_z8e.c optional mxge pci
|
|
|
|
dev/mxge/mxge_rss_eth_z8e.c optional mxge pci
|
|
|
|
dev/mxge/mxge_rss_ethp_z8e.c optional mxge pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/my/if_my.c optional my
|
2012-05-17 10:11:18 +00:00
|
|
|
dev/nand/nand.c optional nand
|
|
|
|
dev/nand/nand_bbt.c optional nand
|
|
|
|
dev/nand/nand_cdev.c optional nand
|
|
|
|
dev/nand/nand_generic.c optional nand
|
|
|
|
dev/nand/nand_geom.c optional nand
|
|
|
|
dev/nand/nand_id.c optional nand
|
|
|
|
dev/nand/nandbus.c optional nand
|
|
|
|
dev/nand/nandbus_if.m optional nand
|
|
|
|
dev/nand/nand_if.m optional nand
|
|
|
|
dev/nand/nandsim.c optional nandsim nand
|
|
|
|
dev/nand/nandsim_chip.c optional nandsim nand
|
|
|
|
dev/nand/nandsim_ctrl.c optional nandsim nand
|
|
|
|
dev/nand/nandsim_log.c optional nandsim nand
|
|
|
|
dev/nand/nandsim_swap.c optional nandsim nand
|
|
|
|
dev/nand/nfc_if.m optional nand
|
2014-09-25 18:43:52 +00:00
|
|
|
dev/ncr/ncr.c optional ncr pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/ncv/ncr53c500.c optional ncv
|
|
|
|
dev/ncv/ncr53c500_pccard.c optional ncv pccard
|
2011-11-22 21:50:38 +00:00
|
|
|
dev/netmap/netmap.c optional netmap
|
2013-12-15 08:37:24 +00:00
|
|
|
dev/netmap/netmap_freebsd.c optional netmap
|
|
|
|
dev/netmap/netmap_generic.c optional netmap
|
This new version of netmap brings you the following:
- netmap pipes, providing bidirectional blocking I/O while moving
100+ Mpps between processes using shared memory channels
(no mistake: over one hundred million. But mind you, i said
*moving* not *processing*);
- kqueue support (BHyVe needs it);
- improved user library. Just the interface name lets you select a NIC,
host port, VALE switch port, netmap pipe, and individual queues.
The upcoming netmap-enabled libpcap will use this feature.
- optional extra buffers associated to netmap ports, for applications
that need to buffer data yet don't want to make copies.
- segmentation offloading for the VALE switch, useful between VMs.
and a number of bug fixes and performance improvements.
My colleagues Giuseppe Lettieri and Vincenzo Maffione did a substantial
amount of work on these features so we owe them a big thanks.
There are some external repositories that can be of interest:
https://code.google.com/p/netmap
our public repository for netmap/VALE code, including
linux versions and other stuff that does not belong here,
such as python bindings.
https://code.google.com/p/netmap-libpcap
a clone of the libpcap repository with netmap support.
With this any libpcap client has access to most netmap
feature with no recompilation. E.g. tcpdump can filter
packets at 10-15 Mpps.
https://code.google.com/p/netmap-ipfw
a userspace version of ipfw+dummynet which uses netmap
to send/receive packets. Speed is up in the 7-10 Mpps
range per core for simple rulesets.
Both netmap-libpcap and netmap-ipfw will be merged upstream at some
point, but while this happens it is useful to have access to them.
And yes, this code will be merged soon. It is infinitely better
than the version currently in 10 and 9.
MFC after: 3 days
2014-02-15 04:53:04 +00:00
|
|
|
dev/netmap/netmap_mbq.c optional netmap
|
2013-11-01 21:21:14 +00:00
|
|
|
dev/netmap/netmap_mem2.c optional netmap
|
Update to the current version of netmap.
Mostly bugfixes or features developed in the past 6 months,
so this is a 10.1 candidate.
Basically no user API changes (some bugfixes in sys/net/netmap_user.h).
In detail:
1. netmap support for virtio-net, including in netmap mode.
Under bhyve and with a netmap backend [2] we reach over 1Mpps
with standard APIs (e.g. libpcap), and 5-8 Mpps in netmap mode.
2. (kernel) add support for multiple memory allocators, so we can
better partition physical and virtual interfaces giving access
to separate users. The most visible effect is one additional
argument to the various kernel functions to compute buffer
addresses. All netmap-supported drivers are affected, but changes
are mechanical and trivial
3. (kernel) simplify the prototype for *txsync() and *rxsync()
driver methods. All netmap drivers affected, changes mostly mechanical.
4. add support for netmap-monitor ports. Think of it as a mirroring
port on a physical switch: a netmap monitor port replicates traffic
present on the main port. Restrictions apply. Drive carefully.
5. if_lem.c: support for various paravirtualization features,
experimental and disabled by default.
Most of these are described in our ANCS'13 paper [1].
Paravirtualized support in netmap mode is new, and beats the
numbers in the paper by a large factor (under qemu-kvm,
we measured gues-host throughput up to 10-12 Mpps).
A lot of refactoring and additional documentation in the files
in sys/dev/netmap, but apart from #2 and #3 above, almost nothing
of this stuff is visible to other kernel parts.
Example programs in tools/tools/netmap have been updated with bugfixes
and to support more of the existing features.
This is meant to go into 10.1 so we plan an MFC before the Aug.22 deadline.
A lot of this code has been contributed by my colleagues at UNIPI,
including Giuseppe Lettieri, Vincenzo Maffione, Stefano Garzarella.
MFC after: 3 days.
2014-08-16 15:00:01 +00:00
|
|
|
dev/netmap/netmap_monitor.c optional netmap
|
This new version of netmap brings you the following:
- netmap pipes, providing bidirectional blocking I/O while moving
100+ Mpps between processes using shared memory channels
(no mistake: over one hundred million. But mind you, i said
*moving* not *processing*);
- kqueue support (BHyVe needs it);
- improved user library. Just the interface name lets you select a NIC,
host port, VALE switch port, netmap pipe, and individual queues.
The upcoming netmap-enabled libpcap will use this feature.
- optional extra buffers associated to netmap ports, for applications
that need to buffer data yet don't want to make copies.
- segmentation offloading for the VALE switch, useful between VMs.
and a number of bug fixes and performance improvements.
My colleagues Giuseppe Lettieri and Vincenzo Maffione did a substantial
amount of work on these features so we owe them a big thanks.
There are some external repositories that can be of interest:
https://code.google.com/p/netmap
our public repository for netmap/VALE code, including
linux versions and other stuff that does not belong here,
such as python bindings.
https://code.google.com/p/netmap-libpcap
a clone of the libpcap repository with netmap support.
With this any libpcap client has access to most netmap
feature with no recompilation. E.g. tcpdump can filter
packets at 10-15 Mpps.
https://code.google.com/p/netmap-ipfw
a userspace version of ipfw+dummynet which uses netmap
to send/receive packets. Speed is up in the 7-10 Mpps
range per core for simple rulesets.
Both netmap-libpcap and netmap-ipfw will be merged upstream at some
point, but while this happens it is useful to have access to them.
And yes, this code will be merged soon. It is infinitely better
than the version currently in 10 and 9.
MFC after: 3 days
2014-02-15 04:53:04 +00:00
|
|
|
dev/netmap/netmap_offloadings.c optional netmap
|
|
|
|
dev/netmap/netmap_pipe.c optional netmap
|
2013-12-15 08:37:24 +00:00
|
|
|
dev/netmap/netmap_vale.c optional netmap
|
2013-11-01 21:21:14 +00:00
|
|
|
# compile-with "${NORMAL_C} -Wconversion -Wextra"
|
2014-09-23 05:54:18 +00:00
|
|
|
dev/nfsmb/nfsmb.c optional nfsmb pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/nge/if_nge.c optional nge
|
2011-12-30 13:16:59 +00:00
|
|
|
dev/nxge/if_nxge.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
|
|
|
dev/nxge/xgehal/xgehal-device.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
2007-06-29 22:47:18 +00:00
|
|
|
dev/nxge/xgehal/xgehal-mm.c optional nxge
|
|
|
|
dev/nxge/xgehal/xge-queue.c optional nxge
|
2011-12-30 13:16:59 +00:00
|
|
|
dev/nxge/xgehal/xgehal-driver.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
|
|
|
dev/nxge/xgehal/xgehal-ring.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
|
|
|
dev/nxge/xgehal/xgehal-channel.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
|
|
|
dev/nxge/xgehal/xgehal-fifo.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
|
|
|
dev/nxge/xgehal/xgehal-stats.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
2007-06-29 22:47:18 +00:00
|
|
|
dev/nxge/xgehal/xgehal-config.c optional nxge
|
2011-12-30 13:16:59 +00:00
|
|
|
dev/nxge/xgehal/xgehal-mgmt.c optional nxge \
|
|
|
|
compile-with "${NORMAL_C} ${NO_WSELF_ASSIGN}"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/nmdm/nmdm.c optional nmdm
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/nsp/nsp.c optional nsp
|
|
|
|
dev/nsp/nsp_pccard.c optional nsp pccard
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/null/null.c standard
|
2012-02-14 10:11:53 +00:00
|
|
|
dev/oce/oce_hw.c optional oce pci
|
|
|
|
dev/oce/oce_if.c optional oce pci
|
|
|
|
dev/oce/oce_mbox.c optional oce pci
|
|
|
|
dev/oce/oce_queue.c optional oce pci
|
|
|
|
dev/oce/oce_sysctl.c optional oce pci
|
|
|
|
dev/oce/oce_util.c optional oce pci
|
2012-10-24 16:53:02 +00:00
|
|
|
dev/ofw/ofw_bus_if.m optional fdt
|
|
|
|
dev/ofw/ofw_bus_subr.c optional fdt
|
|
|
|
dev/ofw/ofw_fdt.c optional fdt
|
2012-11-13 06:07:13 +00:00
|
|
|
dev/ofw/ofw_if.m optional fdt
|
2013-10-23 13:09:57 +00:00
|
|
|
dev/ofw/ofw_iicbus.c optional fdt iicbus
|
2015-12-21 18:07:32 +00:00
|
|
|
dev/ofw/ofw_subr.c optional fdt
|
2014-02-05 14:44:22 +00:00
|
|
|
dev/ofw/ofwbus.c optional fdt
|
2012-10-24 16:53:02 +00:00
|
|
|
dev/ofw/openfirm.c optional fdt
|
|
|
|
dev/ofw/openfirmio.c optional fdt
|
2015-08-27 23:33:38 +00:00
|
|
|
dev/ow/ow.c optional ow \
|
|
|
|
dependency "owll_if.h" \
|
|
|
|
dependency "own_if.h"
|
|
|
|
dev/ow/owll_if.m optional ow
|
|
|
|
dev/ow/own_if.m optional ow
|
|
|
|
dev/ow/ow_temp.c optional ow_temp
|
|
|
|
dev/ow/owc_gpiobus.c optional owc gpio
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/patm/if_patm.c optional patm pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/patm/if_patm_attach.c optional patm pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/patm/if_patm_intr.c optional patm pci
|
2003-07-15 11:57:24 +00:00
|
|
|
dev/patm/if_patm_ioctl.c optional patm pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/patm/if_patm_rtables.c optional patm pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/patm/if_patm_rx.c optional patm pci
|
|
|
|
dev/patm/if_patm_tx.c optional patm pci
|
|
|
|
dev/pbio/pbio.c optional pbio isa
|
|
|
|
dev/pccard/card_if.m standard
|
|
|
|
dev/pccard/pccard.c optional pccard
|
|
|
|
dev/pccard/pccard_cis.c optional pccard
|
|
|
|
dev/pccard/pccard_cis_quirks.c optional pccard
|
2005-09-20 06:48:55 +00:00
|
|
|
dev/pccard/pccard_device.c optional pccard
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pccard/power_if.m standard
|
|
|
|
dev/pccbb/pccbb.c optional cbb
|
|
|
|
dev/pccbb/pccbb_isa.c optional cbb isa
|
|
|
|
dev/pccbb/pccbb_pci.c optional cbb pci
|
2005-10-28 15:58:19 +00:00
|
|
|
dev/pcf/pcf.c optional pcf
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pci/eisa_pci.c optional pci eisa
|
|
|
|
dev/pci/fixup_pci.c optional pci
|
2005-12-20 21:09:45 +00:00
|
|
|
dev/pci/hostb_pci.c optional pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pci/ignore_pci.c optional pci
|
|
|
|
dev/pci/isa_pci.c optional pci isa
|
|
|
|
dev/pci/pci.c optional pci
|
|
|
|
dev/pci/pci_if.m standard
|
2015-03-01 00:40:09 +00:00
|
|
|
dev/pci/pci_iov.c optional pci pci_iov
|
2015-05-28 22:01:50 +00:00
|
|
|
dev/pci/pci_iov_if.m standard
|
2015-03-01 00:40:42 +00:00
|
|
|
dev/pci/pci_iov_schema.c optional pci pci_iov
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pci/pci_pci.c optional pci
|
2011-06-24 21:39:38 +00:00
|
|
|
dev/pci/pci_subr.c optional pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pci/pci_user.c optional pci
|
|
|
|
dev/pci/pcib_if.m standard
|
2014-04-01 15:47:24 +00:00
|
|
|
dev/pci/pcib_support.c standard
|
2005-12-20 22:35:39 +00:00
|
|
|
dev/pci/vga_pci.c optional pci
|
2008-08-14 20:34:46 +00:00
|
|
|
dev/pcn/if_pcn.c optional pcn pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pdq/if_fea.c optional fea eisa
|
|
|
|
dev/pdq/if_fpa.c optional fpa pci
|
2005-11-27 21:41:58 +00:00
|
|
|
dev/pdq/pdq.c optional nowerror fea eisa | fpa pci
|
|
|
|
dev/pdq/pdq_ifsubr.c optional nowerror fea eisa | fpa pci
|
2015-07-07 13:17:02 +00:00
|
|
|
dev/pms/freebsd/driver/ini/src/agtiapi.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sadisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/mpi.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/saframe.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sahw.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sainit.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/saint.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sampicmd.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sampirsp.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/saphy.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/saport.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sasata.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sasmp.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sassp.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/satimer.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/sautil.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/saioctlcmd.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sallsdk/spc/mpidebug.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dminit.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dmsmp.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dmdisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dmport.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dmtimer.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/discovery/dm/dmmisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/sminit.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/smmisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/smsat.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/smsatcb.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/smsathw.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/sat/src/smtimer.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdinit.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdmisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdesgl.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdport.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdint.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdioctl.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdhw.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/ossacmnapi.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tddmcmnapi.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdsmcmnapi.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/common/tdtimers.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sas/ini/itdcb.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sas/ini/itdinit.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sas/ini/itddisc.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sata/host/sat.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sata/host/ossasat.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
|
|
|
dev/pms/RefTisa/tisa/sassata/sata/host/sathw.c optional pmspcv \
|
|
|
|
compile-with "${NORMAL_C} -Wunused-variable -Woverflow -Wparentheses -w"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ppbus/if_plip.c optional plip
|
|
|
|
dev/ppbus/immio.c optional vpo
|
|
|
|
dev/ppbus/lpbb.c optional lpbb
|
|
|
|
dev/ppbus/lpt.c optional lpt
|
|
|
|
dev/ppbus/pcfclock.c optional pcfclock
|
|
|
|
dev/ppbus/ppb_1284.c optional ppbus
|
|
|
|
dev/ppbus/ppb_base.c optional ppbus
|
|
|
|
dev/ppbus/ppb_msq.c optional ppbus
|
|
|
|
dev/ppbus/ppbconf.c optional ppbus
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/ppbus/ppbus_if.m optional ppbus
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ppbus/ppi.c optional ppi
|
|
|
|
dev/ppbus/pps.c optional pps
|
|
|
|
dev/ppbus/vpo.c optional vpo
|
|
|
|
dev/ppbus/vpoio.c optional vpo
|
2006-04-24 23:31:51 +00:00
|
|
|
dev/ppc/ppc.c optional ppc
|
|
|
|
dev/ppc/ppc_acpi.c optional ppc acpi
|
|
|
|
dev/ppc/ppc_isa.c optional ppc isa
|
|
|
|
dev/ppc/ppc_pci.c optional ppc pci
|
|
|
|
dev/ppc/ppc_puc.c optional ppc puc
|
2015-07-03 15:56:00 +00:00
|
|
|
dev/proto/proto_bus_isa.c optional proto acpi | proto isa
|
|
|
|
dev/proto/proto_bus_pci.c optional proto pci
|
|
|
|
dev/proto/proto_busdma.c optional proto
|
|
|
|
dev/proto/proto_core.c optional proto
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pst/pst-iop.c optional pst
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/pst/pst-pci.c optional pst pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/pst/pst-raid.c optional pst
|
2009-08-23 20:26:09 +00:00
|
|
|
dev/pty/pty.c optional pty
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/puc/puc.c optional puc
|
2006-04-28 21:21:53 +00:00
|
|
|
dev/puc/puc_cfg.c optional puc
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/puc/puc_pccard.c optional puc pccard
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/puc/puc_pci.c optional puc pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/puc/pucdata.c optional puc pci
|
2008-03-03 20:40:20 +00:00
|
|
|
dev/quicc/quicc_core.c optional quicc
|
2006-03-05 20:36:56 +00:00
|
|
|
dev/ral/rt2560.c optional ral
|
|
|
|
dev/ral/rt2661.c optional ral
|
2012-05-10 17:41:16 +00:00
|
|
|
dev/ral/rt2860.c optional ral
|
2005-04-18 18:47:38 +00:00
|
|
|
dev/ral/if_ral_pci.c optional ral pci
|
2008-04-25 20:42:48 +00:00
|
|
|
rt2561fw.c optional rt2561fw | ralfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk rt2561.fw:rt2561fw -mrt2561 -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "rt2561fw.c"
|
|
|
|
rt2561fw.fwo optional rt2561fw | ralfw \
|
|
|
|
dependency "rt2561.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
2009-02-08 14:43:20 +00:00
|
|
|
clean "rt2561fw.fwo"
|
2008-04-25 20:42:48 +00:00
|
|
|
rt2561.fw optional rt2561fw | ralfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ral/rt2561.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "rt2561.fw"
|
|
|
|
rt2561sfw.c optional rt2561sfw | ralfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk rt2561s.fw:rt2561sfw -mrt2561s -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "rt2561sfw.c"
|
|
|
|
rt2561sfw.fwo optional rt2561sfw | ralfw \
|
|
|
|
dependency "rt2561s.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
2009-02-08 14:43:20 +00:00
|
|
|
clean "rt2561sfw.fwo"
|
2008-04-25 20:42:48 +00:00
|
|
|
rt2561s.fw optional rt2561sfw | ralfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ral/rt2561s.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "rt2561s.fw"
|
|
|
|
rt2661fw.c optional rt2661fw | ralfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk rt2661.fw:rt2661fw -mrt2661 -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "rt2661fw.c"
|
|
|
|
rt2661fw.fwo optional rt2661fw | ralfw \
|
|
|
|
dependency "rt2661.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
2009-02-08 14:43:20 +00:00
|
|
|
clean "rt2661fw.fwo"
|
2008-04-25 20:42:48 +00:00
|
|
|
rt2661.fw optional rt2661fw | ralfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ral/rt2661.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "rt2661.fw"
|
|
|
|
rt2860fw.c optional rt2860fw | ralfw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk rt2860.fw:rt2860fw -mrt2860 -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "rt2860fw.c"
|
|
|
|
rt2860fw.fwo optional rt2860fw | ralfw \
|
|
|
|
dependency "rt2860.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
2009-02-08 14:43:20 +00:00
|
|
|
clean "rt2860fw.fwo"
|
2008-04-25 20:42:48 +00:00
|
|
|
rt2860.fw optional rt2860fw | ralfw \
|
2010-09-10 18:19:38 +00:00
|
|
|
dependency "$S/contrib/dev/ral/rt2860.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "rt2860.fw"
|
2015-08-17 07:36:12 +00:00
|
|
|
dev/random/random_infra.c optional random
|
|
|
|
dev/random/random_harvestq.c optional random
|
|
|
|
dev/random/randomdev.c optional random random_yarrow | \
|
|
|
|
random !random_yarrow !random_loadable
|
Huge cleanup of random(4) code.
* GENERAL
- Update copyright.
- Make kernel options for RANDOM_YARROW and RANDOM_DUMMY. Set
neither to ON, which means we want Fortuna
- If there is no 'device random' in the kernel, there will be NO
random(4) device in the kernel, and the KERN_ARND sysctl will
return nothing. With RANDOM_DUMMY there will be a random(4) that
always blocks.
- Repair kern.arandom (KERN_ARND sysctl). The old version went
through arc4random(9) and was a bit weird.
- Adjust arc4random stirring a bit - the existing code looks a little
suspect.
- Fix the nasty pre- and post-read overloading by providing explictit
functions to do these tasks.
- Redo read_random(9) so as to duplicate random(4)'s read internals.
This makes it a first-class citizen rather than a hack.
- Move stuff out of locked regions when it does not need to be
there.
- Trim RANDOM_DEBUG printfs. Some are excess to requirement, some
behind boot verbose.
- Use SYSINIT to sequence the startup.
- Fix init/deinit sysctl stuff.
- Make relevant sysctls also tunables.
- Add different harvesting "styles" to allow for different requirements
(direct, queue, fast).
- Add harvesting of FFS atime events. This needs to be checked for
weighing down the FS code.
- Add harvesting of slab allocator events. This needs to be checked for
weighing down the allocator code.
- Fix the random(9) manpage.
- Loadable modules are not present for now. These will be re-engineered
when the dust settles.
- Use macros for locks.
- Fix comments.
* src/share/man/...
- Update the man pages.
* src/etc/...
- The startup/shutdown work is done in D2924.
* src/UPDATING
- Add UPDATING announcement.
* src/sys/dev/random/build.sh
- Add copyright.
- Add libz for unit tests.
* src/sys/dev/random/dummy.c
- Remove; no longer needed. Functionality incorporated into randomdev.*.
* live_entropy_sources.c live_entropy_sources.h
- Remove; content moved.
- move content to randomdev.[ch] and optimise.
* src/sys/dev/random/random_adaptors.c src/sys/dev/random/random_adaptors.h
- Remove; plugability is no longer used. Compile-time algorithm
selection is the way to go.
* src/sys/dev/random/random_harvestq.c src/sys/dev/random/random_harvestq.h
- Add early (re)boot-time randomness caching.
* src/sys/dev/random/randomdev_soft.c src/sys/dev/random/randomdev_soft.h
- Remove; no longer needed.
* src/sys/dev/random/uint128.h
- Provide a fake uint128_t; if a real one ever arrived, we can use
that instead. All that is needed here is N=0, N++, N==0, and some
localised trickery is used to manufacture a 128-bit 0ULLL.
* src/sys/dev/random/unit_test.c src/sys/dev/random/unit_test.h
- Improve unit tests; previously the testing human needed clairvoyance;
now the test will do a basic check of compressibility. Clairvoyant
talent is still a good idea.
- This is still a long way off a proper unit test.
* src/sys/dev/random/fortuna.c src/sys/dev/random/fortuna.h
- Improve messy union to just uint128_t.
- Remove unneeded 'static struct fortuna_start_cache'.
- Tighten up up arithmetic.
- Provide a method to allow eternal junk to be introduced; harden
it against blatant by compress/hashing.
- Assert that locks are held correctly.
- Fix the nasty pre- and post-read overloading by providing explictit
functions to do these tasks.
- Turn into self-sufficient module (no longer requires randomdev_soft.[ch])
* src/sys/dev/random/yarrow.c src/sys/dev/random/yarrow.h
- Improve messy union to just uint128_t.
- Remove unneeded 'staic struct start_cache'.
- Tighten up up arithmetic.
- Provide a method to allow eternal junk to be introduced; harden
it against blatant by compress/hashing.
- Assert that locks are held correctly.
- Fix the nasty pre- and post-read overloading by providing explictit
functions to do these tasks.
- Turn into self-sufficient module (no longer requires randomdev_soft.[ch])
- Fix some magic numbers elsewhere used as FAST and SLOW.
Differential Revision: https://reviews.freebsd.org/D2025
Reviewed by: vsevolod,delphij,rwatson,trasz,jmg
Approved by: so (delphij)
2015-06-30 17:00:45 +00:00
|
|
|
dev/random/yarrow.c optional random random_yarrow
|
2015-08-17 07:36:12 +00:00
|
|
|
dev/random/fortuna.c optional random !random_yarrow !random_loadable
|
|
|
|
dev/random/hash.c optional random random_yarrow | \
|
|
|
|
random !random_yarrow !random_loadable
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/rc/rc.c optional rc
|
2015-08-18 21:05:56 +00:00
|
|
|
dev/rccgpio/rccgpio.c optional rccgpio gpio
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/re/if_re.c optional re
|
2014-09-19 10:32:20 +00:00
|
|
|
dev/rl/if_rl.c optional rl pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/rndtest/rndtest.c optional rndtest
|
|
|
|
dev/rp/rp.c optional rp
|
|
|
|
dev/rp/rp_isa.c optional rp isa
|
|
|
|
dev/rp/rp_pci.c optional rp pci
|
|
|
|
dev/safe/safe.c optional safe
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/scc/scc_if.m optional scc
|
|
|
|
dev/scc/scc_bfe_ebus.c optional scc ebus
|
2008-03-03 20:40:20 +00:00
|
|
|
dev/scc/scc_bfe_quicc.c optional scc quicc
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/scc/scc_bfe_sbus.c optional scc fhc | scc sbus
|
|
|
|
dev/scc/scc_core.c optional scc
|
2008-03-03 20:40:20 +00:00
|
|
|
dev/scc/scc_dev_quicc.c optional scc quicc
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/scc/scc_dev_sab82532.c optional scc
|
|
|
|
dev/scc/scc_dev_z8530.c optional scc
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/scd/scd.c optional scd isa
|
|
|
|
dev/scd/scd_isa.c optional scd isa
|
2012-10-16 01:10:43 +00:00
|
|
|
dev/sdhci/sdhci.c optional sdhci
|
|
|
|
dev/sdhci/sdhci_if.m optional sdhci
|
|
|
|
dev/sdhci/sdhci_pci.c optional sdhci pci
|
2008-01-21 04:27:32 +00:00
|
|
|
dev/sf/if_sf.c optional sf pci
|
2010-04-14 20:45:33 +00:00
|
|
|
dev/sge/if_sge.c optional sge pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/si/si.c optional si
|
|
|
|
dev/si/si2_z280.c optional si
|
|
|
|
dev/si/si3_t225.c optional si
|
|
|
|
dev/si/si_eisa.c optional si eisa
|
|
|
|
dev/si/si_isa.c optional si isa
|
|
|
|
dev/si/si_pci.c optional si pci
|
2012-10-26 20:43:30 +00:00
|
|
|
dev/siba/siba.c optional siba
|
2010-03-03 21:10:13 +00:00
|
|
|
dev/siba/siba_bwn.c optional siba_bwn pci
|
2012-10-26 20:43:30 +00:00
|
|
|
dev/siba/siba_cc.c optional siba
|
|
|
|
dev/siba/siba_core.c optional siba | siba_bwn pci
|
|
|
|
dev/siba/siba_pcib.c optional siba pci
|
2009-07-21 12:32:46 +00:00
|
|
|
dev/siis/siis.c optional siis pci
|
2008-08-10 10:00:14 +00:00
|
|
|
dev/sis/if_sis.c optional sis pci
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/sk/if_sk.c optional sk pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/smbus/smb.c optional smb
|
|
|
|
dev/smbus/smbconf.c optional smbus
|
|
|
|
dev/smbus/smbus.c optional smbus
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/smbus/smbus_if.m optional smbus
|
2008-06-06 05:00:49 +00:00
|
|
|
dev/smc/if_smc.c optional smc
|
2014-09-10 10:59:17 +00:00
|
|
|
dev/smc/if_smc_fdt.c optional smc fdt
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sn/if_sn.c optional sn
|
|
|
|
dev/sn/if_sn_isa.c optional sn isa
|
|
|
|
dev/sn/if_sn_pccard.c optional sn pccard
|
|
|
|
dev/snp/snp.c optional snp
|
Last major commit and updates for RELENG_7:
- Rework the entire pcm_channel structure:
* Remove rarely used link placeholder, instead, make each pcm_channel
as head/link of each own/each other. Unlock - Lock sequence due to
sleep malloc has been reduced.
* Implement "busy" queue which will contain list of busy/active
channels. This greatly reduce locking contention for example while
servicing interrupt for hardware with many channels or when virtual
channels reach its 256 peak channels.
- So I heard you like v chan ... O RLY?
Welcome to Virtual **Record** Channels (vrec, rec vchans, vchans for
recording, Rec-Chan, you decide), the ultimate solutions for your
nagging O_RDWR full-duplex wannabe (note: flash plugins) monopolizing
single record channel causing EBUSY. Vrec works exactly like Vchans
(or, should I rename it to "Vplay" :) , except that it operates on the
opposite direction (recording). Up to 256 vrecs (like vchans) are
possible.
Notes:
* Relocate dev.pcm.%d.{vchans,vchanformat,vchanrate} to each of its
respective node/direction:
dev.pcm.%d.play.* for "play" (cdev = dsp%d.vp%d)
dev.pcm.%d.rec.* for "record" (cdev = dsp%d.vr%d)
* Don't expect that it will magically give you ability to split
"recording source" (eg: 1 channel for cdrom, 1 channel for mic,
etc). Just admit that you only have a *single* recording source /
channel. Please bug your hardware vendor instead :)
- Bump maxautovchans from 4 to 16. For a full-fledged multimedia
desktop/workstation with too many soundservers installed (esound,
artsd, jackd, pulse/polypaudio, ding-dong pling plong mudkip fuh fuh,
etc), 4 seems inadequate. There will be no memory penalty here, since
virtual channels are allocate only by demand.
- Nuke/Rework the entire statically created cdev entries. Everything is
clonable through snd own clone manager which designed to withstand many
kind of abusive devfs droids such as:
* while : ; do /bin/test -e /dev/dsp ; done
* jot 16777216 0 | while read x ; do ls /dev/dsp0.$x ; done
* hundreds (could be thousands) concurrent threads/process opening
"/dev/dsp" (previously, this might result EBUSY even with just
3 contesting threads/procs).
o Reusable clone objects (instead of creating new one like there's no
tomorrow) after certain expiration deadline. The clone allocator will
decide whether to reuse, share, or creating new clone.
o Automatic garbage collector.
- Dynamic unit magic allocator. Maximum attached soundcards can be tuned
using tunable "hw.snd.maxunit" (Default to 512). Minimum is 16, and
maximum is 2048.
- ..other fixes, mostly related to concurrency issues.
joel@ will do the manpage updates on sound(4).
Have fun.
2007-05-31 18:43:33 +00:00
|
|
|
dev/sound/clone.c optional sound
|
|
|
|
dev/sound/unit.c optional sound
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/isa/ad1816.c optional snd_ad1816 isa
|
|
|
|
dev/sound/isa/ess.c optional snd_ess isa
|
|
|
|
dev/sound/isa/gusc.c optional snd_gusc isa
|
|
|
|
dev/sound/isa/mss.c optional snd_mss isa
|
|
|
|
dev/sound/isa/sb16.c optional snd_sb16 isa
|
|
|
|
dev/sound/isa/sb8.c optional snd_sb8 isa
|
|
|
|
dev/sound/isa/sbc.c optional snd_sbc isa
|
2004-07-16 04:00:08 +00:00
|
|
|
dev/sound/isa/sndbuf_dma.c optional sound isa
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/als4000.c optional snd_als4000 pci
|
2005-11-27 03:29:59 +00:00
|
|
|
dev/sound/pci/atiixp.c optional snd_atiixp pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/cmi.c optional snd_cmi pci
|
|
|
|
dev/sound/pci/cs4281.c optional snd_cs4281 pci
|
2012-02-01 21:38:01 +00:00
|
|
|
dev/sound/pci/csa.c optional snd_csa pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/csapcm.c optional snd_csa pci
|
|
|
|
dev/sound/pci/ds1.c optional snd_ds1 pci
|
2012-01-03 21:04:54 +00:00
|
|
|
dev/sound/pci/emu10k1.c optional snd_emu10k1 pci
|
2012-01-11 21:17:14 +00:00
|
|
|
dev/sound/pci/emu10kx.c optional snd_emu10kx pci
|
|
|
|
dev/sound/pci/emu10kx-pcm.c optional snd_emu10kx pci
|
|
|
|
dev/sound/pci/emu10kx-midi.c optional snd_emu10kx pci
|
2006-07-28 21:20:00 +00:00
|
|
|
dev/sound/pci/envy24.c optional snd_envy24 pci
|
2006-09-30 17:59:08 +00:00
|
|
|
dev/sound/pci/envy24ht.c optional snd_envy24ht pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/es137x.c optional snd_es137x pci
|
|
|
|
dev/sound/pci/fm801.c optional snd_fm801 pci
|
|
|
|
dev/sound/pci/ich.c optional snd_ich pci
|
2005-11-25 22:36:40 +00:00
|
|
|
dev/sound/pci/maestro.c optional snd_maestro pci
|
2012-01-20 22:37:10 +00:00
|
|
|
dev/sound/pci/maestro3.c optional snd_maestro3 pci
|
2004-07-16 04:00:08 +00:00
|
|
|
dev/sound/pci/neomagic.c optional snd_neomagic pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/solo.c optional snd_solo pci
|
2006-10-01 11:34:54 +00:00
|
|
|
dev/sound/pci/spicds.c optional snd_spicds pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/t4dwave.c optional snd_t4dwave pci
|
|
|
|
dev/sound/pci/via8233.c optional snd_via8233 pci
|
2004-07-16 04:00:08 +00:00
|
|
|
dev/sound/pci/via82c686.c optional snd_via82c686 pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pci/vibes.c optional snd_vibes pci
|
Major snd_hda driver rewrite:
- Huge old hdac driver was split into three independent pieces: HDA
controller driver (hdac), HDA CODEC driver (hdacc) and HDA sudio function
driver (hdaa).
- Support for multichannel recording was added. Now, as specification
defines, driver checks input associations for pins with sequence numbers
14 and 15, and if found (usually) -- works as before, mixing signals
together. If it doesn't, it configures input association as multichannel.
- Signal tracer was improved to look for cases where several DACs/ADCs in
CODEC can work with the same audio signal. If such case found, driver
registers additional playback/record stream (channel) for the pcm device.
- New controller streams reservation mechanism was implemented. That
allows to have more pcm devices then streams supported by the controller
(usually 4 in each direction). Now it limits only number of simultaneously
transferred audio streams, that is rarely reachable and properly reported
if happens.
- Codec pins and GPIO signals configuration was exported via set of
writable sysctls. Another sysctl dev.hdaa.X.reconfig allows to trigger
driver reconfiguration in run-time.
- Driver now decodes pins location and connector type names. In some cases
it allows to hint user where on the system case connectors, related to the
pcm device, are located. Number of channels supported by pcm device,
reported now (if it is not 2), should also make search easier.
- Added workaround for digital mic on some Asus laptops/netbooks.
MFC after: 2 months
Sponsored by: iXsystems, Inc.
2012-01-15 13:21:36 +00:00
|
|
|
dev/sound/pci/hda/hdaa.c optional snd_hda pci
|
|
|
|
dev/sound/pci/hda/hdaa_patches.c optional snd_hda pci
|
2006-10-01 11:18:56 +00:00
|
|
|
dev/sound/pci/hda/hdac.c optional snd_hda pci
|
Major snd_hda driver rewrite:
- Huge old hdac driver was split into three independent pieces: HDA
controller driver (hdac), HDA CODEC driver (hdacc) and HDA sudio function
driver (hdaa).
- Support for multichannel recording was added. Now, as specification
defines, driver checks input associations for pins with sequence numbers
14 and 15, and if found (usually) -- works as before, mixing signals
together. If it doesn't, it configures input association as multichannel.
- Signal tracer was improved to look for cases where several DACs/ADCs in
CODEC can work with the same audio signal. If such case found, driver
registers additional playback/record stream (channel) for the pcm device.
- New controller streams reservation mechanism was implemented. That
allows to have more pcm devices then streams supported by the controller
(usually 4 in each direction). Now it limits only number of simultaneously
transferred audio streams, that is rarely reachable and properly reported
if happens.
- Codec pins and GPIO signals configuration was exported via set of
writable sysctls. Another sysctl dev.hdaa.X.reconfig allows to trigger
driver reconfiguration in run-time.
- Driver now decodes pins location and connector type names. In some cases
it allows to hint user where on the system case connectors, related to the
pcm device, are located. Number of channels supported by pcm device,
reported now (if it is not 2), should also make search easier.
- Added workaround for digital mic on some Asus laptops/netbooks.
MFC after: 2 months
Sponsored by: iXsystems, Inc.
2012-01-15 13:21:36 +00:00
|
|
|
dev/sound/pci/hda/hdac_if.m optional snd_hda pci
|
|
|
|
dev/sound/pci/hda/hdacc.c optional snd_hda pci
|
2012-03-01 13:10:18 +00:00
|
|
|
dev/sound/pci/hdspe.c optional snd_hdspe pci
|
|
|
|
dev/sound/pci/hdspe-pcm.c optional snd_hdspe pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pcm/ac97.c optional sound
|
|
|
|
dev/sound/pcm/ac97_if.m optional sound
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/sound/pcm/ac97_patch.c optional sound
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
dev/sound/pcm/buffer.c optional sound \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pcm/channel.c optional sound
|
2004-07-16 04:00:08 +00:00
|
|
|
dev/sound/pcm/channel_if.m optional sound
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pcm/dsp.c optional sound
|
|
|
|
dev/sound/pcm/feeder.c optional sound
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
dev/sound/pcm/feeder_chain.c optional sound
|
|
|
|
dev/sound/pcm/feeder_eq.c optional sound \
|
|
|
|
dependency "feeder_eq_gen.h" \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/sound/pcm/feeder_if.m optional sound
|
Sound Mega-commit. Expect further cleanup until code freeze.
For a slightly thorough explaination, please refer to
[1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .
Summary of changes includes:
1 Volume Per-Channel (vpc). Provides private / standalone volume control
unique per-stream pcm channel without touching master volume / pcm.
Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
instead of /dev/mixer. Special "bypass" mode is enabled through
/dev/mixer which will automatically detect if the adjustment is made
through /dev/mixer and forward its request to this private volume
controller. Changes to this volume object will not interfere with
other channels.
Requirements:
- SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which
require specific application modifications (preferred).
- No modifications required for using bypass mode, so applications
like mplayer or xmms should work out of the box.
Kernel hints:
- hint.pcm.%d.vpc (0 = disable vpc).
Kernel sysctls:
- hw.snd.vpc_mixer_bypass (default: 1). Enable or disable /dev/mixer
bypass mode.
- hw.snd.vpc_autoreset (default: 1). By default, closing/opening
/dev/dsp will reset the volume back to 0 db gain/attenuation.
Setting this to 0 will preserve its settings across device
closing/opening.
- hw.snd.vpc_reset (default: 0). Panic/reset button to reset all
volume settings back to 0 db.
- hw.snd.vpc_0db (default: 45). 0 db relative to linear mixer value.
2 High quality fixed-point Bandlimited SINC sampling rate converter,
based on Julius O'Smith's Digital Audio Resampling -
http://ccrma.stanford.edu/~jos/resample/. It includes a filter design
script written in awk (the clumsiest joke I've ever written)
- 100% 32bit fixed-point, 64bit accumulator.
- Possibly among the fastest (if not fastest) of its kind.
- Resampling quality is tunable, either runtime or during kernel
compilation (FEEDER_RATE_PRESETS).
- Quality can be further customized during kernel compilation by
defining FEEDER_RATE_PRESETS in /etc/make.conf.
Kernel sysctls:
- hw.snd.feeder_rate_quality.
0 - Zero-order Hold (ZOH). Fastest, bad quality.
1 - Linear Interpolation (LINEAR). Slightly slower than ZOH,
better quality but still does not eliminate aliasing.
2 - (and above) - Sinc Interpolation(SINC). Best quality. SINC
quality always start from 2 and above.
Rough quality comparisons:
- http://people.freebsd.org/~ariff/z_comparison/
3 Bit-perfect mode. Bypasses all feeder/dsp effects. Pure sound will be
directly fed into the hardware.
4 Parametric (compile time) Software Equalizer (Bass/Treble mixer). Can
be customized by defining FEEDER_EQ_PRESETS in /etc/make.conf.
5 Transparent/Adaptive Virtual Channel. Now you don't have to disable
vchans in order to make digital format pass through. It also makes
vchans more dynamic by choosing a better format/rate among all the
concurrent streams, which means that dev.pcm.X.play.vchanformat/rate
becomes sort of optional.
6 Exclusive Stream, with special open() mode O_EXCL. This will "mute"
other concurrent vchan streams and only allow a single channel with
O_EXCL set to keep producing sound.
Other Changes:
* most feeder_* stuffs are compilable in userland. Let's not
speculate whether we should go all out for it (save that for
FreeBSD 16.0-RELEASE).
* kobj signature fixups, thanks to Andriy Gapon <avg@freebsd.org>
* pull out channel mixing logic out of vchan.c and create its own
feeder_mixer for world justice.
* various refactoring here and there, for good or bad.
* activation of few more OSSv4 ioctls() (see [1] above).
* opt_snd.h for possible compile time configuration:
(mostly for debugging purposes, don't try these at home)
SND_DEBUG
SND_DIAGNOSTIC
SND_FEEDER_MULTIFORMAT
SND_FEEDER_FULL_MULTIFORMAT
SND_FEEDER_RATE_HP
SND_PCM_64
SND_OLDSTEREO
Manual page updates are on the way.
Tested by: joel, Olivier SMEDTS <olivier at gid0 d org>, too many
unsung / unnamed heroes.
2009-06-07 19:12:08 +00:00
|
|
|
dev/sound/pcm/feeder_format.c optional sound \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
|
|
|
dev/sound/pcm/feeder_matrix.c optional sound \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
|
|
|
dev/sound/pcm/feeder_mixer.c optional sound \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
|
|
|
dev/sound/pcm/feeder_rate.c optional sound \
|
|
|
|
dependency "feeder_rate_gen.h" \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
|
|
|
dev/sound/pcm/feeder_volume.c optional sound \
|
|
|
|
dependency "snd_fxdiv_gen.h"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pcm/mixer.c optional sound
|
2004-07-16 04:00:08 +00:00
|
|
|
dev/sound/pcm/mixer_if.m optional sound
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sound/pcm/sndstat.c optional sound
|
|
|
|
dev/sound/pcm/sound.c optional sound
|
|
|
|
dev/sound/pcm/vchan.c optional sound
|
2009-02-23 21:19:18 +00:00
|
|
|
dev/sound/usb/uaudio.c optional snd_uaudio usb
|
|
|
|
dev/sound/usb/uaudio_pcm.c optional snd_uaudio usb
|
Commit the new (old) midi framework. It's based in parts on the NetBSD code,
but large parts are rewritten by matk and tanimura.
This is old code, it's not maintained since 2003. We also don't have a
maintainer for this! Yuriy Tsibizov took it and uses it in his emu10kx
driver. Since the emu10kx driver will enter the tree "soon" (some bugs
have to be fixed after Yuriy return from his holidays), I add it here
already.
This also contains some changes to emu10k1 and cmi, so if you're lucky,
you can now make some kind of use of midi with those soundcards.
To all those poor souls which don't have such a card: feel free to send
patches, we don't have a maintainer for this.
To those which miss a specific feature in the midi code: feel free to
submit patches, we don't have a maintainer for this.
Oh, did I already told that it would be nice if someone would take care
of it? Maintainer with midi equipment wanted! :-)
If you get LOR's, submit a PR and notify multimedia@ please. If you get
panics, submit a PR with a backtrace (compile the sound system into your
kernel instead of using modules in this case) and notify multimedia@
please.
Written by: matk, tanimura
Submitted by: "Yuriy Tsibizov" <Yuriy.Tsibizov@gfk.ru>
Based upon: code from NetBSD
2006-05-27 16:32:05 +00:00
|
|
|
dev/sound/midi/midi.c optional sound
|
|
|
|
dev/sound/midi/mpu401.c optional sound
|
|
|
|
dev/sound/midi/mpu_if.m optional sound
|
|
|
|
dev/sound/midi/mpufoi_if.m optional sound
|
|
|
|
dev/sound/midi/sequencer.c optional sound
|
|
|
|
dev/sound/midi/synth_if.m optional sound
|
2013-10-24 16:56:38 +00:00
|
|
|
dev/spibus/ofw_spibus.c optional fdt spibus
|
2006-07-14 22:50:46 +00:00
|
|
|
dev/spibus/spibus.c optional spibus \
|
|
|
|
dependency "spibus_if.h"
|
|
|
|
dev/spibus/spibus_if.m optional spibus
|
2008-08-14 20:09:58 +00:00
|
|
|
dev/ste/if_ste.c optional ste pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/stg/tmc18c30.c optional stg
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/stg/tmc18c30_isa.c optional stg isa
|
2002-11-28 01:17:48 +00:00
|
|
|
dev/stg/tmc18c30_pccard.c optional stg pccard
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/stg/tmc18c30_pci.c optional stg pci
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/stg/tmc18c30_subr.c optional stg
|
2006-07-25 00:45:55 +00:00
|
|
|
dev/stge/if_stge.c optional stge
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/streams/streams.c optional streams
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/sym/sym_hipd.c optional sym \
|
2000-03-23 19:08:49 +00:00
|
|
|
dependency "$S/dev/sym/sym_{conf,defs}.h"
|
2001-08-09 00:02:30 +00:00
|
|
|
dev/syscons/blank/blank_saver.c optional blank_saver
|
|
|
|
dev/syscons/daemon/daemon_saver.c optional daemon_saver
|
2005-01-13 15:55:34 +00:00
|
|
|
dev/syscons/dragon/dragon_saver.c optional dragon_saver
|
2001-08-09 00:02:30 +00:00
|
|
|
dev/syscons/fade/fade_saver.c optional fade_saver
|
|
|
|
dev/syscons/fire/fire_saver.c optional fire_saver
|
|
|
|
dev/syscons/green/green_saver.c optional green_saver
|
|
|
|
dev/syscons/logo/logo.c optional logo_saver
|
2005-01-10 05:11:40 +00:00
|
|
|
dev/syscons/logo/logo_saver.c optional logo_saver
|
2001-08-09 00:02:30 +00:00
|
|
|
dev/syscons/rain/rain_saver.c optional rain_saver
|
2006-10-23 13:05:01 +00:00
|
|
|
dev/syscons/schistory.c optional sc
|
|
|
|
dev/syscons/scmouse.c optional sc
|
|
|
|
dev/syscons/scterm.c optional sc
|
|
|
|
dev/syscons/scvidctl.c optional sc
|
2005-01-13 15:55:34 +00:00
|
|
|
dev/syscons/snake/snake_saver.c optional snake_saver
|
2001-08-09 00:02:30 +00:00
|
|
|
dev/syscons/star/star_saver.c optional star_saver
|
2006-10-23 13:05:01 +00:00
|
|
|
dev/syscons/syscons.c optional sc
|
|
|
|
dev/syscons/sysmouse.c optional sc
|
2001-08-09 00:02:30 +00:00
|
|
|
dev/syscons/warp/warp_saver.c optional warp_saver
|
2006-03-03 21:37:38 +00:00
|
|
|
dev/tdfx/tdfx_linux.c optional tdfx_linux tdfx compat_linux
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/tdfx/tdfx_pci.c optional tdfx pci
|
2005-12-10 00:38:33 +00:00
|
|
|
dev/ti/if_ti.c optional ti pci
|
2008-08-14 20:02:34 +00:00
|
|
|
dev/tl/if_tl.c optional tl pci
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/trm/trm.c optional trm
|
2005-09-11 00:52:05 +00:00
|
|
|
dev/twa/tw_cl_init.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
|
|
|
dev/twa/tw_cl_intr.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
|
|
|
dev/twa/tw_cl_io.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
|
|
|
dev/twa/tw_cl_misc.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
2005-11-08 22:51:43 +00:00
|
|
|
dev/twa/tw_osl_cam.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
|
|
|
dev/twa/tw_osl_freebsd.c optional twa \
|
|
|
|
compile-with "${NORMAL_C} -I$S/dev/twa"
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/twe/twe.c optional twe
|
|
|
|
dev/twe/twe_freebsd.c optional twe
|
2011-10-04 21:40:25 +00:00
|
|
|
dev/tws/tws.c optional tws
|
|
|
|
dev/tws/tws_cam.c optional tws
|
|
|
|
dev/tws/tws_hdm.c optional tws
|
|
|
|
dev/tws/tws_services.c optional tws
|
|
|
|
dev/tws/tws_user.c optional tws
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/tx/if_tx.c optional tx
|
2011-04-25 16:33:42 +00:00
|
|
|
dev/txp/if_txp.c optional txp
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/uart/uart_bus_acpi.c optional uart acpi
|
|
|
|
dev/uart/uart_bus_ebus.c optional uart ebus
|
2010-06-13 13:02:43 +00:00
|
|
|
dev/uart/uart_bus_fdt.c optional uart fdt
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/uart/uart_bus_isa.c optional uart isa
|
|
|
|
dev/uart/uart_bus_pccard.c optional uart pccard
|
|
|
|
dev/uart/uart_bus_pci.c optional uart pci
|
|
|
|
dev/uart/uart_bus_puc.c optional uart puc
|
|
|
|
dev/uart/uart_bus_scc.c optional uart scc
|
|
|
|
dev/uart/uart_core.c optional uart
|
|
|
|
dev/uart/uart_dbg.c optional uart gdb
|
2016-04-01 20:26:45 +00:00
|
|
|
dev/uart/uart_dev_ns8250.c optional uart uart_ns8250 | uart uart_snps
|
2012-08-30 20:31:53 +00:00
|
|
|
dev/uart/uart_dev_pl011.c optional uart pl011
|
2008-03-03 20:40:20 +00:00
|
|
|
dev/uart/uart_dev_quicc.c optional uart quicc
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/uart/uart_dev_sab82532.c optional uart uart_sab82532
|
|
|
|
dev/uart/uart_dev_sab82532.c optional uart scc
|
2016-04-01 20:26:45 +00:00
|
|
|
dev/uart/uart_dev_snps.c optional uart uart_snps
|
2007-10-25 14:16:07 +00:00
|
|
|
dev/uart/uart_dev_z8530.c optional uart uart_z8530
|
|
|
|
dev/uart/uart_dev_z8530.c optional uart scc
|
|
|
|
dev/uart/uart_if.m optional uart
|
|
|
|
dev/uart/uart_subr.c optional uart
|
|
|
|
dev/uart/uart_tty.c optional uart
|
2005-01-04 06:07:25 +00:00
|
|
|
dev/ubsec/ubsec.c optional ubsec
|
2000-03-23 19:08:49 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB controller drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/controller/at91dci.c optional at91dci
|
|
|
|
dev/usb/controller/at91dci_atmelarm.c optional at91dci at91rm9200
|
|
|
|
dev/usb/controller/musb_otg.c optional musb
|
|
|
|
dev/usb/controller/musb_otg_atmelarm.c optional musb at91rm9200
|
2012-09-11 22:10:36 +00:00
|
|
|
dev/usb/controller/dwc_otg.c optional dwcotg
|
2014-05-29 11:13:40 +00:00
|
|
|
dev/usb/controller/dwc_otg_fdt.c optional dwcotg fdt
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/controller/ehci.c optional ehci
|
|
|
|
dev/usb/controller/ehci_pci.c optional ehci pci
|
|
|
|
dev/usb/controller/ohci.c optional ohci
|
|
|
|
dev/usb/controller/ohci_pci.c optional ohci pci
|
|
|
|
dev/usb/controller/uhci.c optional uhci
|
|
|
|
dev/usb/controller/uhci_pci.c optional uhci pci
|
2010-10-04 23:22:03 +00:00
|
|
|
dev/usb/controller/xhci.c optional xhci
|
|
|
|
dev/usb/controller/xhci_pci.c optional xhci pci
|
2014-05-29 10:46:09 +00:00
|
|
|
dev/usb/controller/saf1761_otg.c optional saf1761otg
|
|
|
|
dev/usb/controller/saf1761_otg_fdt.c optional saf1761otg fdt
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/controller/uss820dci.c optional uss820dci
|
|
|
|
dev/usb/controller/uss820dci_atmelarm.c optional uss820dci at91rm9200
|
|
|
|
dev/usb/controller/usb_controller.c optional usb
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB storage drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/storage/umass.c optional umass
|
|
|
|
dev/usb/storage/urio.c optional urio
|
|
|
|
dev/usb/storage/ustorage_fs.c optional usfs
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB core
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/usb_busdma.c optional usb
|
|
|
|
dev/usb/usb_core.c optional usb
|
|
|
|
dev/usb/usb_debug.c optional usb
|
|
|
|
dev/usb/usb_dev.c optional usb
|
|
|
|
dev/usb/usb_device.c optional usb
|
|
|
|
dev/usb/usb_dynamic.c optional usb
|
|
|
|
dev/usb/usb_error.c optional usb
|
|
|
|
dev/usb/usb_generic.c optional usb
|
|
|
|
dev/usb/usb_handle_request.c optional usb
|
|
|
|
dev/usb/usb_hid.c optional usb
|
|
|
|
dev/usb/usb_hub.c optional usb
|
|
|
|
dev/usb/usb_if.m optional usb
|
|
|
|
dev/usb/usb_lookup.c optional usb
|
|
|
|
dev/usb/usb_mbuf.c optional usb
|
|
|
|
dev/usb/usb_msctest.c optional usb
|
|
|
|
dev/usb/usb_parse.c optional usb
|
2010-11-22 01:11:28 +00:00
|
|
|
dev/usb/usb_pf.c optional usb
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/usb_process.c optional usb
|
|
|
|
dev/usb/usb_request.c optional usb
|
|
|
|
dev/usb/usb_transfer.c optional usb
|
|
|
|
dev/usb/usb_util.c optional usb
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2010-01-13 03:16:31 +00:00
|
|
|
# USB network drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/net/if_aue.c optional aue
|
|
|
|
dev/usb/net/if_axe.c optional axe
|
2013-11-19 00:37:53 +00:00
|
|
|
dev/usb/net/if_axge.c optional axge
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/net/if_cdce.c optional cdce
|
|
|
|
dev/usb/net/if_cue.c optional cue
|
2010-10-13 21:36:42 +00:00
|
|
|
dev/usb/net/if_ipheth.c optional ipheth
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/net/if_kue.c optional kue
|
2011-02-17 07:39:53 +00:00
|
|
|
dev/usb/net/if_mos.c optional mos
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/net/if_rue.c optional rue
|
2012-08-15 04:03:55 +00:00
|
|
|
dev/usb/net/if_smsc.c optional smsc
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/net/if_udav.c optional udav
|
2015-12-01 05:12:13 +00:00
|
|
|
dev/usb/net/if_ure.c optional ure
|
2011-07-08 10:58:56 +00:00
|
|
|
dev/usb/net/if_usie.c optional usie
|
2014-02-06 08:47:14 +00:00
|
|
|
dev/usb/net/if_urndis.c optional urndis
|
2011-10-08 12:33:10 +00:00
|
|
|
dev/usb/net/ruephy.c optional rue
|
2015-11-24 08:34:48 +00:00
|
|
|
dev/usb/net/usb_ethernet.c optional uether | aue | axe | axge | cdce | \
|
|
|
|
cue | ipheth | kue | mos | rue | \
|
2015-12-01 05:12:13 +00:00
|
|
|
smsc | udav | ure | urndis
|
2010-01-13 03:16:31 +00:00
|
|
|
dev/usb/net/uhso.c optional uhso
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB WLAN drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2013-07-30 02:07:57 +00:00
|
|
|
dev/usb/wlan/if_rsu.c optional rsu
|
|
|
|
rsu-rtl8712fw.c optional rsu-rtl8712fw | rsufw \
|
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk rsu-rtl8712fw.fw:rsu-rtl8712fw:120 -mrsu-rtl8712fw -c${.TARGET}" \
|
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "rsu-rtl8712fw.c"
|
|
|
|
rsu-rtl8712fw.fwo optional rsu-rtl8712fw | rsufw \
|
|
|
|
dependency "rsu-rtl8712fw.fw" \
|
|
|
|
compile-with "${NORMAL_FWO}" \
|
|
|
|
no-implicit-rule \
|
|
|
|
clean "rsu-rtl8712fw.fwo"
|
|
|
|
rsu-rtl8712fw.fw optional rsu-rtl8712.fw | rsufw \
|
|
|
|
dependency "$S/contrib/dev/rsu/rsu-rtl8712fw.fw.uu" \
|
|
|
|
compile-with "${NORMAL_FW}" \
|
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "rsu-rtl8712fw.fw"
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/wlan/if_rum.c optional rum
|
2010-01-28 22:24:54 +00:00
|
|
|
dev/usb/wlan/if_run.c optional run
|
2011-01-11 21:46:29 +00:00
|
|
|
runfw.c optional runfw \
|
2013-06-21 18:16:54 +00:00
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk run.fw:runfw -mrunfw -c${.TARGET}" \
|
2011-01-11 21:46:29 +00:00
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "runfw.c"
|
|
|
|
runfw.fwo optional runfw \
|
2013-06-21 18:16:54 +00:00
|
|
|
dependency "run.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2011-01-11 21:46:29 +00:00
|
|
|
no-implicit-rule \
|
|
|
|
clean "runfw.fwo"
|
2013-06-21 18:16:54 +00:00
|
|
|
run.fw optional runfw \
|
2011-01-11 21:46:29 +00:00
|
|
|
dependency "$S/contrib/dev/run/rt2870.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2011-01-11 21:46:29 +00:00
|
|
|
no-obj no-implicit-rule \
|
2013-06-21 18:16:54 +00:00
|
|
|
clean "run.fw"
|
2009-05-01 17:16:33 +00:00
|
|
|
dev/usb/wlan/if_uath.c optional uath
|
2009-07-31 17:57:16 +00:00
|
|
|
dev/usb/wlan/if_upgt.c optional upgt
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/wlan/if_ural.c optional ural
|
2009-07-19 16:54:24 +00:00
|
|
|
dev/usb/wlan/if_urtw.c optional urtw
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/wlan/if_zyd.c optional zyd
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB serial and parallel port drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/serial/u3g.c optional u3g
|
|
|
|
dev/usb/serial/uark.c optional uark
|
|
|
|
dev/usb/serial/ubsa.c optional ubsa
|
|
|
|
dev/usb/serial/ubser.c optional ubser
|
|
|
|
dev/usb/serial/uchcom.c optional uchcom
|
|
|
|
dev/usb/serial/ucycom.c optional ucycom
|
|
|
|
dev/usb/serial/ufoma.c optional ufoma
|
|
|
|
dev/usb/serial/uftdi.c optional uftdi
|
|
|
|
dev/usb/serial/ugensa.c optional ugensa
|
|
|
|
dev/usb/serial/uipaq.c optional uipaq
|
|
|
|
dev/usb/serial/ulpt.c optional ulpt
|
2011-06-04 20:40:24 +00:00
|
|
|
dev/usb/serial/umcs.c optional umcs
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/serial/umct.c optional umct
|
|
|
|
dev/usb/serial/umodem.c optional umodem
|
|
|
|
dev/usb/serial/umoscom.c optional umoscom
|
|
|
|
dev/usb/serial/uplcom.c optional uplcom
|
|
|
|
dev/usb/serial/uslcom.c optional uslcom
|
|
|
|
dev/usb/serial/uvisor.c optional uvisor
|
|
|
|
dev/usb/serial/uvscom.c optional uvscom
|
2009-11-30 21:03:44 +00:00
|
|
|
dev/usb/serial/usb_serial.c optional ucom | u3g | uark | ubsa | ubser | \
|
|
|
|
uchcom | ucycom | ufoma | uftdi | \
|
2011-06-04 20:40:24 +00:00
|
|
|
ugensa | uipaq | umcs | umct | \
|
2011-07-08 10:58:56 +00:00
|
|
|
umodem | umoscom | uplcom | usie | \
|
|
|
|
uslcom | uvisor | uvscom
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB misc drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/misc/ufm.c optional ufm
|
|
|
|
dev/usb/misc/udbp.c optional udbp
|
2015-06-19 06:48:55 +00:00
|
|
|
dev/usb/misc/ugold.c optional ugold
|
2014-09-05 11:25:58 +00:00
|
|
|
dev/usb/misc/uled.c optional uled
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB input drivers
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-11-09 15:59:09 +00:00
|
|
|
dev/usb/input/atp.c optional atp
|
2010-05-25 21:20:56 +00:00
|
|
|
dev/usb/input/uep.c optional uep
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/input/uhid.c optional uhid
|
|
|
|
dev/usb/input/ukbd.c optional ukbd
|
|
|
|
dev/usb/input/ums.c optional ums
|
2014-01-29 10:42:01 +00:00
|
|
|
dev/usb/input/wsp.c optional wsp
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB quirks
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/quirk/usb_quirk.c optional usb
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB templates
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2011-06-23 07:54:03 +00:00
|
|
|
dev/usb/template/usb_template.c optional usb_template
|
|
|
|
dev/usb/template/usb_template_audio.c optional usb_template
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/template/usb_template_cdce.c optional usb_template
|
2011-06-23 07:54:03 +00:00
|
|
|
dev/usb/template/usb_template_kbd.c optional usb_template
|
|
|
|
dev/usb/template/usb_template_modem.c optional usb_template
|
|
|
|
dev/usb/template/usb_template_mouse.c optional usb_template
|
2009-02-23 18:34:56 +00:00
|
|
|
dev/usb/template/usb_template_msc.c optional usb_template
|
|
|
|
dev/usb/template/usb_template_mtp.c optional usb_template
|
2014-08-05 07:03:16 +00:00
|
|
|
dev/usb/template/usb_template_phone.c optional usb_template
|
2015-01-13 14:03:56 +00:00
|
|
|
dev/usb/template/usb_template_serialnet.c optional usb_template
|
2015-06-01 11:24:34 +00:00
|
|
|
dev/usb/template/usb_template_midi.c optional usb_template
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2015-02-15 12:02:17 +00:00
|
|
|
# USB video drivers
|
|
|
|
#
|
|
|
|
dev/usb/video/udl.c optional udl
|
|
|
|
#
|
2009-02-23 18:34:56 +00:00
|
|
|
# USB END
|
Bring in USB4BSD, Hans Petter Selasky rework of the USB stack
that includes significant features and SMP safety.
This commit includes a more or less complete rewrite of the *BSD USB
stack, including Host Controller and Device Controller drivers and
updating all existing USB drivers to use the new USB API:
1) A brief feature list:
- A new and mutex enabled USB API.
- Many USB drivers are now running Giant free.
- Linux USB kernel compatibility layer.
- New UGEN backend and libusb library, finally solves the "driver
unloading" problem. The new BSD licensed libusb20 library is fully
compatible with libusb-0.1.12 from sourceforge.
- New "usbconfig" utility, for easy configuration of USB.
- Full support for Split transactions, which means you can use your
full speed USB audio device on a high speed USB HUB.
- Full support for HS ISOC transactions, which makes writing drivers
for various HS webcams possible, for example.
- Full support for USB on embedded platforms, mostly cache flushing
and buffer invalidating stuff.
- Safer parsing of USB descriptors.
- Autodetect of annoying USB install disks.
- Support for USB device side mode, also called USB gadget mode,
using the same API like the USB host side. In other words the new
USB stack is symmetric with regard to host and device side.
- Support for USB transfers like I/O vectors, means more throughput
and less interrupts.
- ... see the FreeBSD quarterly status reports under "USB project"
2) To enable the driver in the default kernel build:
2.a) Remove all existing USB device options from your kernel config
file.
2.b) Add the following USB device options to your kernel configuration
file:
# USB core support
device usb2_core
# USB controller support
device usb2_controller
device usb2_controller_ehci
device usb2_controller_ohci
device usb2_controller_uhci
# USB mass storage support
device usb2_storage
device usb2_storage_mass
# USB ethernet support, requires miibus
device usb2_ethernet
device usb2_ethernet_aue
device usb2_ethernet_axe
device usb2_ethernet_cdce
device usb2_ethernet_cue
device usb2_ethernet_kue
device usb2_ethernet_rue
device usb2_ethernet_dav
# USB wireless LAN support
device usb2_wlan
device usb2_wlan_rum
device usb2_wlan_ral
device usb2_wlan_zyd
# USB serial device support
device usb2_serial
device usb2_serial_ark
device usb2_serial_bsa
device usb2_serial_bser
device usb2_serial_chcom
device usb2_serial_cycom
device usb2_serial_foma
device usb2_serial_ftdi
device usb2_serial_gensa
device usb2_serial_ipaq
device usb2_serial_lpt
device usb2_serial_mct
device usb2_serial_modem
device usb2_serial_moscom
device usb2_serial_plcom
device usb2_serial_visor
device usb2_serial_vscom
# USB bluetooth support
device usb2_bluetooth
device usb2_bluetooth_ng
# USB input device support
device usb2_input
device usb2_input_hid
device usb2_input_kbd
device usb2_input_ms
# USB sound and MIDI device support
device usb2_sound
2) To enable the driver at runtime:
2.a) Unload all existing USB modules. If USB is compiled into the
kernel then you might have to build a new kernel.
2.b) Load the "usb2_xxx.ko" modules under /boot/kernel having the same
base name like the kernel device option.
Submitted by: Hans Petter Selasky hselasky at c2i dot net
Reviewed by: imp, alfred
2008-11-04 02:31:03 +00:00
|
|
|
#
|
2015-02-15 11:37:40 +00:00
|
|
|
dev/videomode/videomode.c optional videomode
|
|
|
|
dev/videomode/edid.c optional videomode
|
|
|
|
dev/videomode/pickmode.c optional videomode
|
|
|
|
dev/videomode/vesagtf.c optional videomode
|
2005-02-24 16:56:36 +00:00
|
|
|
dev/utopia/idtphy.c optional utopia
|
|
|
|
dev/utopia/suni.c optional utopia
|
2003-06-13 12:08:09 +00:00
|
|
|
dev/utopia/utopia.c optional utopia
|
2004-09-10 20:57:46 +00:00
|
|
|
dev/vge/if_vge.c optional vge
|
2014-09-23 06:31:15 +00:00
|
|
|
dev/viapm/viapm.c optional viapm pci
|
2014-11-25 16:53:22 +00:00
|
|
|
dev/virtio/virtio.c optional virtio
|
|
|
|
dev/virtio/virtqueue.c optional virtio
|
|
|
|
dev/virtio/virtio_bus_if.m optional virtio
|
|
|
|
dev/virtio/virtio_if.m optional virtio
|
|
|
|
dev/virtio/pci/virtio_pci.c optional virtio_pci
|
|
|
|
dev/virtio/mmio/virtio_mmio.c optional virtio_mmio
|
|
|
|
dev/virtio/mmio/virtio_mmio_if.m optional virtio_mmio
|
|
|
|
dev/virtio/network/if_vtnet.c optional vtnet
|
|
|
|
dev/virtio/block/virtio_blk.c optional virtio_blk
|
|
|
|
dev/virtio/balloon/virtio_balloon.c optional virtio_balloon
|
|
|
|
dev/virtio/scsi/virtio_scsi.c optional virtio_scsi
|
|
|
|
dev/virtio/random/virtio_random.c optional virtio_random
|
|
|
|
dev/virtio/console/virtio_console.c optional virtio_console
|
2004-11-16 17:19:04 +00:00
|
|
|
dev/vkbd/vkbd.c optional vkbd
|
2008-03-11 03:50:57 +00:00
|
|
|
dev/vr/if_vr.c optional vr pci
|
2013-12-05 22:38:53 +00:00
|
|
|
dev/vt/colors/vt_termcolors.c optional vt
|
|
|
|
dev/vt/font/vt_font_default.c optional vt
|
|
|
|
dev/vt/font/vt_mouse_cursor.c optional vt
|
2014-03-28 12:50:39 +00:00
|
|
|
dev/vt/hw/efifb/efifb.c optional vt_efifb
|
2013-12-05 22:38:53 +00:00
|
|
|
dev/vt/hw/fb/vt_fb.c optional vt
|
2014-06-18 22:10:10 +00:00
|
|
|
dev/vt/hw/vga/vt_vga.c optional vt vt_vga
|
2013-12-08 22:49:12 +00:00
|
|
|
dev/vt/logo/logo_freebsd.c optional vt splash
|
2015-07-21 20:33:36 +00:00
|
|
|
dev/vt/logo/logo_beastie.c optional vt splash
|
2013-12-05 22:38:53 +00:00
|
|
|
dev/vt/vt_buf.c optional vt
|
|
|
|
dev/vt/vt_consolectl.c optional vt
|
|
|
|
dev/vt/vt_core.c optional vt
|
2015-07-21 20:33:36 +00:00
|
|
|
dev/vt/vt_cpulogos.c optional vt splash
|
2013-12-05 22:38:53 +00:00
|
|
|
dev/vt/vt_font.c optional vt
|
|
|
|
dev/vt/vt_sysmouse.c optional vt
|
2010-12-31 00:21:41 +00:00
|
|
|
dev/vte/if_vte.c optional vte pci
|
2000-11-16 15:16:41 +00:00
|
|
|
dev/vx/if_vx.c optional vx
|
2000-01-14 07:14:17 +00:00
|
|
|
dev/vx/if_vx_eisa.c optional vx eisa
|
|
|
|
dev/vx/if_vx_pci.c optional vx pci
|
2011-04-28 14:33:15 +00:00
|
|
|
dev/vxge/vxge.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-ifmsg.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-mrpcim.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxge-queue.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-ring.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-swapper.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-mgmt.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-srpcim.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-config.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-blockpool.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-doorbells.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-mgmtaux.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-device.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-mm.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-driver.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-virtualpath.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-channel.c optional vxge
|
|
|
|
dev/vxge/vxgehal/vxgehal-fifo.c optional vxge
|
2004-02-28 20:06:59 +00:00
|
|
|
dev/watchdog/watchdog.c standard
|
2008-08-14 21:26:29 +00:00
|
|
|
dev/wb/if_wb.c optional wb pci
|
2000-11-16 15:16:41 +00:00
|
|
|
dev/wds/wd7000.c optional wds isa
|
2001-08-23 23:58:49 +00:00
|
|
|
dev/wi/if_wi.c optional wi
|
2002-04-02 02:50:48 +00:00
|
|
|
dev/wi/if_wi_pccard.c optional wi pccard
|
|
|
|
dev/wi/if_wi_pci.c optional wi pci
|
2001-07-02 05:58:47 +00:00
|
|
|
dev/wl/if_wl.c optional wl isa
|
2011-05-01 18:42:56 +00:00
|
|
|
dev/wpi/if_wpi.c optional wpi pci
|
2008-04-25 20:42:48 +00:00
|
|
|
wpifw.c optional wpifw \
|
2010-12-19 11:37:44 +00:00
|
|
|
compile-with "${AWK} -f $S/tools/fw_stub.awk wpi.fw:wpifw:153229 -mwpi -c${.TARGET}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "wpifw.c"
|
|
|
|
wpifw.fwo optional wpifw \
|
|
|
|
dependency "wpi.fw" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FWO}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-implicit-rule \
|
2009-02-08 14:43:20 +00:00
|
|
|
clean "wpifw.fwo"
|
2008-04-25 20:42:48 +00:00
|
|
|
wpi.fw optional wpifw \
|
2010-12-19 11:37:44 +00:00
|
|
|
dependency "$S/contrib/dev/wpi/iwlwifi-3945-15.32.2.9.fw.uu" \
|
2012-08-31 20:54:30 +00:00
|
|
|
compile-with "${NORMAL_FW}" \
|
2008-04-25 20:42:48 +00:00
|
|
|
no-obj no-implicit-rule \
|
|
|
|
clean "wpi.fw"
|
2002-02-20 14:33:42 +00:00
|
|
|
dev/xe/if_xe.c optional xe
|
|
|
|
dev/xe/if_xe_pccard.c optional xe pccard
|
2015-04-30 15:48:48 +00:00
|
|
|
dev/xen/balloon/balloon.c optional xenhvm
|
|
|
|
dev/xen/blkfront/blkfront.c optional xenhvm
|
|
|
|
dev/xen/blkback/blkback.c optional xenhvm
|
2015-10-08 16:39:43 +00:00
|
|
|
dev/xen/console/xen_console.c optional xenhvm
|
2015-04-30 15:48:48 +00:00
|
|
|
dev/xen/control/control.c optional xenhvm
|
|
|
|
dev/xen/grant_table/grant_table.c optional xenhvm
|
|
|
|
dev/xen/netback/netback.c optional xenhvm
|
|
|
|
dev/xen/netfront/netfront.c optional xenhvm
|
2012-10-24 16:37:53 +00:00
|
|
|
dev/xen/xenpci/xenpci.c optional xenpci
|
2015-04-30 15:48:48 +00:00
|
|
|
dev/xen/timer/timer.c optional xenhvm
|
|
|
|
dev/xen/pvcpu/pvcpu.c optional xenhvm
|
|
|
|
dev/xen/xenstore/xenstore.c optional xenhvm
|
|
|
|
dev/xen/xenstore/xenstore_dev.c optional xenhvm
|
|
|
|
dev/xen/xenstore/xenstored_dev.c optional xenhvm
|
|
|
|
dev/xen/evtchn/evtchn_dev.c optional xenhvm
|
|
|
|
dev/xen/privcmd/privcmd.c optional xenhvm
|
|
|
|
dev/xen/debug/debug.c optional xenhvm
|
2008-08-10 09:45:52 +00:00
|
|
|
dev/xl/if_xl.c optional xl pci
|
2011-10-08 12:33:10 +00:00
|
|
|
dev/xl/xlphy.c optional xl pci
|
2014-08-17 09:44:42 +00:00
|
|
|
fs/autofs/autofs.c optional autofs
|
|
|
|
fs/autofs/autofs_vfsops.c optional autofs
|
|
|
|
fs/autofs/autofs_vnops.c optional autofs
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/deadfs/dead_vnops.c standard
|
2001-05-13 20:52:40 +00:00
|
|
|
fs/devfs/devfs_devs.c standard
|
2010-09-27 17:47:09 +00:00
|
|
|
fs/devfs/devfs_dir.c standard
|
2002-07-17 01:46:48 +00:00
|
|
|
fs/devfs/devfs_rule.c standard
|
2001-05-23 09:42:29 +00:00
|
|
|
fs/devfs/devfs_vfsops.c standard
|
|
|
|
fs/devfs/devfs_vnops.c standard
|
|
|
|
fs/fdescfs/fdesc_vfsops.c optional fdescfs
|
|
|
|
fs/fdescfs/fdesc_vnops.c optional fdescfs
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/fifofs/fifo_vnops.c standard
|
2014-05-23 08:46:28 +00:00
|
|
|
fs/cuse/cuse.c optional cuse
|
2012-10-13 23:54:26 +00:00
|
|
|
fs/fuse/fuse_device.c optional fuse
|
|
|
|
fs/fuse/fuse_file.c optional fuse
|
|
|
|
fs/fuse/fuse_internal.c optional fuse
|
|
|
|
fs/fuse/fuse_io.c optional fuse
|
|
|
|
fs/fuse/fuse_ipc.c optional fuse
|
|
|
|
fs/fuse/fuse_main.c optional fuse
|
|
|
|
fs/fuse/fuse_node.c optional fuse
|
|
|
|
fs/fuse/fuse_vfsops.c optional fuse
|
|
|
|
fs/fuse/fuse_vnops.c optional fuse
|
2001-05-25 08:14:14 +00:00
|
|
|
fs/msdosfs/msdosfs_conv.c optional msdosfs
|
|
|
|
fs/msdosfs/msdosfs_denode.c optional msdosfs
|
|
|
|
fs/msdosfs/msdosfs_fat.c optional msdosfs
|
2007-01-30 03:11:45 +00:00
|
|
|
fs/msdosfs/msdosfs_fileno.c optional msdosfs
|
2005-01-10 05:11:40 +00:00
|
|
|
fs/msdosfs/msdosfs_iconv.c optional msdosfs_iconv
|
2001-05-25 08:14:14 +00:00
|
|
|
fs/msdosfs/msdosfs_lookup.c optional msdosfs
|
|
|
|
fs/msdosfs/msdosfs_vfsops.c optional msdosfs
|
|
|
|
fs/msdosfs/msdosfs_vnops.c optional msdosfs
|
2012-05-17 10:11:18 +00:00
|
|
|
fs/nandfs/bmap.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_alloc.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_bmap.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_buffer.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_cleaner.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_cpfile.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_dat.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_dir.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_ifile.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_segment.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_subr.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_sufile.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_vfsops.c optional nandfs
|
|
|
|
fs/nandfs/nandfs_vnops.c optional nandfs
|
2009-05-28 19:45:11 +00:00
|
|
|
fs/nfs/nfs_commonkrpc.c optional nfscl | nfsd
|
|
|
|
fs/nfs/nfs_commonsubs.c optional nfscl | nfsd
|
|
|
|
fs/nfs/nfs_commonport.c optional nfscl | nfsd
|
|
|
|
fs/nfs/nfs_commonacl.c optional nfscl | nfsd
|
|
|
|
fs/nfsclient/nfs_clcomsubs.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clsubs.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clstate.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clkrpc.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clrpcops.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clvnops.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clnode.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clvfsops.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clport.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clbio.c optional nfscl
|
|
|
|
fs/nfsclient/nfs_clnfsiod.c optional nfscl
|
Revamp the old NFS server's File Handle Affinity (FHA) code so that
it will work with either the old or new server.
The FHA code keeps a cache of currently active file handles for
NFSv2 and v3 requests, so that read and write requests for the same
file are directed to the same group of threads (reads) or thread
(writes). It does not currently work for NFSv4 requests. They are
more complex, and will take more work to support.
This improves read-ahead performance, especially with ZFS, if the
FHA tuning parameters are configured appropriately. Without the
FHA code, concurrent reads that are part of a sequential read from
a file will be directed to separate NFS threads. This has the
effect of confusing the ZFS zfetch (prefetch) code and makes
sequential reads significantly slower with clients like Linux that
do a lot of prefetching.
The FHA code has also been updated to direct write requests to nearby
file offsets to the same thread in the same way it batches reads,
and the FHA code will now also send writes to multiple threads when
needed.
This improves sequential write performance in ZFS, because writes
to a file are now more ordered. Since NFS writes (generally
less than 64K) are smaller than the typical ZFS record size
(usually 128K), out of order NFS writes to the same block can
trigger a read in ZFS. Sending them down the same thread increases
the odds of their being in order.
In order for multiple write threads per file in the FHA code to be
useful, writes in the NFS server have been changed to use a LK_SHARED
vnode lock, and upgrade that to LK_EXCLUSIVE if the filesystem
doesn't allow multiple writers to a file at once. ZFS is currently
the only filesystem that allows multiple writers to a file, because
it has internal file range locking. This change does not affect the
NFSv4 code.
This improves random write performance to a single file in ZFS, since
we can now have multiple writers inside ZFS at one time.
I have changed the default tuning parameters to a 22 bit (4MB)
window size (from 256K) and unlimited commands per thread as a
result of my benchmarking with ZFS.
The FHA code has been updated to allow configuring the tuning
parameters from loader tunable variables in addition to sysctl
variables. The read offset window calculation has been slightly
modified as well. Instead of having separate bins, each file
handle has a rolling window of bin_shift size. This minimizes
glitches in throughput when shifting from one bin to another.
sys/conf/files:
Add nfs_fha_new.c and nfs_fha_old.c. Compile nfs_fha.c
when either the old or the new NFS server is built.
sys/fs/nfs/nfsport.h,
sys/fs/nfs/nfs_commonport.c:
Bring in changes from Rick Macklem to newnfs_realign that
allow it to operate in blocking (M_WAITOK) or non-blocking
(M_NOWAIT) mode.
sys/fs/nfs/nfs_commonsubs.c,
sys/fs/nfs/nfs_var.h:
Bring in a change from Rick Macklem to allow telling
nfsm_dissect() whether or not to wait for mallocs.
sys/fs/nfs/nfsm_subs.h:
Bring in changes from Rick Macklem to create a new
nfsm_dissect_nonblock() inline function and
NFSM_DISSECT_NONBLOCK() macro.
sys/fs/nfs/nfs_commonkrpc.c,
sys/fs/nfsclient/nfs_clkrpc.c:
Add the malloc wait flag to a newnfs_realign() call.
sys/fs/nfsserver/nfs_nfsdkrpc.c:
Setup the new NFS server's RPC thread pool so that it will
call the FHA code.
Add the malloc flag argument to newnfs_realign().
Unstaticize newnfs_nfsv3_procid[] so that we can use it in
the FHA code.
sys/fs/nfsserver/nfs_nfsdsocket.c:
In nfsrvd_dorpc(), add NFSPROC_WRITE to the list of RPC types
that use the LK_SHARED lock type.
sys/fs/nfsserver/nfs_nfsdport.c:
In nfsd_fhtovp(), if we're starting a write, check to see
whether the underlying filesystem supports shared writes.
If not, upgrade the lock type from LK_SHARED to LK_EXCLUSIVE.
sys/nfsserver/nfs_fha.c:
Remove all code that is specific to the NFS server
implementation. Anything that is server-specific is now
accessed through a callback supplied by that server's FHA
shim in the new softc.
There are now separate sysctls and tunables for the FHA
implementations for the old and new NFS servers. The new
NFS server has its tunables under vfs.nfsd.fha, the old
NFS server's tunables are under vfs.nfsrv.fha as before.
In fha_extract_info(), use callouts for all server-specific
code. Getting file handles and offsets is now done in the
individual server's shim module.
In fha_hash_entry_choose_thread(), change the way we decide
whether two reads are in proximity to each other.
Previously, the calculation was a simple shift operation to
see whether the offsets were in the same power of 2 bucket.
The issue was that there would be a bucket (and therefore
thread) transition, even if the reads were in close
proximity. When there is a thread transition, reads wind
up going somewhat out of order, and ZFS gets confused.
The new calculation simply tries to see whether the offsets
are within 1 << bin_shift of each other. If they are, the
reads will be sent to the same thread.
The effect of this change is that for sequential reads, if
the client doesn't exceed the max_reqs_per_nfsd parameter
and the bin_shift is set to a reasonable value (22, or
4MB works well in my tests), the reads in any sequential
stream will largely be confined to a single thread.
Change fha_assign() so that it takes a softc argument. It
is now called from the individual server's shim code, which
will pass in the softc.
Change fhe_stats_sysctl() so that it takes a softc
parameter. It is now called from the individual server's
shim code. Add the current offset to the list of things
printed out about each active thread.
Change the num_reads and num_writes counters in the
fha_hash_entry structure to 32-bit values, and rename them
num_rw and num_exclusive, respectively, to reflect their
changed usage.
Add an enable sysctl and tunable that allows the user to
disable the FHA code (when vfs.XXX.fha.enable = 0). This
is useful for before/after performance comparisons.
nfs_fha.h:
Move most structure definitions out of nfs_fha.c and into
the header file, so that the individual server shims can
see them.
Change the default bin_shift to 22 (4MB) instead of 18
(256K). Allow unlimited commands per thread.
sys/nfsserver/nfs_fha_old.c,
sys/nfsserver/nfs_fha_old.h,
sys/fs/nfsserver/nfs_fha_new.c,
sys/fs/nfsserver/nfs_fha_new.h:
Add shims for the old and new NFS servers to interface with
the FHA code, and callbacks for the
The shims contain all of the code and definitions that are
specific to the NFS servers.
They setup the server-specific callbacks and set the server
name for the sysctl and loader tunable variables.
sys/nfsserver/nfs_srvkrpc.c:
Configure the RPC code to call fhaold_assign() instead of
fha_assign().
sys/modules/nfsd/Makefile:
Add nfs_fha.c and nfs_fha_new.c.
sys/modules/nfsserver/Makefile:
Add nfs_fha_old.c.
Reviewed by: rmacklem
Sponsored by: Spectra Logic
MFC after: 2 weeks
2013-04-17 21:00:22 +00:00
|
|
|
fs/nfsserver/nfs_fha_new.c optional nfsd inet
|
2009-06-10 21:31:57 +00:00
|
|
|
fs/nfsserver/nfs_nfsdsocket.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdsubs.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdstate.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdkrpc.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdserv.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdport.c optional nfsd inet
|
|
|
|
fs/nfsserver/nfs_nfsdcache.c optional nfsd inet
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/nullfs/null_subr.c optional nullfs
|
|
|
|
fs/nullfs/null_vfsops.c optional nullfs
|
|
|
|
fs/nullfs/null_vnops.c optional nullfs
|
|
|
|
fs/procfs/procfs.c optional procfs
|
|
|
|
fs/procfs/procfs_ctl.c optional procfs
|
Dissociate ptrace from procfs.
Until now, the ptrace syscall was implemented as a wrapper that called
various functions in procfs depending on which ptrace operation was
requested. Most of these functions were themselves wrappers around
procfs_{read,write}_{,db,fp}regs(), with only some extra error checks,
which weren't necessary in the ptrace case anyway.
This commit moves procfs_rwmem() from procfs_mem.c into sys_process.c
(renaming it to proc_rwmem() in the process), and implements ptrace()
directly in terms of procfs_{read,write}_{,db,fp}regs() instead of
having it fake up a struct uio and then call procfs_do{,db,fp}regs().
It also moves the prototypes for procfs_{read,write}_{,db,fp}regs()
and proc_rwmem() from proc.h to ptrace.h, and marks all procfs files
except procfs_machdep.c as "optional procfs" instead of "standard".
2001-10-07 20:08:42 +00:00
|
|
|
fs/procfs/procfs_dbregs.c optional procfs
|
|
|
|
fs/procfs/procfs_fpregs.c optional procfs
|
2001-12-04 01:35:06 +00:00
|
|
|
fs/procfs/procfs_ioctl.c optional procfs
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/procfs/procfs_map.c optional procfs
|
|
|
|
fs/procfs/procfs_mem.c optional procfs
|
|
|
|
fs/procfs/procfs_note.c optional procfs
|
2009-09-23 12:08:08 +00:00
|
|
|
fs/procfs/procfs_osrel.c optional procfs
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/procfs/procfs_regs.c optional procfs
|
2001-05-23 09:42:29 +00:00
|
|
|
fs/procfs/procfs_rlimit.c optional procfs
|
|
|
|
fs/procfs/procfs_status.c optional procfs
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/procfs/procfs_type.c optional procfs
|
2001-06-11 11:02:10 +00:00
|
|
|
fs/pseudofs/pseudofs.c optional pseudofs
|
|
|
|
fs/pseudofs/pseudofs_fileno.c optional pseudofs
|
|
|
|
fs/pseudofs/pseudofs_vncache.c optional pseudofs
|
|
|
|
fs/pseudofs/pseudofs_vnops.c optional pseudofs
|
2013-06-28 21:00:08 +00:00
|
|
|
fs/smbfs/smbfs_io.c optional smbfs
|
|
|
|
fs/smbfs/smbfs_node.c optional smbfs
|
|
|
|
fs/smbfs/smbfs_smb.c optional smbfs
|
|
|
|
fs/smbfs/smbfs_subr.c optional smbfs
|
|
|
|
fs/smbfs/smbfs_vfsops.c optional smbfs
|
|
|
|
fs/smbfs/smbfs_vnops.c optional smbfs
|
2005-01-10 05:11:40 +00:00
|
|
|
fs/udf/osta.c optional udf
|
2005-01-04 06:07:25 +00:00
|
|
|
fs/udf/udf_iconv.c optional udf_iconv
|
|
|
|
fs/udf/udf_vfsops.c optional udf
|
|
|
|
fs/udf/udf_vnops.c optional udf
|
|
|
|
fs/unionfs/union_subr.c optional unionfs
|
2001-05-23 09:42:29 +00:00
|
|
|
fs/unionfs/union_vfsops.c optional unionfs
|
|
|
|
fs/unionfs/union_vnops.c optional unionfs
|
2007-06-16 01:56:05 +00:00
|
|
|
fs/tmpfs/tmpfs_vnops.c optional tmpfs
|
|
|
|
fs/tmpfs/tmpfs_fifoops.c optional tmpfs
|
|
|
|
fs/tmpfs/tmpfs_vfsops.c optional tmpfs
|
|
|
|
fs/tmpfs/tmpfs_subr.c optional tmpfs
|
2006-03-23 23:06:14 +00:00
|
|
|
gdb/gdb_cons.c optional gdb
|
2005-01-04 06:07:25 +00:00
|
|
|
gdb/gdb_main.c optional gdb
|
|
|
|
gdb/gdb_packet.c optional gdb
|
2002-10-19 17:02:17 +00:00
|
|
|
geom/bde/g_bde.c optional geom_bde
|
|
|
|
geom/bde/g_bde_crypt.c optional geom_bde
|
|
|
|
geom/bde/g_bde_lock.c optional geom_bde
|
|
|
|
geom/bde/g_bde_work.c optional geom_bde
|
2006-10-06 10:43:42 +00:00
|
|
|
geom/cache/g_cache.c optional geom_cache
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/concat/g_concat.c optional geom_concat
|
2005-07-27 21:47:55 +00:00
|
|
|
geom/eli/g_eli.c optional geom_eli
|
|
|
|
geom/eli/g_eli_crypto.c optional geom_eli
|
|
|
|
geom/eli/g_eli_ctl.c optional geom_eli
|
2016-01-07 05:47:34 +00:00
|
|
|
geom/eli/g_eli_hmac.c optional geom_eli
|
2006-06-05 21:42:26 +00:00
|
|
|
geom/eli/g_eli_integrity.c optional geom_eli
|
2005-07-27 21:47:55 +00:00
|
|
|
geom/eli/g_eli_key.c optional geom_eli
|
2011-04-21 21:15:11 +00:00
|
|
|
geom/eli/g_eli_key_cache.c optional geom_eli
|
2006-06-05 21:42:26 +00:00
|
|
|
geom/eli/g_eli_privacy.c optional geom_eli
|
2005-07-27 21:47:55 +00:00
|
|
|
geom/eli/pkcs5v2.c optional geom_eli
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/gate/g_gate.c optional geom_gate
|
|
|
|
geom/geom_aes.c optional geom_aes
|
|
|
|
geom/geom_bsd.c optional geom_bsd
|
2014-11-18 17:06:40 +00:00
|
|
|
geom/geom_bsd_enc.c optional geom_bsd | geom_part_bsd
|
2005-11-27 21:41:58 +00:00
|
|
|
geom/geom_ccd.c optional ccd | geom_ccd
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_ctl.c standard
|
|
|
|
geom/geom_dev.c standard
|
|
|
|
geom/geom_disk.c standard
|
|
|
|
geom/geom_dump.c standard
|
|
|
|
geom/geom_event.c standard
|
|
|
|
geom/geom_fox.c optional geom_fox
|
2016-01-23 05:27:55 +00:00
|
|
|
geom/geom_flashmap.c optional fdt cfi | fdt nand | fdt mx25l
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_io.c standard
|
|
|
|
geom/geom_kern.c standard
|
2011-04-12 08:10:25 +00:00
|
|
|
geom/geom_map.c optional geom_map
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_mbr.c optional geom_mbr
|
2003-04-12 08:34:40 +00:00
|
|
|
geom/geom_mbr_enc.c optional geom_mbr
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_pc98.c optional geom_pc98
|
|
|
|
geom/geom_pc98_enc.c optional geom_pc98
|
2009-03-09 23:18:36 +00:00
|
|
|
geom/geom_redboot.c optional geom_redboot
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_slice.c standard
|
|
|
|
geom/geom_subr.c standard
|
|
|
|
geom/geom_sunlabel.c optional geom_sunlabel
|
2003-04-21 19:54:11 +00:00
|
|
|
geom/geom_sunlabel_enc.c optional geom_sunlabel
|
2004-10-29 09:56:56 +00:00
|
|
|
geom/geom_vfs.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
geom/geom_vol_ffs.c optional geom_vol
|
2006-10-31 22:22:30 +00:00
|
|
|
geom/journal/g_journal.c optional geom_journal
|
|
|
|
geom/journal/g_journal_ufs.c optional geom_journal
|
2014-04-06 02:44:37 +00:00
|
|
|
geom/label/g_label.c optional geom_label | geom_label_gpt
|
2005-08-12 00:27:45 +00:00
|
|
|
geom/label/g_label_ext2fs.c optional geom_label
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/label/g_label_iso9660.c optional geom_label
|
|
|
|
geom/label/g_label_msdosfs.c optional geom_label
|
2012-10-18 22:18:11 +00:00
|
|
|
geom/label/g_label_ntfs.c optional geom_label
|
2005-08-12 00:27:45 +00:00
|
|
|
geom/label/g_label_reiserfs.c optional geom_label
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/label/g_label_ufs.c optional geom_label
|
2014-04-06 02:44:37 +00:00
|
|
|
geom/label/g_label_gpt.c optional geom_label | geom_label_gpt
|
2013-04-15 16:09:24 +00:00
|
|
|
geom/label/g_label_disk_ident.c optional geom_label
|
2008-02-20 07:50:13 +00:00
|
|
|
geom/linux_lvm/g_linux_lvm.c optional geom_linux_lvm
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/mirror/g_mirror.c optional geom_mirror
|
|
|
|
geom/mirror/g_mirror_ctl.c optional geom_mirror
|
2010-01-16 09:52:49 +00:00
|
|
|
geom/mountver/g_mountver.c optional geom_mountver
|
2007-02-27 04:01:58 +00:00
|
|
|
geom/multipath/g_multipath.c optional geom_multipath
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/nop/g_nop.c optional geom_nop
|
2007-02-07 18:55:31 +00:00
|
|
|
geom/part/g_part.c standard
|
|
|
|
geom/part/g_part_if.m standard
|
|
|
|
geom/part/g_part_apm.c optional geom_part_apm
|
2007-12-06 02:32:42 +00:00
|
|
|
geom/part/g_part_bsd.c optional geom_part_bsd
|
2014-06-11 10:48:11 +00:00
|
|
|
geom/part/g_part_bsd64.c optional geom_part_bsd64
|
2009-02-15 03:50:27 +00:00
|
|
|
geom/part/g_part_ebr.c optional geom_part_ebr
|
2007-02-07 18:55:31 +00:00
|
|
|
geom/part/g_part_gpt.c optional geom_part_gpt
|
2012-03-19 13:16:46 +00:00
|
|
|
geom/part/g_part_ldm.c optional geom_part_ldm
|
2007-06-13 04:27:36 +00:00
|
|
|
geom/part/g_part_mbr.c optional geom_part_mbr
|
2008-03-28 17:58:55 +00:00
|
|
|
geom/part/g_part_pc98.c optional geom_part_pc98
|
2008-03-02 00:52:49 +00:00
|
|
|
geom/part/g_part_vtoc8.c optional geom_part_vtoc8
|
MFgraid/head:
Add new RAID GEOM class, that is going to replace ataraid(4) in supporting
various BIOS-based software RAIDs. Unlike ataraid(4) this implementation
does not depend on legacy ata(4) subsystem and can be used with any disk
drivers, including new CAM-based ones (ahci(4), siis(4), mvs(4), ata(4)
with `options ATA_CAM`). To make code more readable and extensible, this
implementation follows modular design, including core part and two sets
of modules, implementing support for different metadata formats and RAID
levels.
Support for such popular metadata formats is now implemented:
Intel, JMicron, NVIDIA, Promise (also used by AMD/ATI) and SiliconImage.
Such RAID levels are now supported:
RAID0, RAID1, RAID1E, RAID10, SINGLE, CONCAT.
For any all of these RAID levels and metadata formats this class supports
full cycle of volume operations: reading, writing, creation, deletion,
disk removal and insertion, rebuilding, dirty shutdown detection
and resynchronization, bad sector recovery, faulty disks tracking,
hot-spare disks. For Intel and Promise formats there is support multiple
volumes per disk set.
Look graid(8) manual page for additional details.
Co-authored by: imp
Sponsored by: Cisco Systems, Inc. and iXsystems, Inc.
2011-03-24 21:31:32 +00:00
|
|
|
geom/raid/g_raid.c optional geom_raid
|
|
|
|
geom/raid/g_raid_ctl.c optional geom_raid
|
|
|
|
geom/raid/g_raid_md_if.m optional geom_raid
|
|
|
|
geom/raid/g_raid_tr_if.m optional geom_raid
|
2012-04-30 17:53:02 +00:00
|
|
|
geom/raid/md_ddf.c optional geom_raid
|
MFgraid/head:
Add new RAID GEOM class, that is going to replace ataraid(4) in supporting
various BIOS-based software RAIDs. Unlike ataraid(4) this implementation
does not depend on legacy ata(4) subsystem and can be used with any disk
drivers, including new CAM-based ones (ahci(4), siis(4), mvs(4), ata(4)
with `options ATA_CAM`). To make code more readable and extensible, this
implementation follows modular design, including core part and two sets
of modules, implementing support for different metadata formats and RAID
levels.
Support for such popular metadata formats is now implemented:
Intel, JMicron, NVIDIA, Promise (also used by AMD/ATI) and SiliconImage.
Such RAID levels are now supported:
RAID0, RAID1, RAID1E, RAID10, SINGLE, CONCAT.
For any all of these RAID levels and metadata formats this class supports
full cycle of volume operations: reading, writing, creation, deletion,
disk removal and insertion, rebuilding, dirty shutdown detection
and resynchronization, bad sector recovery, faulty disks tracking,
hot-spare disks. For Intel and Promise formats there is support multiple
volumes per disk set.
Look graid(8) manual page for additional details.
Co-authored by: imp
Sponsored by: Cisco Systems, Inc. and iXsystems, Inc.
2011-03-24 21:31:32 +00:00
|
|
|
geom/raid/md_intel.c optional geom_raid
|
|
|
|
geom/raid/md_jmicron.c optional geom_raid
|
|
|
|
geom/raid/md_nvidia.c optional geom_raid
|
|
|
|
geom/raid/md_promise.c optional geom_raid
|
|
|
|
geom/raid/md_sii.c optional geom_raid
|
|
|
|
geom/raid/tr_concat.c optional geom_raid
|
|
|
|
geom/raid/tr_raid0.c optional geom_raid
|
|
|
|
geom/raid/tr_raid1.c optional geom_raid
|
|
|
|
geom/raid/tr_raid1e.c optional geom_raid
|
2012-04-19 12:30:12 +00:00
|
|
|
geom/raid/tr_raid5.c optional geom_raid
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/raid3/g_raid3.c optional geom_raid3
|
|
|
|
geom/raid3/g_raid3_ctl.c optional geom_raid3
|
2005-01-11 18:18:40 +00:00
|
|
|
geom/shsec/g_shsec.c optional geom_shsec
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/stripe/g_stripe.c optional geom_stripe
|
2012-01-04 23:26:22 +00:00
|
|
|
contrib/xz-embedded/freebsd/xz_malloc.c \
|
2016-02-24 00:39:36 +00:00
|
|
|
optional xz_embedded | geom_uzip \
|
2012-01-04 23:26:22 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/xz-embedded/freebsd/ -I$S/contrib/xz-embedded/linux/lib/xz/ -I$S/contrib/xz-embedded/linux/include/linux/"
|
|
|
|
contrib/xz-embedded/linux/lib/xz/xz_crc32.c \
|
2016-02-24 00:39:36 +00:00
|
|
|
optional xz_embedded | geom_uzip \
|
2012-01-04 23:26:22 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/xz-embedded/freebsd/ -I$S/contrib/xz-embedded/linux/lib/xz/ -I$S/contrib/xz-embedded/linux/include/linux/"
|
|
|
|
contrib/xz-embedded/linux/lib/xz/xz_dec_bcj.c \
|
2016-02-24 00:39:36 +00:00
|
|
|
optional xz_embedded | geom_uzip \
|
2012-01-04 23:26:22 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/xz-embedded/freebsd/ -I$S/contrib/xz-embedded/linux/lib/xz/ -I$S/contrib/xz-embedded/linux/include/linux/"
|
|
|
|
contrib/xz-embedded/linux/lib/xz/xz_dec_lzma2.c \
|
2016-02-24 00:39:36 +00:00
|
|
|
optional xz_embedded | geom_uzip \
|
2012-01-04 23:26:22 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/xz-embedded/freebsd/ -I$S/contrib/xz-embedded/linux/lib/xz/ -I$S/contrib/xz-embedded/linux/include/linux/"
|
|
|
|
contrib/xz-embedded/linux/lib/xz/xz_dec_stream.c \
|
2016-02-24 00:39:36 +00:00
|
|
|
optional xz_embedded | geom_uzip \
|
2012-01-04 23:26:22 +00:00
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/xz-embedded/freebsd/ -I$S/contrib/xz-embedded/linux/lib/xz/ -I$S/contrib/xz-embedded/linux/include/linux/"
|
2005-01-10 05:11:40 +00:00
|
|
|
geom/uzip/g_uzip.c optional geom_uzip
|
Improve mkuzip(8) and geom_uzip(4), merge in LZMA support from mkulzma(8)
and geom_uncompress(4):
1. mkuzip(8):
- Proper support for eliminating all-zero blocks when compressing an
image. This feature is already supported by the geom_uzip(4) module
and CLOOP format in general, so it's just a matter of making mkuzip(8)
match. It should be noted, however that this feature while it sounds
great, results in very slight improvement in the overall compression
ratio, since compressing default 16k all-zero block produces only 39
bytes compressed output block, which is 99.8% compression ratio. With
typical average compression ratio of amd64 binaries and data being
around 60-70% the difference between 99.8% and 100.0% is not that
great further diluted by the ratio of number of zero blocks in the
uncompressed image to the overall number of blocks being less than
0.5 (typically). However, this may be important from performance
standpoint, so that kernel are not spinning its wheels decompressing
those empty blocks every time this zero region is read. It could also
be important when you create huge image mostly filled with zero
blocks for testing purposes.
- New feature allowing to de-duplicate output image. It turns out that
if you twist CLOOP format a bit you can do that as well. And unlike
zero-blocks elimination, this gives a noticeable improvement in the
overall compression ratio, reducing output image by something like
3-4% on my test UFS2 3GB image consisting of full FreeBSD base system
plus some of the packages (openjdk, apache etc), about 2.3GB worth of
file data (800+MB compressed). The only caveat is that images created
with this feature "on" would not work on older versions of FeeBSDxi
kernel, hence it's turned off by default.
- provide options to control both features and document them in manual
page.
- merge in all relevant LZMA compression support from the mkulzma(8),
add new option to select between both.
- switch license from ad-hoc beerware into standard 2-clause BSD.
2. geom_uzip(4):
- implement support for de-duplicated images;
- optimize some code paths to handle "all-zero" blocks without reading
any compressed data;
- beef up manual page to explain that geom_uzip(4) is not limited only
to md(4) images. The compressed data can be written to the block
device and accessed directly via magic of GEOM(4) and devfs(4),
including to mount root fs from a compressed drive.
- convert debug log code from being compiled in conditionally into
being present all the time and provide two sysctls to turn it on or
off. Due to intended use of the module, it can be used in
environments where there may not be a luxury to put new kernel with
debug code enabled. Having those options handy allows debug issues
without as much problem by just having access to serial console or
network shell access to a box/appliance. The resulting additional
CPU cycles are just few int comparisons and branches, and those are
minuscule when compared to data decompression which is the main
feature of the module.
- hopefully improve robustness and resiliency of the geom_uzip(4) by
performing some of the data validation / range checking on the TOC
entries and rejecting to attach to an image if those checks fail.
- merge in all relevant LZMA decompression support from the
geom_uncompress(4), enable automatically when appropriate format is
indicated in the header.
- move compilation work into its own worker thread so that it does not
clog g_up. This allows multiple instances work in parallel utilizing
smp cores.
- document new knobs in the manual page.
Reviewed by: adrian
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D5333
2016-02-23 23:59:08 +00:00
|
|
|
geom/uzip/g_uzip_lzma.c optional geom_uzip
|
|
|
|
geom/uzip/g_uzip_wrkthr.c optional geom_uzip
|
|
|
|
geom/uzip/g_uzip_zlib.c optional geom_uzip
|
2014-05-02 23:23:18 +00:00
|
|
|
geom/vinum/geom_vinum.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_create.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_drive.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_plex.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_volume.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_subr.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_raid5.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_share.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_list.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_rm.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_init.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_state.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_rename.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_move.c optional geom_vinum
|
|
|
|
geom/vinum/geom_vinum_events.c optional geom_vinum
|
2007-09-23 07:34:23 +00:00
|
|
|
geom/virstor/binstream.c optional geom_virstor
|
|
|
|
geom/virstor/g_virstor.c optional geom_virstor
|
|
|
|
geom/virstor/g_virstor_md.c optional geom_virstor
|
2005-07-25 10:49:05 +00:00
|
|
|
geom/zero/g_zero.c optional geom_zero
|
2010-01-14 14:30:54 +00:00
|
|
|
fs/ext2fs/ext2_alloc.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_balloc.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_bmap.c optional ext2fs
|
2013-08-12 21:34:48 +00:00
|
|
|
fs/ext2fs/ext2_extents.c optional ext2fs
|
2010-01-14 14:30:54 +00:00
|
|
|
fs/ext2fs/ext2_inode.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_inode_cnv.c optional ext2fs
|
2016-01-21 14:50:28 +00:00
|
|
|
fs/ext2fs/ext2_hash.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_htree.c optional ext2fs
|
2010-01-14 14:30:54 +00:00
|
|
|
fs/ext2fs/ext2_lookup.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_subr.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_vfsops.c optional ext2fs
|
|
|
|
fs/ext2fs/ext2_vnops.c optional ext2fs
|
2005-06-21 10:17:55 +00:00
|
|
|
gnu/fs/reiserfs/reiserfs_hashes.c optional reiserfs \
|
|
|
|
warning "kernel contains GPL contaminated ReiserFS filesystem"
|
|
|
|
gnu/fs/reiserfs/reiserfs_inode.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_item_ops.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_namei.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_prints.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_stree.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_vfsops.c optional reiserfs
|
|
|
|
gnu/fs/reiserfs/reiserfs_vnops.c optional reiserfs
|
2000-10-09 13:41:07 +00:00
|
|
|
#
|
2005-01-04 06:07:25 +00:00
|
|
|
isa/isa_if.m standard
|
|
|
|
isa/isa_common.c optional isa
|
|
|
|
isa/isahint.c optional isa
|
2006-06-12 21:07:13 +00:00
|
|
|
isa/pnp.c optional isa isapnp
|
|
|
|
isa/pnpparse.c optional isa isapnp
|
2007-02-11 14:01:32 +00:00
|
|
|
fs/cd9660/cd9660_bmap.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_lookup.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_node.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_rrip.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_util.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_vfsops.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_vnops.c optional cd9660
|
|
|
|
fs/cd9660/cd9660_iconv.c optional cd9660_iconv
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/bus_if.m standard
|
2008-04-21 10:09:55 +00:00
|
|
|
kern/clock_if.m standard
|
2005-02-04 05:49:36 +00:00
|
|
|
kern/cpufreq_if.m standard
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/device_if.m standard
|
2014-05-22 05:04:40 +00:00
|
|
|
kern/imgact_binmisc.c optional imagact_binmisc
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/imgact_elf.c standard
|
2012-11-13 06:07:13 +00:00
|
|
|
kern/imgact_elf32.c optional compat_freebsd32
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/imgact_shell.c standard
|
|
|
|
kern/inflate.c optional gzip
|
|
|
|
kern/init_main.c standard
|
|
|
|
kern/init_sysent.c standard
|
2006-11-11 16:26:58 +00:00
|
|
|
kern/ksched.c optional _kposix_priority_scheduling
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_acct.c standard
|
|
|
|
kern/kern_alq.c optional alq
|
|
|
|
kern/kern_clock.c standard
|
|
|
|
kern/kern_condvar.c standard
|
|
|
|
kern/kern_conf.c standard
|
2008-11-01 08:35:28 +00:00
|
|
|
kern/kern_cons.c standard
|
2005-02-04 05:49:36 +00:00
|
|
|
kern/kern_cpu.c standard
|
Add cpuset, an api for thread to cpu binding and cpu resource grouping
and assignment.
- Add a reference to a struct cpuset in each thread that is inherited from
the thread that created it.
- Release the reference when the thread is destroyed.
- Add prototypes for syscalls and macros for manipulating cpusets in
sys/cpuset.h
- Add syscalls to create, get, and set new numbered cpusets:
cpuset(), cpuset_{get,set}id()
- Add syscalls for getting and setting affinity masks for cpusets or
individual threads: cpuid_{get,set}affinity()
- Add types for the 'level' and 'which' parameters for the cpuset. This
will permit expansion of the api to cover cpu masks for other objects
identifiable with an id_t integer. For example, IRQs and Jails may be
coming soon.
- The root set 0 contains all valid cpus. All thread initially belong to
cpuset 1. This permits migrating all threads off of certain cpus to
reserve them for special applications.
Sponsored by: Nokia
Discussed with: arch, rwatson, brooks, davidxu, deischen
Reviewed by: antoine
2008-03-02 07:39:22 +00:00
|
|
|
kern/kern_cpuset.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_context.c standard
|
|
|
|
kern/kern_descrip.c standard
|
2008-05-18 19:47:49 +00:00
|
|
|
kern/kern_dtrace.c optional kdtrace_hooks
|
2015-01-07 01:01:39 +00:00
|
|
|
kern/kern_dump.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_environment.c standard
|
Implement new event timers infrastructure. It provides unified APIs for
writing event timer drivers, for choosing best possible drivers by machine
independent code and for operating them to supply kernel with hardclock(),
statclock() and profclock() events in unified fashion on various hardware.
Infrastructure provides support for both per-CPU (independent for every CPU
core) and global timers in periodic and one-shot modes. MI management code
at this moment uses only periodic mode, but one-shot mode use planned for
later, as part of tickless kernel project.
For this moment infrastructure used on i386 and amd64 architectures. Other
archs are welcome to follow, while their current operation should not be
affected.
This patch updates existing drivers (i8254, RTC and LAPIC) for the new
order, and adds event timers support into the HPET driver. These drivers
have different capabilities:
LAPIC - per-CPU timer, supports periodic and one-shot operation, may
freeze in C3 state, calibrated on first use, so may be not exactly precise.
HPET - depending on hardware can work as per-CPU or global, supports
periodic and one-shot operation, usually provides several event timers.
i8254 - global, limited to periodic mode, because same hardware used also
as time counter.
RTC - global, supports only periodic mode, set of frequencies in Hz
limited by powers of 2.
Depending on hardware capabilities, drivers preferred in following orders,
either LAPIC, HPETs, i8254, RTC or HPETs, LAPIC, i8254, RTC.
User may explicitly specify wanted timers via loader tunables or sysctls:
kern.eventtimer.timer1 and kern.eventtimer.timer2.
If requested driver is unavailable or unoperational, system will try to
replace it. If no more timers available or "NONE" specified for second,
system will operate using only one timer, multiplying it's frequency by few
times and uing respective dividers to honor hz, stathz and profhz values,
set during initial setup.
2010-06-20 21:33:29 +00:00
|
|
|
kern/kern_et.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_event.c standard
|
|
|
|
kern/kern_exec.c standard
|
|
|
|
kern/kern_exit.c standard
|
2009-05-27 16:36:54 +00:00
|
|
|
kern/kern_fail.c standard
|
2011-11-21 01:26:10 +00:00
|
|
|
kern/kern_ffclock.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_fork.c standard
|
2010-03-02 06:58:58 +00:00
|
|
|
kern/kern_gzio.c optional gzio
|
2010-12-21 13:45:29 +00:00
|
|
|
kern/kern_hhook.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_idle.c standard
|
|
|
|
kern/kern_intr.c standard
|
|
|
|
kern/kern_jail.c standard
|
2010-12-21 13:45:29 +00:00
|
|
|
kern/kern_khelp.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_kthread.c standard
|
|
|
|
kern/kern_ktr.c optional ktr
|
|
|
|
kern/kern_ktrace.c standard
|
|
|
|
kern/kern_linker.c standard
|
|
|
|
kern/kern_lock.c standard
|
|
|
|
kern/kern_lockf.c standard
|
2009-05-26 20:28:22 +00:00
|
|
|
kern/kern_lockstat.c optional kdtrace_hooks
|
2011-03-05 12:40:35 +00:00
|
|
|
kern/kern_loginclass.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_malloc.c standard
|
|
|
|
kern/kern_mbuf.c standard
|
|
|
|
kern/kern_mib.c standard
|
|
|
|
kern/kern_module.c standard
|
|
|
|
kern/kern_mtxpool.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/kern_mutex.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_ntptime.c standard
|
Add an initial NUMA affinity/policy configuration for threads and processes.
This is based on work done by jeff@ and jhb@, as well as the numa.diff
patch that has been circulating when someone asks for first-touch NUMA
on -10 or -11.
* Introduce a simple set of VM policy and iterator types.
* tie the policy types into the vm_phys path for now, mirroring how
the initial first-touch allocation work was enabled.
* add syscalls to control changing thread and process defaults.
* add a global NUMA VM domain policy.
* implement a simple cascade policy order - if a thread policy exists, use it;
if a process policy exists, use it; use the default policy.
* processes inherit policies from their parent processes, threads inherit
policies from their parent threads.
* add a simple tool (numactl) to query and modify default thread/process
policities.
* add documentation for the new syscalls, for numa and for numactl.
* re-enable first touch NUMA again by default, as now policies can be
set in a variety of methods.
This is only relevant for very specific workloads.
This doesn't pretend to be a final NUMA solution.
The previous defaults in -HEAD (with MAXMEMDOM set) can be achieved by
'sysctl vm.default_policy=rr'.
This is only relevant if MAXMEMDOM is set to something other than 1.
Ie, if you're using GENERIC or a modified kernel with non-NUMA, then
this is a glorified no-op for you.
Thank you to Norse Corp for giving me access to rather large
(for FreeBSD!) NUMA machines in order to develop and verify this.
Thank you to Dell for providing me with dual socket sandybridge
and westmere v3 hardware to do NUMA development with.
Thank you to Scott Long at Netflix for providing me with access
to the two-socket, four-domain haswell v3 hardware.
Thank you to Peter Holm for running the stress testing suite
against the NUMA branch during various stages of development!
Tested:
* MIPS (regression testing; non-NUMA)
* i386 (regression testing; non-NUMA GENERIC)
* amd64 (regression testing; non-NUMA GENERIC)
* westmere, 2 socket (thankyou norse!)
* sandy bridge, 2 socket (thankyou dell!)
* ivy bridge, 2 socket (thankyou norse!)
* westmere-EX, 4 socket / 1TB RAM (thankyou norse!)
* haswell, 2 socket (thankyou norse!)
* haswell v3, 2 socket (thankyou dell)
* haswell v3, 2x18 core (thankyou scott long / netflix!)
* Peter Holm ran a stress test suite on this work and found one
issue, but has not been able to verify it (it doesn't look NUMA
related, and he only saw it once over many testing runs.)
* I've tested bhyve instances running in fixed NUMA domains and cpusets;
all seems to work correctly.
Verified:
* intel-pcm - pcm-numa.x and pcm-memory.x, whilst selecting different
NUMA policies for processes under test.
Review:
This was reviewed through phabricator (https://reviews.freebsd.org/D2559)
as well as privately and via emails to freebsd-arch@. The git history
with specific attributes is available at https://github.com/erikarn/freebsd/
in the NUMA branch (https://github.com/erikarn/freebsd/compare/local/adrian_numa_policy).
This has been reviewed by a number of people (stas, rpaulo, kib, ngie,
wblock) but not achieved a clear consensus. My hope is that with further
exposure and testing more functionality can be implemented and evaluated.
Notes:
* The VM doesn't handle unbalanced domains very well, and if you have an overly
unbalanced memory setup whilst under high memory pressure, VM page allocation
may fail leading to a kernel panic. This was a problem in the past, but it's
much more easily triggered now with these tools.
* This work only controls the path through vm_phys; it doesn't yet strongly/predictably
affect contigmalloc, KVA placement, UMA, etc. So, driver placement of memory
isn't really guaranteed in any way. That's next on my plate.
Sponsored by: Norse Corp, Inc.; Dell
2015-07-11 15:21:37 +00:00
|
|
|
kern/kern_numa.c standard
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
kern/kern_osd.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_physio.c standard
|
2005-04-19 04:01:25 +00:00
|
|
|
kern/kern_pmc.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/kern_poll.c optional device_polling
|
Add a new priv(9) kernel interface for checking the availability of
privilege for threads and credentials. Unlike the existing suser(9)
interface, priv(9) exposes a named privilege identifier to the privilege
checking code, allowing more complex policies regarding the granting of
privilege to be expressed. Two interfaces are provided, replacing the
existing suser(9) interface:
suser(td) -> priv_check(td, priv)
suser_cred(cred, flags) -> priv_check_cred(cred, priv, flags)
A comprehensive list of currently available kernel privileges may be
found in priv.h. New privileges are easily added as required, but the
comments on adding privileges found in priv.h and priv(9) should be read
before doing so.
The new privilege interface exposed sufficient information to the
privilege checking routine that it will now be possible for jail to
determine whether a particular privilege is granted in the check routine,
rather than relying on hints from the calling context via the
SUSER_ALLOWJAIL flag. For now, the flag is maintained, but a new jail
check function, prison_priv_check(), is exposed from kern_jail.c and used
by the privilege check routine to determine if the privilege is permitted
in jail. As a result, a centralized list of privileges permitted in jail
is now present in kern_jail.c.
The MAC Framework is now also able to instrument privilege checks, both
to deny privileges otherwise granted (mac_priv_check()), and to grant
privileges otherwise denied (mac_priv_grant()), permitting MAC Policy
modules to implement privilege models, as well as control a much broader
range of system behavior in order to constrain processes running with
root privilege.
The suser() and suser_cred() functions remain implemented, now in terms
of priv_check() and the PRIV_ROOT privilege, for use during the transition
and possibly continuing use by third party kernel modules that have not
been updated. The PRIV_DRIVER privilege exists to allow device drivers to
check privilege without adopting a more specific privilege identifier.
This change does not modify the actual security policy, rather, it
modifies the interface for privilege checks so changes to the security
policy become more feasible.
Sponsored by: nCircle Network Security, Inc.
Obtained from: TrustedBSD Project
Discussed on: arch@
Reviewed (at least in part) by: mlaier, jmg, pjd, bde, ceri,
Alex Lyashkov <umka at sevcity dot net>,
Skip Ford <skip dot ford at verizon dot net>,
Antoine Brodin <antoine dot brodin at laposte dot net>
2006-11-06 13:37:19 +00:00
|
|
|
kern/kern_priv.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_proc.c standard
|
2014-12-15 12:01:42 +00:00
|
|
|
kern/kern_procctl.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_prot.c standard
|
2011-03-29 17:47:25 +00:00
|
|
|
kern/kern_racct.c standard
|
2012-05-30 16:06:38 +00:00
|
|
|
kern/kern_rangelock.c standard
|
2011-03-30 17:48:15 +00:00
|
|
|
kern/kern_rctl.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_resource.c standard
|
2007-11-08 14:47:55 +00:00
|
|
|
kern/kern_rmlock.c standard
|
2006-01-27 23:13:26 +00:00
|
|
|
kern/kern_rwlock.c standard
|
2008-05-18 19:47:49 +00:00
|
|
|
kern/kern_sdt.c optional kdtrace_hooks
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_sema.c standard
|
2016-01-22 02:23:18 +00:00
|
|
|
kern/kern_sendfile.c standard
|
2012-06-23 10:15:23 +00:00
|
|
|
kern/kern_sharedpage.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_shutdown.c standard
|
|
|
|
kern/kern_sig.c standard
|
2008-03-20 05:51:16 +00:00
|
|
|
kern/kern_switch.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/kern_sx.c standard
|
|
|
|
kern/kern_synch.c standard
|
|
|
|
kern/kern_syscalls.c standard
|
|
|
|
kern/kern_sysctl.c standard
|
|
|
|
kern/kern_tc.c standard
|
|
|
|
kern/kern_thr.c standard
|
|
|
|
kern/kern_thread.c standard
|
|
|
|
kern/kern_time.c standard
|
|
|
|
kern/kern_timeout.c standard
|
|
|
|
kern/kern_umtx.c standard
|
|
|
|
kern/kern_uuid.c standard
|
Change the curvnet variable from a global const struct vnet *,
previously always pointing to the default vnet context, to a
dynamically changing thread-local one. The currvnet context
should be set on entry to networking code via CURVNET_SET() macros,
and reverted to previous state via CURVNET_RESTORE(). Recursions
on curvnet are permitted, though strongly discuouraged.
This change should have no functional impact on nooptions VIMAGE
kernel builds, where CURVNET_* macros expand to whitespace.
The curthread->td_vnet (aka curvnet) variable's purpose is to be an
indicator of the vnet context in which the current network-related
operation takes place, in case we cannot deduce the current vnet
context from any other source, such as by looking at mbuf's
m->m_pkthdr.rcvif->if_vnet, sockets's so->so_vnet etc. Moreover, so
far curvnet has turned out to be an invaluable consistency checking
aid: it helps to catch cases when sockets, ifnets or any other
vnet-aware structures may have leaked from one vnet to another.
The exact placement of the CURVNET_SET() / CURVNET_RESTORE() macros
was a result of an empirical iterative process, whith an aim to
reduce recursions on CURVNET_SET() to a minimum, while still reducing
the scope of CURVNET_SET() to networking only operations - the
alternative would be calling CURVNET_SET() on each system call entry.
In general, curvnet has to be set in three typicall cases: when
processing socket-related requests from userspace or from within the
kernel; when processing inbound traffic flowing from device drivers
to upper layers of the networking stack, and when executing
timer-driven networking functions.
This change also introduces a DDB subcommand to show the list of all
vnet instances.
Approved by: julian (mentor)
2009-05-05 10:56:12 +00:00
|
|
|
kern/kern_xxx.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/link_elf.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/linker_if.m standard
|
2013-06-28 21:00:08 +00:00
|
|
|
kern/md4c.c optional netsmb
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/md5c.c standard
|
2006-11-11 16:26:58 +00:00
|
|
|
kern/p1003_1b.c standard
|
|
|
|
kern/posix4_mib.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/sched_4bsd.c optional sched_4bsd
|
|
|
|
kern/sched_ule.c optional sched_ule
|
2007-05-17 01:29:55 +00:00
|
|
|
kern/serdev_if.m standard
|
2008-06-25 21:33:28 +00:00
|
|
|
kern/stack_protector.c standard \
|
|
|
|
compile-with "${NORMAL_C:N-fstack-protector*}"
|
2012-04-29 16:14:09 +00:00
|
|
|
kern/subr_acl_nfs4.c optional ufs_acl | zfs
|
2012-03-13 20:29:56 +00:00
|
|
|
kern/subr_acl_posix1e.c optional ufs_acl
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_autoconf.c standard
|
|
|
|
kern/subr_blist.c standard
|
|
|
|
kern/subr_bus.c standard
|
2013-02-12 16:57:20 +00:00
|
|
|
kern/subr_bus_dma.c standard
|
2008-11-22 05:55:56 +00:00
|
|
|
kern/subr_bufring.c standard
|
Change the cap_rights_t type from uint64_t to a structure that we can extend
in the future in a backward compatible (API and ABI) way.
The cap_rights_t represents capability rights. We used to use one bit to
represent one right, but we are running out of spare bits. Currently the new
structure provides place for 114 rights (so 50 more than the previous
cap_rights_t), but it is possible to grow the structure to hold at least 285
rights, although we can make it even larger if 285 rights won't be enough.
The structure definition looks like this:
struct cap_rights {
uint64_t cr_rights[CAP_RIGHTS_VERSION + 2];
};
The initial CAP_RIGHTS_VERSION is 0.
The top two bits in the first element of the cr_rights[] array contain total
number of elements in the array - 2. This means if those two bits are equal to
0, we have 2 array elements.
The top two bits in all remaining array elements should be 0.
The next five bits in all array elements contain array index. Only one bit is
used and bit position in this five-bits range defines array index. This means
there can be at most five array elements in the future.
To define new right the CAPRIGHT() macro must be used. The macro takes two
arguments - an array index and a bit to set, eg.
#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL)
We still support aliases that combine few rights, but the rights have to belong
to the same array element, eg:
#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL)
#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL)
#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP)
There is new API to manage the new cap_rights_t structure:
cap_rights_t *cap_rights_init(cap_rights_t *rights, ...);
void cap_rights_set(cap_rights_t *rights, ...);
void cap_rights_clear(cap_rights_t *rights, ...);
bool cap_rights_is_set(const cap_rights_t *rights, ...);
bool cap_rights_is_valid(const cap_rights_t *rights);
void cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src);
void cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src);
bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
Capability rights to the cap_rights_init(), cap_rights_set(),
cap_rights_clear() and cap_rights_is_set() functions are provided by
separating them with commas, eg:
cap_rights_t rights;
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FSTAT);
There is no need to terminate the list of rights, as those functions are
actually macros that take care of the termination, eg:
#define cap_rights_set(rights, ...) \
__cap_rights_set((rights), __VA_ARGS__, 0ULL)
void __cap_rights_set(cap_rights_t *rights, ...);
Thanks to using one bit as an array index we can assert in those functions that
there are no two rights belonging to different array elements provided
together. For example this is illegal and will be detected, because CAP_LOOKUP
belongs to element 0 and CAP_PDKILL to element 1:
cap_rights_init(&rights, CAP_LOOKUP | CAP_PDKILL);
Providing several rights that belongs to the same array's element this way is
correct, but is not advised. It should only be used for aliases definition.
This commit also breaks compatibility with some existing Capsicum system calls,
but I see no other way to do that. This should be fine as Capsicum is still
experimental and this change is not going to 9.x.
Sponsored by: The FreeBSD Foundation
2013-09-05 00:09:56 +00:00
|
|
|
kern/subr_capability.c standard
|
2006-10-02 15:42:02 +00:00
|
|
|
kern/subr_clock.c standard
|
2013-04-08 19:40:53 +00:00
|
|
|
kern/subr_counter.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_devstat.c standard
|
|
|
|
kern/subr_disk.c standard
|
1999-08-21 06:24:40 +00:00
|
|
|
kern/subr_eventhandler.c standard
|
2006-10-22 18:19:08 +00:00
|
|
|
kern/subr_fattime.c standard
|
2006-01-29 02:52:42 +00:00
|
|
|
kern/subr_firmware.c optional firmware
|
2010-02-21 19:53:33 +00:00
|
|
|
kern/subr_hash.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_hints.c standard
|
|
|
|
kern/subr_kdb.c standard
|
|
|
|
kern/subr_kobj.c standard
|
2006-01-17 16:55:17 +00:00
|
|
|
kern/subr_lock.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_log.c standard
|
|
|
|
kern/subr_mbpool.c optional libmbpool
|
|
|
|
kern/subr_mchain.c optional libmchain
|
|
|
|
kern/subr_module.c standard
|
|
|
|
kern/subr_msgbuf.c standard
|
|
|
|
kern/subr_param.c standard
|
|
|
|
kern/subr_pcpu.c standard
|
2013-05-12 04:05:01 +00:00
|
|
|
kern/subr_pctrie.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_power.c standard
|
|
|
|
kern/subr_prf.c standard
|
|
|
|
kern/subr_prof.c standard
|
|
|
|
kern/subr_rman.c standard
|
2008-04-21 10:09:55 +00:00
|
|
|
kern/subr_rtc.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_sbuf.c standard
|
|
|
|
kern/subr_scanf.c standard
|
2009-06-01 20:35:39 +00:00
|
|
|
kern/subr_sglist.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_sleepqueue.c standard
|
|
|
|
kern/subr_smp.c standard
|
2008-10-30 21:48:28 +00:00
|
|
|
kern/subr_stack.c optional ddb | stack | ktr
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_taskqueue.c standard
|
2013-12-05 22:38:53 +00:00
|
|
|
kern/subr_terminal.c optional vt
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_trap.c standard
|
|
|
|
kern/subr_turnstile.c standard
|
2010-02-21 19:53:33 +00:00
|
|
|
kern/subr_uio.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_unit.c standard
|
2013-06-28 03:51:20 +00:00
|
|
|
kern/subr_vmem.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/subr_witness.c optional witness
|
2011-03-01 13:24:49 +00:00
|
|
|
kern/sys_capability.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/sys_generic.c standard
|
|
|
|
kern/sys_pipe.c standard
|
Add experimental support for process descriptors
A "process descriptor" file descriptor is used to manage processes
without using the PID namespace. This is required for Capsicum's
Capability Mode, where the PID namespace is unavailable.
New system calls pdfork(2) and pdkill(2) offer the functional equivalents
of fork(2) and kill(2). pdgetpid(2) allows querying the PID of the remote
process for debugging purposes. The currently-unimplemented pdwait(2) will,
in the future, allow querying rusage/exit status. In the interim, poll(2)
may be used to check (and wait for) process termination.
When a process is referenced by a process descriptor, it does not issue
SIGCHLD to the parent, making it suitable for use in libraries---a common
scenario when using library compartmentalisation from within large
applications (such as web browsers). Some observers may note a similarity
to Mach task ports; process descriptors provide a subset of this behaviour,
but in a UNIX style.
This feature is enabled by "options PROCDESC", but as with several other
Capsicum kernel features, is not enabled by default in GENERIC 9.0.
Reviewed by: jhb, kib
Approved by: re (kib), mentor (rwatson)
Sponsored by: Google Inc
2011-08-18 22:51:30 +00:00
|
|
|
kern/sys_procdesc.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/sys_process.c standard
|
|
|
|
kern/sys_socket.c standard
|
Reorganize syscall entry and leave handling.
Extend struct sysvec with three new elements:
sv_fetch_syscall_args - the method to fetch syscall arguments from
usermode into struct syscall_args. The structure is machine-depended
(this might be reconsidered after all architectures are converted).
sv_set_syscall_retval - the method to set a return value for usermode
from the syscall. It is a generalization of
cpu_set_syscall_retval(9) to allow ABIs to override the way to set a
return value.
sv_syscallnames - the table of syscall names.
Use sv_set_syscall_retval in kern_sigsuspend() instead of hardcoding
the call to cpu_set_syscall_retval().
The new functions syscallenter(9) and syscallret(9) are provided that
use sv_*syscall* pointers and contain the common repeated code from
the syscall() implementations for the architecture-specific syscall
trap handlers.
Syscallenter() fetches arguments, calls syscall implementation from
ABI sysent table, and set up return frame. The end of syscall
bookkeeping is done by syscallret().
Take advantage of single place for MI syscall handling code and
implement ptrace_lwpinfo pl_flags PL_FLAG_SCE, PL_FLAG_SCX and
PL_FLAG_EXEC. The SCE and SCX flags notify the debugger that the
thread is stopped at syscall entry or return point respectively. The
EXEC flag augments SCX and notifies debugger that the process address
space was changed by one of exec(2)-family syscalls.
The i386, amd64, sparc64, sun4v, powerpc and ia64 syscall()s are
changed to use syscallenter()/syscallret(). MIPS and arm are not
converted and use the mostly unchanged syscall() implementation.
Reviewed by: jhb, marcel, marius, nwhitehorn, stas
Tested by: marcel (ia64), marius (sparc64), nwhitehorn (powerpc),
stas (mips)
MFC after: 1 month
2010-05-23 18:32:02 +00:00
|
|
|
kern/syscalls.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/sysv_ipc.c standard
|
|
|
|
kern/sysv_msg.c optional sysvmsg
|
|
|
|
kern/sysv_sem.c optional sysvsem
|
|
|
|
kern/sysv_shm.c optional sysvshm
|
|
|
|
kern/tty.c standard
|
2006-01-10 09:19:10 +00:00
|
|
|
kern/tty_compat.c optional compat_43tty
|
2008-07-25 14:31:00 +00:00
|
|
|
kern/tty_info.c standard
|
Integrate the new MPSAFE TTY layer to the FreeBSD operating system.
The last half year I've been working on a replacement TTY layer for the
FreeBSD kernel. The new TTY layer was designed to improve the following:
- Improved driver model:
The old TTY layer has a driver model that is not abstract enough to
make it friendly to use. A good example is the output path, where the
device drivers directly access the output buffers. This means that an
in-kernel PPP implementation must always convert network buffers into
TTY buffers.
If a PPP implementation would be built on top of the new TTY layer
(still needs a hooks layer, though), it would allow the PPP
implementation to directly hand the data to the TTY driver.
- Improved hotplugging:
With the old TTY layer, it isn't entirely safe to destroy TTY's from
the system. This implementation has a two-step destructing design,
where the driver first abandons the TTY. After all threads have left
the TTY, the TTY layer calls a routine in the driver, which can be
used to free resources (unit numbers, etc).
The pts(4) driver also implements this feature, which means
posix_openpt() will now return PTY's that are created on the fly.
- Improved performance:
One of the major improvements is the per-TTY mutex, which is expected
to improve scalability when compared to the old Giant locking.
Another change is the unbuffered copying to userspace, which is both
used on TTY device nodes and PTY masters.
Upgrading should be quite straightforward. Unlike previous versions,
existing kernel configuration files do not need to be changed, except
when they reference device drivers that are listed in UPDATING.
Obtained from: //depot/projects/mpsafetty/...
Approved by: philip (ex-mentor)
Discussed: on the lists, at BSDCan, at the DevSummit
Sponsored by: Snow B.V., the Netherlands
dcons(4) fixed by: kan
2008-08-20 08:31:58 +00:00
|
|
|
kern/tty_inq.c standard
|
|
|
|
kern/tty_outq.c standard
|
|
|
|
kern/tty_pts.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/tty_tty.c standard
|
Integrate the new MPSAFE TTY layer to the FreeBSD operating system.
The last half year I've been working on a replacement TTY layer for the
FreeBSD kernel. The new TTY layer was designed to improve the following:
- Improved driver model:
The old TTY layer has a driver model that is not abstract enough to
make it friendly to use. A good example is the output path, where the
device drivers directly access the output buffers. This means that an
in-kernel PPP implementation must always convert network buffers into
TTY buffers.
If a PPP implementation would be built on top of the new TTY layer
(still needs a hooks layer, though), it would allow the PPP
implementation to directly hand the data to the TTY driver.
- Improved hotplugging:
With the old TTY layer, it isn't entirely safe to destroy TTY's from
the system. This implementation has a two-step destructing design,
where the driver first abandons the TTY. After all threads have left
the TTY, the TTY layer calls a routine in the driver, which can be
used to free resources (unit numbers, etc).
The pts(4) driver also implements this feature, which means
posix_openpt() will now return PTY's that are created on the fly.
- Improved performance:
One of the major improvements is the per-TTY mutex, which is expected
to improve scalability when compared to the old Giant locking.
Another change is the unbuffered copying to userspace, which is both
used on TTY device nodes and PTY masters.
Upgrading should be quite straightforward. Unlike previous versions,
existing kernel configuration files do not need to be changed, except
when they reference device drivers that are listed in UPDATING.
Obtained from: //depot/projects/mpsafetty/...
Approved by: philip (ex-mentor)
Discussed: on the lists, at BSDCan, at the DevSummit
Sponsored by: Snow B.V., the Netherlands
dcons(4) fixed by: kan
2008-08-20 08:31:58 +00:00
|
|
|
kern/tty_ttydisc.c standard
|
2014-07-26 19:27:34 +00:00
|
|
|
kern/uipc_accf.c standard
|
2007-02-15 01:28:22 +00:00
|
|
|
kern/uipc_debug.c optional ddb
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/uipc_domain.c standard
|
|
|
|
kern/uipc_mbuf.c standard
|
|
|
|
kern/uipc_mbuf2.c standard
|
2015-03-11 16:02:24 +00:00
|
|
|
kern/uipc_mbufhash.c standard
|
2005-11-26 12:42:35 +00:00
|
|
|
kern/uipc_mqueue.c optional p1003_1b_mqueue
|
2005-01-10 05:11:40 +00:00
|
|
|
kern/uipc_sem.c optional p1003_1b_semaphores
|
Add a new file descriptor type for IPC shared memory objects and use it to
implement shm_open(2) and shm_unlink(2) in the kernel:
- Each shared memory file descriptor is associated with a swap-backed vm
object which provides the backing store. Each descriptor starts off with
a size of zero, but the size can be altered via ftruncate(2). The shared
memory file descriptors also support fstat(2). read(2), write(2),
ioctl(2), select(2), poll(2), and kevent(2) are not supported on shared
memory file descriptors.
- shm_open(2) and shm_unlink(2) are now implemented as system calls that
manage shared memory file descriptors. The virtual namespace that maps
pathnames to shared memory file descriptors is implemented as a hash
table where the hash key is generated via the 32-bit Fowler/Noll/Vo hash
of the pathname.
- As an extension, the constant 'SHM_ANON' may be specified in place of the
path argument to shm_open(2). In this case, an unnamed shared memory
file descriptor will be created similar to the IPC_PRIVATE key for
shmget(2). Note that the shared memory object can still be shared among
processes by sharing the file descriptor via fork(2) or sendmsg(2), but
it is unnamed. This effectively serves to implement the getmemfd() idea
bandied about the lists several times over the years.
- The backing store for shared memory file descriptors are garbage
collected when they are not referenced by any open file descriptors or
the shm_open(2) virtual namespace.
Submitted by: dillon, peter (previous versions)
Submitted by: rwatson (I based this on his version)
Reviewed by: alc (suggested converting getmemfd() to shm_open())
2008-01-08 21:58:16 +00:00
|
|
|
kern/uipc_shm.c standard
|
2006-07-25 02:15:28 +00:00
|
|
|
kern/uipc_sockbuf.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/uipc_socket.c standard
|
|
|
|
kern/uipc_syscalls.c standard
|
|
|
|
kern/uipc_usrreq.c standard
|
2007-03-05 13:24:01 +00:00
|
|
|
kern/vfs_acl.c standard
|
2016-03-01 18:12:14 +00:00
|
|
|
kern/vfs_aio.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/vfs_bio.c standard
|
|
|
|
kern/vfs_cache.c standard
|
|
|
|
kern/vfs_cluster.c standard
|
|
|
|
kern/vfs_default.c standard
|
|
|
|
kern/vfs_export.c standard
|
2006-12-23 00:11:02 +00:00
|
|
|
kern/vfs_extattr.c standard
|
2005-03-14 10:01:29 +00:00
|
|
|
kern/vfs_hash.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/vfs_init.c standard
|
|
|
|
kern/vfs_lookup.c standard
|
|
|
|
kern/vfs_mount.c standard
|
2010-10-02 19:44:13 +00:00
|
|
|
kern/vfs_mountroot.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
kern/vfs_subr.c standard
|
|
|
|
kern/vfs_syscalls.c standard
|
|
|
|
kern/vfs_vnops.c standard
|
2000-03-23 19:08:49 +00:00
|
|
|
#
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
# Kernel GSS-API
|
|
|
|
#
|
|
|
|
gssd.h optional kgssapi \
|
|
|
|
dependency "$S/kgssapi/gssd.x" \
|
2012-02-07 09:27:07 +00:00
|
|
|
compile-with "RPCGEN_CPP='${CPP}' rpcgen -hM $S/kgssapi/gssd.x | grep -v pthread.h > gssd.h" \
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
no-obj no-implicit-rule before-depend local \
|
|
|
|
clean "gssd.h"
|
|
|
|
gssd_xdr.c optional kgssapi \
|
|
|
|
dependency "$S/kgssapi/gssd.x gssd.h" \
|
2012-02-07 09:27:07 +00:00
|
|
|
compile-with "RPCGEN_CPP='${CPP}' rpcgen -c $S/kgssapi/gssd.x -o gssd_xdr.c" \
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "gssd_xdr.c"
|
|
|
|
gssd_clnt.c optional kgssapi \
|
|
|
|
dependency "$S/kgssapi/gssd.x gssd.h" \
|
2012-02-07 09:27:07 +00:00
|
|
|
compile-with "RPCGEN_CPP='${CPP}' rpcgen -lM $S/kgssapi/gssd.x | grep -v string.h > gssd_clnt.c" \
|
Implement support for RPCSEC_GSS authentication to both the NFS client
and server. This replaces the RPC implementation of the NFS client and
server with the newer RPC implementation originally developed
(actually ported from the userland sunrpc code) to support the NFS
Lock Manager. I have tested this code extensively and I believe it is
stable and that performance is at least equal to the legacy RPC
implementation.
The NFS code currently contains support for both the new RPC
implementation and the older legacy implementation inherited from the
original NFS codebase. The default is to use the new implementation -
add the NFS_LEGACYRPC option to fall back to the old code. When I
merge this support back to RELENG_7, I will probably change this so
that users have to 'opt in' to get the new code.
To use RPCSEC_GSS on either client or server, you must build a kernel
which includes the KGSSAPI option and the crypto device. On the
userland side, you must build at least a new libc, mountd, mount_nfs
and gssd. You must install new versions of /etc/rc.d/gssd and
/etc/rc.d/nfsd and add 'gssd_enable=YES' to /etc/rc.conf.
As long as gssd is running, you should be able to mount an NFS
filesystem from a server that requires RPCSEC_GSS authentication. The
mount itself can happen without any kerberos credentials but all
access to the filesystem will be denied unless the accessing user has
a valid ticket file in the standard place (/tmp/krb5cc_<uid>). There
is currently no support for situations where the ticket file is in a
different place, such as when the user logged in via SSH and has
delegated credentials from that login. This restriction is also
present in Solaris and Linux. In theory, we could improve this in
future, possibly using Brooks Davis' implementation of variant
symlinks.
Supporting RPCSEC_GSS on a server is nearly as simple. You must create
service creds for the server in the form 'nfs/<fqdn>@<REALM>' and
install them in /etc/krb5.keytab. The standard heimdal utility ktutil
makes this fairly easy. After the service creds have been created, you
can add a '-sec=krb5' option to /etc/exports and restart both mountd
and nfsd.
The only other difference an administrator should notice is that nfsd
doesn't fork to create service threads any more. In normal operation,
there will be two nfsd processes, one in userland waiting for TCP
connections and one in the kernel handling requests. The latter
process will create as many kthreads as required - these should be
visible via 'top -H'. The code has some support for varying the number
of service threads according to load but initially at least, nfsd uses
a fixed number of threads according to the value supplied to its '-n'
option.
Sponsored by: Isilon Systems
MFC after: 1 month
2008-11-03 10:38:00 +00:00
|
|
|
no-implicit-rule before-depend local \
|
|
|
|
clean "gssd_clnt.c"
|
|
|
|
kgssapi/gss_accept_sec_context.c optional kgssapi
|
|
|
|
kgssapi/gss_add_oid_set_member.c optional kgssapi
|
|
|
|
kgssapi/gss_acquire_cred.c optional kgssapi
|
|
|
|
kgssapi/gss_canonicalize_name.c optional kgssapi
|
|
|
|
kgssapi/gss_create_empty_oid_set.c optional kgssapi
|
|
|
|
kgssapi/gss_delete_sec_context.c optional kgssapi
|
|
|
|
kgssapi/gss_display_status.c optional kgssapi
|
|
|
|
kgssapi/gss_export_name.c optional kgssapi
|
|
|
|
kgssapi/gss_get_mic.c optional kgssapi
|
|
|
|
kgssapi/gss_init_sec_context.c optional kgssapi
|
|
|
|
kgssapi/gss_impl.c optional kgssapi
|
|
|
|
kgssapi/gss_import_name.c optional kgssapi
|
|
|
|
kgssapi/gss_names.c optional kgssapi
|
|
|
|
kgssapi/gss_pname_to_uid.c optional kgssapi
|
|
|
|
kgssapi/gss_release_buffer.c optional kgssapi
|
|
|
|
kgssapi/gss_release_cred.c optional kgssapi
|
|
|
|
kgssapi/gss_release_name.c optional kgssapi
|
|
|
|
kgssapi/gss_release_oid_set.c optional kgssapi
|
|
|
|
kgssapi/gss_set_cred_option.c optional kgssapi
|
|
|
|
kgssapi/gss_test_oid_set_member.c optional kgssapi
|
|
|
|
kgssapi/gss_unwrap.c optional kgssapi
|
|
|
|
kgssapi/gss_verify_mic.c optional kgssapi
|
|
|
|
kgssapi/gss_wrap.c optional kgssapi
|
|
|
|
kgssapi/gss_wrap_size_limit.c optional kgssapi
|
|
|
|
kgssapi/gssd_prot.c optional kgssapi
|
|
|
|
kgssapi/krb5/krb5_mech.c optional kgssapi
|
|
|
|
kgssapi/krb5/kcrypto.c optional kgssapi
|
|
|
|
kgssapi/krb5/kcrypto_aes.c optional kgssapi
|
|
|
|
kgssapi/krb5/kcrypto_arcfour.c optional kgssapi
|
|
|
|
kgssapi/krb5/kcrypto_des.c optional kgssapi
|
|
|
|
kgssapi/krb5/kcrypto_des3.c optional kgssapi
|
|
|
|
kgssapi/kgss_if.m optional kgssapi
|
|
|
|
kgssapi/gsstest.c optional kgssapi_debug
|
2000-03-23 19:08:49 +00:00
|
|
|
# These files in libkern/ are those needed by all architectures. Some
|
|
|
|
# of the files in libkern/ are only needed on some architectures, e.g.,
|
|
|
|
# libkern/divdi3.c is needed by i386 but not alpha. Also, some of these
|
|
|
|
# routines may be optimized for a particular platform. In either case,
|
2002-07-30 22:28:43 +00:00
|
|
|
# the file should be moved to conf/files.<arch> from here.
|
2000-03-23 19:08:49 +00:00
|
|
|
#
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/arc4random.c standard
|
2015-03-01 00:22:16 +00:00
|
|
|
libkern/asprintf.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/bcd.c standard
|
|
|
|
libkern/bsearch.c standard
|
|
|
|
libkern/crc32.c standard
|
2014-10-07 04:54:11 +00:00
|
|
|
libkern/explicit_bzero.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
libkern/fnmatch.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/iconv.c optional libiconv
|
2001-04-09 09:39:29 +00:00
|
|
|
libkern/iconv_converter_if.m optional libiconv
|
2011-11-18 03:05:20 +00:00
|
|
|
libkern/iconv_ucs.c optional libiconv
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/iconv_xlat.c optional libiconv
|
|
|
|
libkern/iconv_xlat16.c optional libiconv
|
2009-11-12 00:46:28 +00:00
|
|
|
libkern/inet_aton.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/inet_ntoa.c standard
|
2010-09-24 15:01:45 +00:00
|
|
|
libkern/inet_ntop.c standard
|
|
|
|
libkern/inet_pton.c standard
|
2012-09-04 12:07:33 +00:00
|
|
|
libkern/jenkins_hash.c standard
|
2014-10-10 19:26:26 +00:00
|
|
|
libkern/murmur3_32.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/mcount.c optional profiling-routine
|
2012-01-01 20:26:11 +00:00
|
|
|
libkern/memcchr.c standard
|
2015-02-06 23:34:40 +00:00
|
|
|
libkern/memchr.c standard
|
2008-09-23 14:45:10 +00:00
|
|
|
libkern/memcmp.c standard
|
2014-09-05 16:40:47 +00:00
|
|
|
libkern/memmem.c optional gdb
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/qsort.c standard
|
|
|
|
libkern/qsort_r.c standard
|
|
|
|
libkern/random.c standard
|
|
|
|
libkern/scanc.c standard
|
2005-08-08 18:31:13 +00:00
|
|
|
libkern/strcasecmp.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strcat.c standard
|
2012-01-03 07:05:30 +00:00
|
|
|
libkern/strchr.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strcmp.c standard
|
|
|
|
libkern/strcpy.c standard
|
2008-08-15 20:58:57 +00:00
|
|
|
libkern/strcspn.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strdup.c standard
|
2014-08-17 09:44:42 +00:00
|
|
|
libkern/strndup.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strlcat.c standard
|
|
|
|
libkern/strlcpy.c standard
|
|
|
|
libkern/strlen.c standard
|
|
|
|
libkern/strncmp.c standard
|
|
|
|
libkern/strncpy.c standard
|
2011-10-04 23:53:47 +00:00
|
|
|
libkern/strnlen.c standard
|
2012-01-03 07:05:30 +00:00
|
|
|
libkern/strrchr.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strsep.c standard
|
2005-02-10 20:39:39 +00:00
|
|
|
libkern/strspn.c standard
|
2006-08-12 15:28:39 +00:00
|
|
|
libkern/strstr.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
libkern/strtol.c standard
|
|
|
|
libkern/strtoq.c standard
|
|
|
|
libkern/strtoul.c standard
|
|
|
|
libkern/strtouq.c standard
|
|
|
|
libkern/strvalid.c standard
|
2014-12-12 19:56:36 +00:00
|
|
|
libkern/timingsafe_bcmp.c standard
|
2015-04-22 14:38:58 +00:00
|
|
|
libkern/zlib.c optional crypto | geom_uzip | ipsec | \
|
|
|
|
mxge | netgraph_deflate | \
|
2016-02-24 00:39:36 +00:00
|
|
|
ddb_ctf | gzio
|
2015-04-16 20:22:40 +00:00
|
|
|
net/altq/altq_cbq.c optional altq
|
|
|
|
net/altq/altq_cdnr.c optional altq
|
2015-08-21 22:02:22 +00:00
|
|
|
net/altq/altq_codel.c optional altq
|
2015-04-16 20:22:40 +00:00
|
|
|
net/altq/altq_hfsc.c optional altq
|
2015-06-24 19:16:41 +00:00
|
|
|
net/altq/altq_fairq.c optional altq
|
2015-04-16 20:22:40 +00:00
|
|
|
net/altq/altq_priq.c optional altq
|
|
|
|
net/altq/altq_red.c optional altq
|
|
|
|
net/altq/altq_rio.c optional altq
|
|
|
|
net/altq/altq_rmclass.c optional altq
|
|
|
|
net/altq/altq_subr.c optional altq
|
2005-01-04 06:07:25 +00:00
|
|
|
net/bpf.c standard
|
Introduce support for zero-copy BPF buffering, which reduces the
overhead of packet capture by allowing a user process to directly "loan"
buffer memory to the kernel rather than using read(2) to explicitly copy
data from kernel address space.
The user process will issue new BPF ioctls to set the shared memory
buffer mode and provide pointers to buffers and their size. The kernel
then wires and maps the pages into kernel address space using sf_buf(9),
which on supporting architectures will use the direct map region. The
current "buffered" access mode remains the default, and support for
zero-copy buffers must, for the time being, be explicitly enabled using
a sysctl for the kernel to accept requests to use it.
The kernel and user process synchronize use of the buffers with atomic
operations, avoiding the need for system calls under load; the user
process may use select()/poll()/kqueue() to manage blocking while
waiting for network data if the user process is able to consume data
faster than the kernel generates it. Patchs to libpcap are available
to allow libpcap applications to transparently take advantage of this
support. Detailed information on the new API may be found in bpf(4),
including specific atomic operations and memory barriers required to
synchronize buffer use safely.
These changes modify the base BPF implementation to (roughly) abstrac
the current buffer model, allowing the new shared memory model to be
added, and add new monitoring statistics for netstat to print. The
implementation, with the exception of some monitoring hanges that break
the netstat monitoring ABI for BPF, will be MFC'd.
Zerocopy bpf buffers are still considered experimental are disabled
by default. To experiment with this new facility, adjust the
net.bpf.zerocopy_enable sysctl variable to 1.
Changes to libpcap will be made available as a patch for the time being,
and further refinements to the implementation are expected.
Sponsored by: Seccuris Inc.
In collaboration with: rwatson
Tested by: pwood, gallatin
MFC after: 4 months [1]
[1] Certain portions will probably not be MFCed, specifically things
that can break the monitoring ABI.
2008-03-24 13:49:17 +00:00
|
|
|
net/bpf_buffer.c optional bpf
|
2005-12-07 21:30:47 +00:00
|
|
|
net/bpf_jitter.c optional bpf_jitter
|
2005-11-27 21:41:58 +00:00
|
|
|
net/bpf_filter.c optional bpf | netgraph_bpf
|
Introduce support for zero-copy BPF buffering, which reduces the
overhead of packet capture by allowing a user process to directly "loan"
buffer memory to the kernel rather than using read(2) to explicitly copy
data from kernel address space.
The user process will issue new BPF ioctls to set the shared memory
buffer mode and provide pointers to buffers and their size. The kernel
then wires and maps the pages into kernel address space using sf_buf(9),
which on supporting architectures will use the direct map region. The
current "buffered" access mode remains the default, and support for
zero-copy buffers must, for the time being, be explicitly enabled using
a sysctl for the kernel to accept requests to use it.
The kernel and user process synchronize use of the buffers with atomic
operations, avoiding the need for system calls under load; the user
process may use select()/poll()/kqueue() to manage blocking while
waiting for network data if the user process is able to consume data
faster than the kernel generates it. Patchs to libpcap are available
to allow libpcap applications to transparently take advantage of this
support. Detailed information on the new API may be found in bpf(4),
including specific atomic operations and memory barriers required to
synchronize buffer use safely.
These changes modify the base BPF implementation to (roughly) abstrac
the current buffer model, allowing the new shared memory model to be
added, and add new monitoring statistics for netstat to print. The
implementation, with the exception of some monitoring hanges that break
the netstat monitoring ABI for BPF, will be MFC'd.
Zerocopy bpf buffers are still considered experimental are disabled
by default. To experiment with this new facility, adjust the
net.bpf.zerocopy_enable sysctl variable to 1.
Changes to libpcap will be made available as a patch for the time being,
and further refinements to the implementation are expected.
Sponsored by: Seccuris Inc.
In collaboration with: rwatson
Tested by: pwood, gallatin
MFC after: 4 months [1]
[1] Certain portions will probably not be MFCed, specifically things
that can break the monitoring ABI.
2008-03-24 13:49:17 +00:00
|
|
|
net/bpf_zerocopy.c optional bpf
|
2007-05-31 19:47:39 +00:00
|
|
|
net/bridgestp.c optional bridge | if_bridge
|
2011-04-30 12:07:31 +00:00
|
|
|
net/flowtable.c optional flowtable inet | flowtable inet6
|
2007-04-17 00:35:11 +00:00
|
|
|
net/ieee8023ad_lacp.c optional lagg
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if.c standard
|
|
|
|
net/if_arcsubr.c optional arcnet
|
|
|
|
net/if_atmsubr.c optional atm
|
2009-06-11 10:40:43 +00:00
|
|
|
net/if_bridge.c optional bridge inet | if_bridge inet
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_clone.c standard
|
2009-04-23 11:51:53 +00:00
|
|
|
net/if_dead.c standard
|
2010-10-25 08:30:19 +00:00
|
|
|
net/if_debug.c optional ddb
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_disc.c optional disc
|
2007-03-26 04:39:18 +00:00
|
|
|
net/if_edsc.c optional edsc
|
2015-11-25 07:31:59 +00:00
|
|
|
net/if_enc.c optional enc inet | enc inet6
|
2009-07-26 12:20:07 +00:00
|
|
|
net/if_epair.c optional epair
|
2012-09-14 11:51:49 +00:00
|
|
|
net/if_ethersubr.c optional ether
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_fddisubr.c optional fddi
|
|
|
|
net/if_fwsubr.c optional fwip
|
2014-10-17 07:58:51 +00:00
|
|
|
net/if_gif.c optional gif inet | gif inet6 | \
|
|
|
|
netgraph_gif inet | netgraph_gif inet6
|
2014-11-07 19:13:19 +00:00
|
|
|
net/if_gre.c optional gre inet | gre inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_iso88025subr.c optional token
|
2007-04-17 00:35:11 +00:00
|
|
|
net/if_lagg.c optional lagg
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_loop.c optional loop
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
net/if_llatbl.c standard
|
2014-11-07 19:13:19 +00:00
|
|
|
net/if_me.c optional me inet
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_media.c standard
|
|
|
|
net/if_mib.c standard
|
2008-05-26 10:40:09 +00:00
|
|
|
net/if_spppfr.c optional sppp | netgraph_sppp
|
|
|
|
net/if_spppsubr.c optional sppp | netgraph_sppp
|
2009-06-11 11:13:35 +00:00
|
|
|
net/if_stf.c optional stf inet inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
net/if_tun.c optional tun
|
|
|
|
net/if_tap.c optional tap
|
|
|
|
net/if_vlan.c optional vlan
|
2014-10-20 14:42:42 +00:00
|
|
|
net/if_vxlan.c optional vxlan inet | vxlan inet6
|
2007-05-22 12:00:31 +00:00
|
|
|
net/mppcc.c optional netgraph_mppc_compression
|
|
|
|
net/mppcd.c optional netgraph_mppc_compression
|
2005-01-04 06:07:25 +00:00
|
|
|
net/netisr.c standard
|
2005-11-27 21:41:58 +00:00
|
|
|
net/pfil.c optional ether | inet
|
2005-01-04 06:07:25 +00:00
|
|
|
net/radix.c standard
|
This patch provides the back end support for equal-cost multi-path
(ECMP) for both IPv4 and IPv6. Previously, multipath route insertion
is disallowed. For example,
route add -net 192.103.54.0/24 10.9.44.1
route add -net 192.103.54.0/24 10.9.44.2
The second route insertion will trigger an error message of
"add net 192.103.54.0/24: gateway 10.2.5.2: route already in table"
Multiple default routes can also be inserted. Here is the netstat
output:
default 10.2.5.1 UGS 0 3074 bge0 =>
default 10.2.5.2 UGS 0 0 bge0
When multipath routes exist, the "route delete" command requires
a specific gateway to be specified or else an error message would
be displayed. For example,
route delete default
would fail and trigger the following error message:
"route: writing to routing socket: No such process"
"delete net default: not in table"
On the other hand,
route delete default 10.2.5.2
would be successful: "delete net default: gateway 10.2.5.2"
One does not have to specify a gateway if there is only a single
route for a particular destination.
I need to perform more testings on address aliases and multiple
interfaces that have the same IP prefixes. This patch as it
stands today is not yet ready for prime time. Therefore, the ECMP
code fragments are fully guarded by the RADIX_MPATH macro.
Include the "options RADIX_MPATH" in the kernel configuration
to enable this feature.
Reviewed by: robert, sam, gnn, julian, kmacy
2008-04-13 05:45:14 +00:00
|
|
|
net/radix_mpath.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
net/raw_cb.c standard
|
|
|
|
net/raw_usrreq.c standard
|
|
|
|
net/route.c standard
|
2015-01-18 18:06:40 +00:00
|
|
|
net/rss_config.c optional inet rss | inet6 rss
|
2005-01-04 06:07:25 +00:00
|
|
|
net/rtsock.c standard
|
2009-03-15 14:21:05 +00:00
|
|
|
net/slcompress.c optional netgraph_vjc | sppp | \
|
2007-04-25 15:30:17 +00:00
|
|
|
netgraph_sppp
|
2015-01-18 18:06:40 +00:00
|
|
|
net/toeplitz.c optional inet rss | inet6 rss
|
Build on Jeff Roberson's linker-set based dynamic per-CPU allocator
(DPCPU), as suggested by Peter Wemm, and implement a new per-virtual
network stack memory allocator. Modify vnet to use the allocator
instead of monolithic global container structures (vinet, ...). This
change solves many binary compatibility problems associated with
VIMAGE, and restores ELF symbols for virtualized global variables.
Each virtualized global variable exists as a "reference copy", and also
once per virtual network stack. Virtualized global variables are
tagged at compile-time, placing the in a special linker set, which is
loaded into a contiguous region of kernel memory. Virtualized global
variables in the base kernel are linked as normal, but those in modules
are copied and relocated to a reserved portion of the kernel's vnet
region with the help of a the kernel linker.
Virtualized global variables exist in per-vnet memory set up when the
network stack instance is created, and are initialized statically from
the reference copy. Run-time access occurs via an accessor macro, which
converts from the current vnet and requested symbol to a per-vnet
address. When "options VIMAGE" is not compiled into the kernel, normal
global ELF symbols will be used instead and indirection is avoided.
This change restores static initialization for network stack global
variables, restores support for non-global symbols and types, eliminates
the need for many subsystem constructors, eliminates large per-subsystem
structures that caused many binary compatibility issues both for
monitoring applications (netstat) and kernel modules, removes the
per-function INIT_VNET_*() macros throughout the stack, eliminates the
need for vnet_symmap ksym(2) munging, and eliminates duplicate
definitions of virtualized globals under VIMAGE_GLOBALS.
Bump __FreeBSD_version and update UPDATING.
Portions submitted by: bz
Reviewed by: bz, zec
Discussed with: gnn, jamie, jeff, jhb, julian, sam
Suggested by: peter
Approved by: re (kensmith)
2009-07-14 22:48:30 +00:00
|
|
|
net/vnet.c optional vimage
|
2005-01-04 06:07:25 +00:00
|
|
|
net80211/ieee80211.c optional wlan
|
2009-03-24 17:10:42 +00:00
|
|
|
net80211/ieee80211_acl.c optional wlan wlan_acl
|
2009-07-05 17:59:19 +00:00
|
|
|
net80211/ieee80211_action.c optional wlan
|
2009-07-05 20:44:50 +00:00
|
|
|
net80211/ieee80211_ageq.c optional wlan
|
2014-02-14 20:11:06 +00:00
|
|
|
net80211/ieee80211_adhoc.c optional wlan \
|
|
|
|
compile-with "${NORMAL_C} -Wno-unused-function"
|
Implementation of the upcoming Wireless Mesh standard, 802.11s, on the
net80211 wireless stack. This work is based on the March 2009 D3.0 draft
standard. This standard is expected to become final next year.
This includes two main net80211 modules, ieee80211_mesh.c
which deals with peer link management, link metric calculation,
routing table control and mesh configuration and ieee80211_hwmp.c
which deals with the actually routing process on the mesh network.
HWMP is the mandatory routing protocol on by the mesh standard, but
others, such as RA-OLSR, can be implemented.
Authentication and encryption are not implemented.
There are several scripts under tools/tools/net80211/scripts that can be
used to test different mesh network topologies and they also teach you
how to setup a mesh vap (for the impatient: ifconfig wlan0 create
wlandev ... wlanmode mesh).
A new build option is available: IEEE80211_SUPPORT_MESH and it's enabled
by default on GENERIC kernels for i386, amd64, sparc64 and pc98.
Drivers that support mesh networks right now are: ath, ral and mwl.
More information at: http://wiki.freebsd.org/WifiMesh
Please note that this work is experimental. Also, please note that
bridging a mesh vap with another network interface is not yet supported.
Many thanks to the FreeBSD Foundation for sponsoring this project and to
Sam Leffler for his support.
Also, I would like to thank Gateworks Corporation for sending me a
Cambria board which was used during the development of this project.
Reviewed by: sam
Approved by: re (kensmith)
Obtained from: projects/mesh11s
2009-07-11 15:02:45 +00:00
|
|
|
net80211/ieee80211_ageq.c optional wlan
|
2010-04-09 16:19:30 +00:00
|
|
|
net80211/ieee80211_amrr.c optional wlan | wlan_amrr
|
2013-12-28 23:17:24 +00:00
|
|
|
net80211/ieee80211_crypto.c optional wlan \
|
|
|
|
compile-with "${NORMAL_C} -Wno-unused-function"
|
2009-03-24 17:10:42 +00:00
|
|
|
net80211/ieee80211_crypto_ccmp.c optional wlan wlan_ccmp
|
2005-01-04 06:07:25 +00:00
|
|
|
net80211/ieee80211_crypto_none.c optional wlan
|
2009-03-24 17:10:42 +00:00
|
|
|
net80211/ieee80211_crypto_tkip.c optional wlan wlan_tkip
|
|
|
|
net80211/ieee80211_crypto_wep.c optional wlan wlan_wep
|
2008-04-20 20:35:46 +00:00
|
|
|
net80211/ieee80211_ddb.c optional wlan ddb
|
|
|
|
net80211/ieee80211_dfs.c optional wlan
|
2004-12-08 17:39:51 +00:00
|
|
|
net80211/ieee80211_freebsd.c optional wlan
|
2014-02-14 20:11:06 +00:00
|
|
|
net80211/ieee80211_hostap.c optional wlan \
|
|
|
|
compile-with "${NORMAL_C} -Wno-unused-function"
|
Update 802.11 wireless support:
o major overhaul of the way channels are handled: channels are now
fully enumerated and uniquely identify the operating characteristics;
these changes are visible to user applications which require changes
o make scanning support independent of the state machine to enable
background scanning and roaming
o move scanning support into loadable modules based on the operating
mode to enable different policies and reduce the memory footprint
on systems w/ constrained resources
o add background scanning in station mode (no support for adhoc/ibss
mode yet)
o significantly speedup sta mode scanning with a variety of techniques
o add roaming support when background scanning is supported; for now
we use a simple algorithm to trigger a roam: we threshold the rssi
and tx rate, if either drops too low we try to roam to a new ap
o add tx fragmentation support
o add first cut at 802.11n support: this code works with forthcoming
drivers but is incomplete; it's included now to establish a baseline
for other drivers to be developed and for user applications
o adjust max_linkhdr et. al. to reflect 802.11 requirements; this eliminates
prepending mbufs for traffic generated locally
o add support for Atheros protocol extensions; mainly the fast frames
encapsulation (note this can be used with any card that can tx+rx
large frames correctly)
o add sta support for ap's that beacon both WPA1+2 support
o change all data types from bsd-style to posix-style
o propagate noise floor data from drivers to net80211 and on to user apps
o correct various issues in the sta mode state machine related to handling
authentication and association failures
o enable the addition of sta mode power save support for drivers that need
net80211 support (not in this commit)
o remove old WI compatibility ioctls (wicontrol is officially dead)
o change the data structures returned for get sta info and get scan
results so future additions will not break user apps
o fixed tx rate is now maintained internally as an ieee rate and not an
index into the rate set; this needs to be extended to deal with
multi-mode operation
o add extended channel specifications to radiotap to enable 11n sniffing
Drivers:
o ath: add support for bg scanning, tx fragmentation, fast frames,
dynamic turbo (lightly tested), 11n (sniffing only and needs
new hal)
o awi: compile tested only
o ndis: lightly tested
o ipw: lightly tested
o iwi: add support for bg scanning (well tested but may have some
rough edges)
o ral, ural, rum: add suppoort for bg scanning, calibrate rssi data
o wi: lightly tested
This work is based on contributions by Atheros, kmacy, sephe, thompsa,
mlaier, kevlo, and others. Much of the scanning work was supported by
Atheros. The 11n work was supported by Marvell.
2007-06-11 03:36:55 +00:00
|
|
|
net80211/ieee80211_ht.c optional wlan
|
Implementation of the upcoming Wireless Mesh standard, 802.11s, on the
net80211 wireless stack. This work is based on the March 2009 D3.0 draft
standard. This standard is expected to become final next year.
This includes two main net80211 modules, ieee80211_mesh.c
which deals with peer link management, link metric calculation,
routing table control and mesh configuration and ieee80211_hwmp.c
which deals with the actually routing process on the mesh network.
HWMP is the mandatory routing protocol on by the mesh standard, but
others, such as RA-OLSR, can be implemented.
Authentication and encryption are not implemented.
There are several scripts under tools/tools/net80211/scripts that can be
used to test different mesh network topologies and they also teach you
how to setup a mesh vap (for the impatient: ifconfig wlan0 create
wlandev ... wlanmode mesh).
A new build option is available: IEEE80211_SUPPORT_MESH and it's enabled
by default on GENERIC kernels for i386, amd64, sparc64 and pc98.
Drivers that support mesh networks right now are: ath, ral and mwl.
More information at: http://wiki.freebsd.org/WifiMesh
Please note that this work is experimental. Also, please note that
bridging a mesh vap with another network interface is not yet supported.
Many thanks to the FreeBSD Foundation for sponsoring this project and to
Sam Leffler for his support.
Also, I would like to thank Gateworks Corporation for sending me a
Cambria board which was used during the development of this project.
Reviewed by: sam
Approved by: re (kensmith)
Obtained from: projects/mesh11s
2009-07-11 15:02:45 +00:00
|
|
|
net80211/ieee80211_hwmp.c optional wlan ieee80211_support_mesh
|
2003-06-28 06:12:41 +00:00
|
|
|
net80211/ieee80211_input.c optional wlan
|
|
|
|
net80211/ieee80211_ioctl.c optional wlan
|
2013-12-28 23:17:24 +00:00
|
|
|
net80211/ieee80211_mesh.c optional wlan ieee80211_support_mesh \
|
|
|
|
compile-with "${NORMAL_C} -Wno-unused-function"
|
2008-04-20 20:35:46 +00:00
|
|
|
net80211/ieee80211_monitor.c optional wlan
|
2003-06-28 06:12:41 +00:00
|
|
|
net80211/ieee80211_node.c optional wlan
|
|
|
|
net80211/ieee80211_output.c optional wlan
|
2008-04-20 20:35:46 +00:00
|
|
|
net80211/ieee80211_phy.c optional wlan
|
Update 802.11 wireless support:
o major overhaul of the way channels are handled: channels are now
fully enumerated and uniquely identify the operating characteristics;
these changes are visible to user applications which require changes
o make scanning support independent of the state machine to enable
background scanning and roaming
o move scanning support into loadable modules based on the operating
mode to enable different policies and reduce the memory footprint
on systems w/ constrained resources
o add background scanning in station mode (no support for adhoc/ibss
mode yet)
o significantly speedup sta mode scanning with a variety of techniques
o add roaming support when background scanning is supported; for now
we use a simple algorithm to trigger a roam: we threshold the rssi
and tx rate, if either drops too low we try to roam to a new ap
o add tx fragmentation support
o add first cut at 802.11n support: this code works with forthcoming
drivers but is incomplete; it's included now to establish a baseline
for other drivers to be developed and for user applications
o adjust max_linkhdr et. al. to reflect 802.11 requirements; this eliminates
prepending mbufs for traffic generated locally
o add support for Atheros protocol extensions; mainly the fast frames
encapsulation (note this can be used with any card that can tx+rx
large frames correctly)
o add sta support for ap's that beacon both WPA1+2 support
o change all data types from bsd-style to posix-style
o propagate noise floor data from drivers to net80211 and on to user apps
o correct various issues in the sta mode state machine related to handling
authentication and association failures
o enable the addition of sta mode power save support for drivers that need
net80211 support (not in this commit)
o remove old WI compatibility ioctls (wicontrol is officially dead)
o change the data structures returned for get sta info and get scan
results so future additions will not break user apps
o fixed tx rate is now maintained internally as an ieee rate and not an
index into the rate set; this needs to be extended to deal with
multi-mode operation
o add extended channel specifications to radiotap to enable 11n sniffing
Drivers:
o ath: add support for bg scanning, tx fragmentation, fast frames,
dynamic turbo (lightly tested), 11n (sniffing only and needs
new hal)
o awi: compile tested only
o ndis: lightly tested
o ipw: lightly tested
o iwi: add support for bg scanning (well tested but may have some
rough edges)
o ral, ural, rum: add suppoort for bg scanning, calibrate rssi data
o wi: lightly tested
This work is based on contributions by Atheros, kmacy, sephe, thompsa,
mlaier, kevlo, and others. Much of the scanning work was supported by
Atheros. The 11n work was supported by Marvell.
2007-06-11 03:36:55 +00:00
|
|
|
net80211/ieee80211_power.c optional wlan
|
2003-06-28 06:12:41 +00:00
|
|
|
net80211/ieee80211_proto.c optional wlan
|
2009-05-20 20:00:40 +00:00
|
|
|
net80211/ieee80211_radiotap.c optional wlan
|
2010-04-07 15:29:13 +00:00
|
|
|
net80211/ieee80211_ratectl.c optional wlan
|
2010-10-19 18:49:26 +00:00
|
|
|
net80211/ieee80211_ratectl_none.c optional wlan
|
Update 802.11 wireless support:
o major overhaul of the way channels are handled: channels are now
fully enumerated and uniquely identify the operating characteristics;
these changes are visible to user applications which require changes
o make scanning support independent of the state machine to enable
background scanning and roaming
o move scanning support into loadable modules based on the operating
mode to enable different policies and reduce the memory footprint
on systems w/ constrained resources
o add background scanning in station mode (no support for adhoc/ibss
mode yet)
o significantly speedup sta mode scanning with a variety of techniques
o add roaming support when background scanning is supported; for now
we use a simple algorithm to trigger a roam: we threshold the rssi
and tx rate, if either drops too low we try to roam to a new ap
o add tx fragmentation support
o add first cut at 802.11n support: this code works with forthcoming
drivers but is incomplete; it's included now to establish a baseline
for other drivers to be developed and for user applications
o adjust max_linkhdr et. al. to reflect 802.11 requirements; this eliminates
prepending mbufs for traffic generated locally
o add support for Atheros protocol extensions; mainly the fast frames
encapsulation (note this can be used with any card that can tx+rx
large frames correctly)
o add sta support for ap's that beacon both WPA1+2 support
o change all data types from bsd-style to posix-style
o propagate noise floor data from drivers to net80211 and on to user apps
o correct various issues in the sta mode state machine related to handling
authentication and association failures
o enable the addition of sta mode power save support for drivers that need
net80211 support (not in this commit)
o remove old WI compatibility ioctls (wicontrol is officially dead)
o change the data structures returned for get sta info and get scan
results so future additions will not break user apps
o fixed tx rate is now maintained internally as an ieee rate and not an
index into the rate set; this needs to be extended to deal with
multi-mode operation
o add extended channel specifications to radiotap to enable 11n sniffing
Drivers:
o ath: add support for bg scanning, tx fragmentation, fast frames,
dynamic turbo (lightly tested), 11n (sniffing only and needs
new hal)
o awi: compile tested only
o ndis: lightly tested
o ipw: lightly tested
o iwi: add support for bg scanning (well tested but may have some
rough edges)
o ral, ural, rum: add suppoort for bg scanning, calibrate rssi data
o wi: lightly tested
This work is based on contributions by Atheros, kmacy, sephe, thompsa,
mlaier, kevlo, and others. Much of the scanning work was supported by
Atheros. The 11n work was supported by Marvell.
2007-06-11 03:36:55 +00:00
|
|
|
net80211/ieee80211_regdomain.c optional wlan
|
2009-03-24 17:10:42 +00:00
|
|
|
net80211/ieee80211_rssadapt.c optional wlan wlan_rssadapt
|
Update 802.11 wireless support:
o major overhaul of the way channels are handled: channels are now
fully enumerated and uniquely identify the operating characteristics;
these changes are visible to user applications which require changes
o make scanning support independent of the state machine to enable
background scanning and roaming
o move scanning support into loadable modules based on the operating
mode to enable different policies and reduce the memory footprint
on systems w/ constrained resources
o add background scanning in station mode (no support for adhoc/ibss
mode yet)
o significantly speedup sta mode scanning with a variety of techniques
o add roaming support when background scanning is supported; for now
we use a simple algorithm to trigger a roam: we threshold the rssi
and tx rate, if either drops too low we try to roam to a new ap
o add tx fragmentation support
o add first cut at 802.11n support: this code works with forthcoming
drivers but is incomplete; it's included now to establish a baseline
for other drivers to be developed and for user applications
o adjust max_linkhdr et. al. to reflect 802.11 requirements; this eliminates
prepending mbufs for traffic generated locally
o add support for Atheros protocol extensions; mainly the fast frames
encapsulation (note this can be used with any card that can tx+rx
large frames correctly)
o add sta support for ap's that beacon both WPA1+2 support
o change all data types from bsd-style to posix-style
o propagate noise floor data from drivers to net80211 and on to user apps
o correct various issues in the sta mode state machine related to handling
authentication and association failures
o enable the addition of sta mode power save support for drivers that need
net80211 support (not in this commit)
o remove old WI compatibility ioctls (wicontrol is officially dead)
o change the data structures returned for get sta info and get scan
results so future additions will not break user apps
o fixed tx rate is now maintained internally as an ieee rate and not an
index into the rate set; this needs to be extended to deal with
multi-mode operation
o add extended channel specifications to radiotap to enable 11n sniffing
Drivers:
o ath: add support for bg scanning, tx fragmentation, fast frames,
dynamic turbo (lightly tested), 11n (sniffing only and needs
new hal)
o awi: compile tested only
o ndis: lightly tested
o ipw: lightly tested
o iwi: add support for bg scanning (well tested but may have some
rough edges)
o ral, ural, rum: add suppoort for bg scanning, calibrate rssi data
o wi: lightly tested
This work is based on contributions by Atheros, kmacy, sephe, thompsa,
mlaier, kevlo, and others. Much of the scanning work was supported by
Atheros. The 11n work was supported by Marvell.
2007-06-11 03:36:55 +00:00
|
|
|
net80211/ieee80211_scan.c optional wlan
|
2008-04-20 20:35:46 +00:00
|
|
|
net80211/ieee80211_scan_sta.c optional wlan
|
2014-02-14 20:11:06 +00:00
|
|
|
net80211/ieee80211_sta.c optional wlan \
|
|
|
|
compile-with "${NORMAL_C} -Wno-unused-function"
|
2009-03-24 20:39:08 +00:00
|
|
|
net80211/ieee80211_superg.c optional wlan ieee80211_support_superg
|
2015-01-06 09:39:42 +00:00
|
|
|
net80211/ieee80211_scan_sw.c optional wlan
|
2009-03-24 17:22:10 +00:00
|
|
|
net80211/ieee80211_tdma.c optional wlan ieee80211_support_tdma
|
2008-04-20 20:35:46 +00:00
|
|
|
net80211/ieee80211_wds.c optional wlan
|
2009-03-24 17:10:42 +00:00
|
|
|
net80211/ieee80211_xauth.c optional wlan wlan_xauth
|
2011-04-21 03:59:37 +00:00
|
|
|
net80211/ieee80211_alq.c optional wlan ieee80211_alq
|
2005-09-11 01:28:05 +00:00
|
|
|
netgraph/atm/ccatm/ng_ccatm.c optional ngatm_ccatm \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
2005-01-10 05:11:40 +00:00
|
|
|
netgraph/atm/ng_atm.c optional ngatm_atm
|
2005-09-11 01:28:05 +00:00
|
|
|
netgraph/atm/ngatmbase.c optional ngatm_atmbase \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
netgraph/atm/sscfu/ng_sscfu.c optional ngatm_sscfu \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
netgraph/atm/sscop/ng_sscop.c optional ngatm_sscop \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
|
|
|
netgraph/atm/uni/ng_uni.c optional ngatm_uni \
|
|
|
|
compile-with "${NORMAL_C} -I$S/contrib/ngatm"
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/bluetooth/common/ng_bluetooth.c optional netgraph_bluetooth
|
|
|
|
netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c optional netgraph_bluetooth_bt3c
|
|
|
|
netgraph/bluetooth/drivers/h4/ng_h4.c optional netgraph_bluetooth_h4
|
2009-05-27 16:43:40 +00:00
|
|
|
netgraph/bluetooth/drivers/ubt/ng_ubt.c optional netgraph_bluetooth_ubt usb
|
|
|
|
netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c optional netgraph_bluetooth_ubtbcmfw usb
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/bluetooth/hci/ng_hci_cmds.c optional netgraph_bluetooth_hci
|
|
|
|
netgraph/bluetooth/hci/ng_hci_evnt.c optional netgraph_bluetooth_hci
|
|
|
|
netgraph/bluetooth/hci/ng_hci_main.c optional netgraph_bluetooth_hci
|
|
|
|
netgraph/bluetooth/hci/ng_hci_misc.c optional netgraph_bluetooth_hci
|
|
|
|
netgraph/bluetooth/hci/ng_hci_ulpi.c optional netgraph_bluetooth_hci
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_cmds.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_evnt.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_llpi.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_main.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_misc.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c optional netgraph_bluetooth_l2cap
|
|
|
|
netgraph/bluetooth/socket/ng_btsocket.c optional netgraph_bluetooth_socket
|
2004-04-23 19:48:43 +00:00
|
|
|
netgraph/bluetooth/socket/ng_btsocket_hci_raw.c optional netgraph_bluetooth_socket
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/bluetooth/socket/ng_btsocket_l2cap.c optional netgraph_bluetooth_socket
|
|
|
|
netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c optional netgraph_bluetooth_socket
|
|
|
|
netgraph/bluetooth/socket/ng_btsocket_rfcomm.c optional netgraph_bluetooth_socket
|
2008-07-31 03:51:53 +00:00
|
|
|
netgraph/bluetooth/socket/ng_btsocket_sco.c optional netgraph_bluetooth_socket
|
2005-01-10 05:11:40 +00:00
|
|
|
netgraph/netflow/netflow.c optional netgraph_netflow
|
2011-03-02 16:15:11 +00:00
|
|
|
netgraph/netflow/netflow_v9.c optional netgraph_netflow
|
2005-01-10 05:11:40 +00:00
|
|
|
netgraph/netflow/ng_netflow.c optional netgraph_netflow
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_UI.c optional netgraph_UI
|
|
|
|
netgraph/ng_async.c optional netgraph_async
|
|
|
|
netgraph/ng_atmllc.c optional netgraph_atmllc
|
|
|
|
netgraph/ng_base.c optional netgraph
|
|
|
|
netgraph/ng_bpf.c optional netgraph_bpf
|
|
|
|
netgraph/ng_bridge.c optional netgraph_bridge
|
2007-05-15 16:43:01 +00:00
|
|
|
netgraph/ng_car.c optional netgraph_car
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_cisco.c optional netgraph_cisco
|
2006-12-29 13:16:43 +00:00
|
|
|
netgraph/ng_deflate.c optional netgraph_deflate
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_device.c optional netgraph_device
|
|
|
|
netgraph/ng_echo.c optional netgraph_echo
|
|
|
|
netgraph/ng_eiface.c optional netgraph_eiface
|
|
|
|
netgraph/ng_ether.c optional netgraph_ether
|
2008-12-25 07:34:14 +00:00
|
|
|
netgraph/ng_ether_echo.c optional netgraph_ether_echo
|
1999-10-21 09:06:11 +00:00
|
|
|
netgraph/ng_frame_relay.c optional netgraph_frame_relay
|
2014-10-17 07:58:51 +00:00
|
|
|
netgraph/ng_gif.c optional netgraph_gif inet6 | netgraph_gif inet
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_gif_demux.c optional netgraph_gif_demux
|
|
|
|
netgraph/ng_hole.c optional netgraph_hole
|
|
|
|
netgraph/ng_iface.c optional netgraph_iface
|
|
|
|
netgraph/ng_ip_input.c optional netgraph_ip_input
|
2009-06-11 12:17:57 +00:00
|
|
|
netgraph/ng_ipfw.c optional netgraph_ipfw inet ipfirewall
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_ksocket.c optional netgraph_ksocket
|
|
|
|
netgraph/ng_l2tp.c optional netgraph_l2tp
|
2005-01-10 05:11:40 +00:00
|
|
|
netgraph/ng_lmi.c optional netgraph_lmi
|
2005-11-27 21:41:58 +00:00
|
|
|
netgraph/ng_mppc.c optional netgraph_mppc_compression | \
|
|
|
|
netgraph_mppc_encryption
|
2009-06-11 12:17:57 +00:00
|
|
|
netgraph/ng_nat.c optional netgraph_nat inet libalias
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_one2many.c optional netgraph_one2many
|
|
|
|
netgraph/ng_parse.c optional netgraph
|
New netgraph node ng_patch(4). It performs data modification of packets
passing through. Modifications are restricted to a subset of C language
operations on unsigned integers of 8, 16, 32 or 64 bit size.
These are: set to new value (=), addition (+=), subtraction (-=),
multiplication (*=), division (/=), negation (= -), bitwise AND (&=),
bitwise OR (|=), bitwise eXclusive OR (^=), shift left (<<=),
shift right (>>=). Several operations are all applied to a packet
sequentially in order they were specified by user.
Submitted by: Maxim Ignatenko <gelraen.ua at gmail.com>
Vadim Goncharov <vadimnuclight at tpu.ru>
Discussed with: net@
Approved by: mav (mentor)
MFC after: 1 month
2010-06-09 12:25:57 +00:00
|
|
|
netgraph/ng_patch.c optional netgraph_patch
|
2009-06-23 06:11:04 +00:00
|
|
|
netgraph/ng_pipe.c optional netgraph_pipe
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_ppp.c optional netgraph_ppp
|
|
|
|
netgraph/ng_pppoe.c optional netgraph_pppoe
|
|
|
|
netgraph/ng_pptpgre.c optional netgraph_pptpgre
|
2006-12-29 13:16:43 +00:00
|
|
|
netgraph/ng_pred1.c optional netgraph_pred1
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_rfc1490.c optional netgraph_rfc1490
|
|
|
|
netgraph/ng_socket.c optional netgraph_socket
|
|
|
|
netgraph/ng_split.c optional netgraph_split
|
|
|
|
netgraph/ng_sppp.c optional netgraph_sppp
|
2006-06-27 12:45:28 +00:00
|
|
|
netgraph/ng_tag.c optional netgraph_tag
|
2005-06-10 08:05:13 +00:00
|
|
|
netgraph/ng_tcpmss.c optional netgraph_tcpmss
|
2005-01-04 06:07:25 +00:00
|
|
|
netgraph/ng_tee.c optional netgraph_tee
|
|
|
|
netgraph/ng_tty.c optional netgraph_tty
|
|
|
|
netgraph/ng_vjc.c optional netgraph_vjc
|
2009-11-11 11:07:30 +00:00
|
|
|
netgraph/ng_vlan.c optional netgraph_vlan
|
2009-06-11 12:21:41 +00:00
|
|
|
netinet/accf_data.c optional accept_filter_data inet
|
|
|
|
netinet/accf_dns.c optional accept_filter_dns inet
|
|
|
|
netinet/accf_http.c optional accept_filter_http inet
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/if_atm.c optional atm
|
2009-06-11 12:01:14 +00:00
|
|
|
netinet/if_ether.c optional inet ether
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/igmp.c optional inet
|
|
|
|
netinet/in.c optional inet
|
2010-10-24 22:02:36 +00:00
|
|
|
netinet/in_debug.c optional inet ddb
|
2013-08-25 21:54:41 +00:00
|
|
|
netinet/in_kdtrace.c optional inet | inet6
|
2009-06-11 10:26:38 +00:00
|
|
|
netinet/ip_carp.c optional inet carp | inet6 carp
|
Merge helper fib* functions used for basic lookups.
Vast majority of rtalloc(9) users require only basic info from
route table (e.g. "does the rtentry interface match with the interface
I have?". "what is the MTU?", "Give me the IPv4 source address to use",
etc..).
Instead of hand-rolling lookups, checking if rtentry is up, valid,
dealing with IPv6 mtu, finding "address" ifp (almost never done right),
provide easy-to-use API hiding all the complexity and returning the
needed info into small on-stack structure.
This change also helps hiding route subsystem internals (locking, direct
rtentry accesses).
Additionaly, using this API improves lookup performance since rtentry is not
locked.
(This is safe, since all the rtentry changes happens under both radix WLOCK
and rtentry WLOCK).
Sponsored by: Yandex LLC
2015-12-08 10:50:03 +00:00
|
|
|
netinet/in_fib.c optional inet
|
2010-03-31 20:15:20 +00:00
|
|
|
netinet/in_gif.c optional gif inet | netgraph_gif inet
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/ip_gre.c optional gre inet
|
|
|
|
netinet/ip_id.c optional inet
|
Import rewrite of IPv4 socket multicast layer to support source-specific
and protocol-independent host mode multicast. The code is written to
accomodate IPv6, IGMPv3 and MLDv2 with only a little additional work.
This change only pertains to FreeBSD's use as a multicast end-station and
does not concern multicast routing; for an IGMPv3/MLDv2 router
implementation, consider the XORP project.
The work is based on Wilbert de Graaf's IGMPv3 code drop for FreeBSD 4.6,
which is available at: http://www.kloosterhof.com/wilbert/igmpv3.html
Summary
* IPv4 multicast socket processing is now moved out of ip_output.c
into a new module, in_mcast.c.
* The in_mcast.c module implements the IPv4 legacy any-source API in
terms of the protocol-independent source-specific API.
* Source filters are lazy allocated as the common case does not use them.
They are part of per inpcb state and are covered by the inpcb lock.
* struct ip_mreqn is now supported to allow applications to specify
multicast joins by interface index in the legacy IPv4 any-source API.
* In UDP, an incoming multicast datagram only requires that the source
port matches the 4-tuple if the socket was already bound by source port.
An unbound socket SHOULD be able to receive multicasts sent from an
ephemeral source port.
* The UDP socket multicast filter mode defaults to exclusive, that is,
sources present in the per-socket list will be blocked from delivery.
* The RFC 3678 userland functions have been added to libc: setsourcefilter,
getsourcefilter, setipv4sourcefilter, getipv4sourcefilter.
* Definitions for IGMPv3 are merged but not yet used.
* struct sockaddr_storage is now referenced from <netinet/in.h>. It
is therefore defined there if not already declared in the same way
as for the C99 types.
* The RFC 1724 hack (specify 0.0.0.0/8 addresses to IP_MULTICAST_IF
which are then interpreted as interface indexes) is now deprecated.
* A patch for the Rhyolite.com routed in the FreeBSD base system
is available in the -net archives. This only affects individuals
running RIPv1 or RIPv2 via point-to-point and/or unnumbered interfaces.
* Make IPv6 detach path similar to IPv4's in code flow; functionally same.
* Bump __FreeBSD_version to 700048; see UPDATING.
This work was financially supported by another FreeBSD committer.
Obtained from: p4://bms_netdev
Submitted by: Wilbert de Graaf (original work)
Reviewed by: rwatson (locking), silence from fenner,
net@ (but with encouragement)
2007-06-12 16:24:56 +00:00
|
|
|
netinet/in_mcast.c optional inet
|
2011-03-12 21:50:48 +00:00
|
|
|
netinet/in_pcb.c optional inet | inet6
|
Implement a CPU-affine TCP and UDP connection lookup data structure,
struct inpcbgroup. pcbgroups, or "connection groups", supplement the
existing inpcbinfo connection hash table, which when pcbgroups are
enabled, might now be thought of more usefully as a per-protocol
4-tuple reservation table.
Connections are assigned to connection groups base on a hash of their
4-tuple; wildcard sockets require special handling, and are members
of all connection groups. During a connection lookup, a
per-connection group lock is employed rather than the global pcbinfo
lock. By aligning connection groups with input path processing,
connection groups take on an effective CPU affinity, especially when
aligned with RSS work placement (see a forthcoming commit for
details). This eliminates cache line migration associated with
global, protocol-layer data structures in steady state TCP and UDP
processing (with the exception of protocol-layer statistics; further
commit to follow).
Elements of this approach were inspired by Willman, Rixner, and Cox's
2006 USENIX paper, "An Evaluation of Network Stack Parallelization
Strategies in Modern Operating Systems". However, there are also
significant differences: we maintain the inpcb lock, rather than using
the connection group lock for per-connection state.
Likewise, the focus of this implementation is alignment with NIC
packet distribution strategies such as RSS, rather than pure software
strategies. Despite that focus, software distribution is supported
through the parallel netisr implementation, and works well in
configurations where the number of hardware threads is greater than
the number of NIC input queues, such as in the RMI XLR threaded MIPS
architecture.
Another important difference is the continued maintenance of existing
hash tables as "reservation tables" -- these are useful both to
distinguish the resource allocation aspect of protocol name management
and the more common-case lookup aspect. In configurations where
connection tables are aligned with hardware hashes, it is desirable to
use the traditional lookup tables for loopback or encapsulated traffic
rather than take the expense of hardware hashes that are hard to
implement efficiently in software (such as RSS Toeplitz).
Connection group support is enabled by compiling "options PCBGROUP"
into your kernel configuration; for the time being, this is an
experimental feature, and hence is not enabled by default.
Subject to the limited MFCability of change dependencies in inpcb,
and its change to the inpcbinfo init function signature, this change
in principle could be merged to FreeBSD 8.x.
Reviewed by: bz
Sponsored by: Juniper Networks, Inc.
2011-06-06 12:55:02 +00:00
|
|
|
netinet/in_pcbgroup.c optional inet pcbgroup | inet6 pcbgroup
|
2012-09-14 11:51:49 +00:00
|
|
|
netinet/in_proto.c optional inet | inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/in_rmx.c optional inet
|
2015-01-18 18:06:40 +00:00
|
|
|
netinet/in_rss.c optional inet rss
|
2009-06-10 20:57:06 +00:00
|
|
|
netinet/ip_divert.c optional inet ipdivert ipfirewall
|
2005-11-27 21:41:58 +00:00
|
|
|
netinet/ip_ecn.c optional inet | inet6
|
|
|
|
netinet/ip_encap.c optional inet | inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/ip_fastfwd.c optional inet
|
2011-04-27 19:36:35 +00:00
|
|
|
netinet/ip_icmp.c optional inet | inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/ip_input.c optional inet
|
2009-06-10 20:44:13 +00:00
|
|
|
netinet/ip_ipsec.c optional inet ipsec
|
2011-04-30 12:07:31 +00:00
|
|
|
netinet/ip_mroute.c optional mrouting inet
|
2005-11-18 20:12:40 +00:00
|
|
|
netinet/ip_options.c optional inet
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/ip_output.c optional inet
|
2015-04-10 06:02:37 +00:00
|
|
|
netinet/ip_reass.c optional inet
|
2011-04-30 12:07:31 +00:00
|
|
|
netinet/raw_ip.c optional inet | inet6
|
2011-04-30 11:21:29 +00:00
|
|
|
netinet/cc/cc.c optional inet | inet6
|
|
|
|
netinet/cc/cc_newreno.c optional inet | inet6
|
2011-04-30 12:39:47 +00:00
|
|
|
netinet/sctp_asconf.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_auth.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_bsd_addr.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_cc_functions.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_crc32.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_indata.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_input.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_output.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_pcb.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_peeloff.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_ss_functions.c optional inet sctp | inet6 sctp
|
2014-10-09 15:16:52 +00:00
|
|
|
netinet/sctp_syscalls.c optional inet sctp | inet6 sctp
|
2011-04-30 12:39:47 +00:00
|
|
|
netinet/sctp_sysctl.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_timer.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctp_usrreq.c optional inet sctp | inet6 sctp
|
|
|
|
netinet/sctputil.c optional inet sctp | inet6 sctp
|
2015-04-29 12:37:45 +00:00
|
|
|
netinet/siftr.c optional inet siftr alq | inet6 siftr alq
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet/tcp_debug.c optional tcpdebug
|
2015-12-24 19:09:48 +00:00
|
|
|
netinet/tcp_fastopen.c optional inet tcp_rfc7413 | inet6 tcp_rfc7413
|
2011-04-30 11:21:29 +00:00
|
|
|
netinet/tcp_hostcache.c optional inet | inet6
|
|
|
|
netinet/tcp_input.c optional inet | inet6
|
|
|
|
netinet/tcp_lro.c optional inet | inet6
|
|
|
|
netinet/tcp_output.c optional inet | inet6
|
2012-06-19 07:34:13 +00:00
|
|
|
netinet/tcp_offload.c optional tcp_offload inet | tcp_offload inet6
|
2015-10-14 18:32:06 +00:00
|
|
|
netinet/tcp_pcap.c optional inet tcppcap | inet6 tcppcap
|
2011-04-30 11:21:29 +00:00
|
|
|
netinet/tcp_reass.c optional inet | inet6
|
|
|
|
netinet/tcp_sack.c optional inet | inet6
|
|
|
|
netinet/tcp_subr.c optional inet | inet6
|
|
|
|
netinet/tcp_syncache.c optional inet | inet6
|
|
|
|
netinet/tcp_timer.c optional inet | inet6
|
|
|
|
netinet/tcp_timewait.c optional inet | inet6
|
|
|
|
netinet/tcp_usrreq.c optional inet | inet6
|
2011-04-30 11:17:00 +00:00
|
|
|
netinet/udp_usrreq.c optional inet | inet6
|
2009-06-11 12:17:57 +00:00
|
|
|
netinet/libalias/alias.c optional libalias inet | netgraph_nat inet
|
|
|
|
netinet/libalias/alias_db.c optional libalias inet | netgraph_nat inet
|
2007-04-25 15:30:17 +00:00
|
|
|
netinet/libalias/alias_mod.c optional libalias | netgraph_nat
|
2009-06-11 12:17:57 +00:00
|
|
|
netinet/libalias/alias_proxy.c optional libalias inet | netgraph_nat inet
|
|
|
|
netinet/libalias/alias_util.c optional libalias inet | netgraph_nat inet
|
|
|
|
netinet/libalias/alias_sctp.c optional libalias inet | netgraph_nat inet
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/dest6.c optional inet6
|
|
|
|
netinet6/frag6.c optional inet6
|
|
|
|
netinet6/icmp6.c optional inet6
|
|
|
|
netinet6/in6.c optional inet6
|
|
|
|
netinet6/in6_cksum.c optional inet6
|
Merge helper fib* functions used for basic lookups.
Vast majority of rtalloc(9) users require only basic info from
route table (e.g. "does the rtentry interface match with the interface
I have?". "what is the MTU?", "Give me the IPv4 source address to use",
etc..).
Instead of hand-rolling lookups, checking if rtentry is up, valid,
dealing with IPv6 mtu, finding "address" ifp (almost never done right),
provide easy-to-use API hiding all the complexity and returning the
needed info into small on-stack structure.
This change also helps hiding route subsystem internals (locking, direct
rtentry accesses).
Additionaly, using this API improves lookup performance since rtentry is not
locked.
(This is safe, since all the rtentry changes happens under both radix WLOCK
and rtentry WLOCK).
Sponsored by: Yandex LLC
2015-12-08 10:50:03 +00:00
|
|
|
netinet6/in6_fib.c optional inet6
|
2010-03-31 20:15:20 +00:00
|
|
|
netinet6/in6_gif.c optional gif inet6 | netgraph_gif inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/in6_ifattach.c optional inet6
|
Bite the bullet, and make the IPv6 SSM and MLDv2 mega-commit:
import from p4 bms_netdev. Summary of changes:
* Connect netinet6/in6_mcast.c to build.
The legacy KAME KPIs are mostly preserved.
* Eliminate now dead code from ip6_output.c.
Don't do mbuf bingo, we are not going to do RFC 2292 style
CMSG tricks for multicast options as they are not required
by any current IPv6 normative reference.
* Refactor transports (UDP, raw_ip6) to do own mcast filtering.
SCTP, TCP unaffected by this change.
* Add ip6_msource, in6_msource structs to in6_var.h.
* Hookup mld_ifinfo state to in6_ifextra, allocate from
domifattach path.
* Eliminate IN6_LOOKUP_MULTI(), it is no longer referenced.
Kernel consumers which need this should use in6m_lookup().
* Refactor IPv6 socket group memberships to use a vector (like IPv4).
* Update ifmcstat(8) for IPv6 SSM.
* Add witness lock order for IN6_MULTI_LOCK.
* Move IN6_MULTI_LOCK out of lower ip6_output()/ip6_input() paths.
* Introduce IP6STAT_ADD/SUB/INC/DEC as per rwatson's IPv4 cleanup.
* Update carp(4) for new IPv6 SSM KPIs.
* Virtualize ip6_mrouter socket.
Changes mostly localized to IPv6 MROUTING.
* Don't do a local group lookup in MROUTING.
* Kill unused KAME prototypes in6_purgemkludge(), in6_restoremkludge().
* Preserve KAME DAD timer jitter behaviour in MLDv1 compatibility mode.
* Bump __FreeBSD_version to 800084.
* Update UPDATING.
NOTE WELL:
* This code hasn't been tested against real MLDv2 queriers
(yet), although the on-wire protocol has been verified in Wireshark.
* There are a few unresolved issues in the socket layer APIs to
do with scope ID propagation.
* There is a LOR present in ip6_output()'s use of
in6_setscope() which needs to be resolved. See comments in mld6.c.
This is believed to be benign and can't be avoided for the moment
without re-introducing an indirect netisr.
This work was mostly derived from the IGMPv3 implementation, and
has been sponsored by a third party.
2009-04-29 19:19:13 +00:00
|
|
|
netinet6/in6_mcast.c optional inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/in6_pcb.c optional inet6
|
Implement a CPU-affine TCP and UDP connection lookup data structure,
struct inpcbgroup. pcbgroups, or "connection groups", supplement the
existing inpcbinfo connection hash table, which when pcbgroups are
enabled, might now be thought of more usefully as a per-protocol
4-tuple reservation table.
Connections are assigned to connection groups base on a hash of their
4-tuple; wildcard sockets require special handling, and are members
of all connection groups. During a connection lookup, a
per-connection group lock is employed rather than the global pcbinfo
lock. By aligning connection groups with input path processing,
connection groups take on an effective CPU affinity, especially when
aligned with RSS work placement (see a forthcoming commit for
details). This eliminates cache line migration associated with
global, protocol-layer data structures in steady state TCP and UDP
processing (with the exception of protocol-layer statistics; further
commit to follow).
Elements of this approach were inspired by Willman, Rixner, and Cox's
2006 USENIX paper, "An Evaluation of Network Stack Parallelization
Strategies in Modern Operating Systems". However, there are also
significant differences: we maintain the inpcb lock, rather than using
the connection group lock for per-connection state.
Likewise, the focus of this implementation is alignment with NIC
packet distribution strategies such as RSS, rather than pure software
strategies. Despite that focus, software distribution is supported
through the parallel netisr implementation, and works well in
configurations where the number of hardware threads is greater than
the number of NIC input queues, such as in the RMI XLR threaded MIPS
architecture.
Another important difference is the continued maintenance of existing
hash tables as "reservation tables" -- these are useful both to
distinguish the resource allocation aspect of protocol name management
and the more common-case lookup aspect. In configurations where
connection tables are aligned with hardware hashes, it is desirable to
use the traditional lookup tables for loopback or encapsulated traffic
rather than take the expense of hardware hashes that are hard to
implement efficiently in software (such as RSS Toeplitz).
Connection group support is enabled by compiling "options PCBGROUP"
into your kernel configuration; for the time being, this is an
experimental feature, and hence is not enabled by default.
Subject to the limited MFCability of change dependencies in inpcb,
and its change to the inpcbinfo init function signature, this change
in principle could be merged to FreeBSD 8.x.
Reviewed by: bz
Sponsored by: Juniper Networks, Inc.
2011-06-06 12:55:02 +00:00
|
|
|
netinet6/in6_pcbgroup.c optional inet6 pcbgroup
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/in6_proto.c optional inet6
|
|
|
|
netinet6/in6_rmx.c optional inet6
|
2015-01-18 18:06:40 +00:00
|
|
|
netinet6/in6_rss.c optional inet6 rss
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/in6_src.c optional inet6
|
|
|
|
netinet6/ip6_forward.c optional inet6
|
2014-11-07 19:13:19 +00:00
|
|
|
netinet6/ip6_gre.c optional gre inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/ip6_id.c optional inet6
|
|
|
|
netinet6/ip6_input.c optional inet6
|
2007-02-24 11:38:47 +00:00
|
|
|
netinet6/ip6_mroute.c optional mrouting inet6
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/ip6_output.c optional inet6
|
2007-07-04 03:44:57 +00:00
|
|
|
netinet6/ip6_ipsec.c optional inet6 ipsec
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/mld6.c optional inet6
|
|
|
|
netinet6/nd6.c optional inet6
|
|
|
|
netinet6/nd6_nbr.c optional inet6
|
|
|
|
netinet6/nd6_rtr.c optional inet6
|
|
|
|
netinet6/raw_ip6.c optional inet6
|
|
|
|
netinet6/route6.c optional inet6
|
|
|
|
netinet6/scope6.c optional inet6
|
2006-11-03 21:09:03 +00:00
|
|
|
netinet6/sctp6_usrreq.c optional inet6 sctp
|
2005-01-04 06:07:25 +00:00
|
|
|
netinet6/udp6_usrreq.c optional inet6
|
2009-06-10 20:44:13 +00:00
|
|
|
netipsec/ipsec.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/ipsec_input.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/ipsec_mbuf.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/ipsec_output.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/key.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/key_debug.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/keysock.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/xform_ah.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/xform_esp.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/xform_ipcomp.c optional ipsec inet | ipsec inet6
|
|
|
|
netipsec/xform_tcp.c optional ipsec inet tcp_signature | \
|
|
|
|
ipsec inet6 tcp_signature
|
2005-01-04 06:07:25 +00:00
|
|
|
netnatm/natm.c optional natm
|
|
|
|
netnatm/natm_pcb.c optional natm
|
|
|
|
netnatm/natm_proto.c optional natm
|
2012-09-14 11:51:49 +00:00
|
|
|
netpfil/ipfw/dn_heap.c optional inet dummynet
|
|
|
|
netpfil/ipfw/dn_sched_fifo.c optional inet dummynet
|
|
|
|
netpfil/ipfw/dn_sched_prio.c optional inet dummynet
|
2012-11-13 06:07:13 +00:00
|
|
|
netpfil/ipfw/dn_sched_qfq.c optional inet dummynet
|
2012-09-14 11:51:49 +00:00
|
|
|
netpfil/ipfw/dn_sched_rr.c optional inet dummynet
|
2012-11-13 06:07:13 +00:00
|
|
|
netpfil/ipfw/dn_sched_wf2q.c optional inet dummynet
|
2012-09-14 11:51:49 +00:00
|
|
|
netpfil/ipfw/ip_dummynet.c optional inet dummynet
|
|
|
|
netpfil/ipfw/ip_dn_io.c optional inet dummynet
|
|
|
|
netpfil/ipfw/ip_dn_glue.c optional inet dummynet
|
|
|
|
netpfil/ipfw/ip_fw2.c optional inet ipfirewall
|
|
|
|
netpfil/ipfw/ip_fw_dynamic.c optional inet ipfirewall
|
2016-04-14 22:51:23 +00:00
|
|
|
netpfil/ipfw/ip_fw_eaction.c optional inet ipfirewall
|
2012-09-14 11:51:49 +00:00
|
|
|
netpfil/ipfw/ip_fw_log.c optional inet ipfirewall
|
|
|
|
netpfil/ipfw/ip_fw_pfil.c optional inet ipfirewall
|
|
|
|
netpfil/ipfw/ip_fw_sockopt.c optional inet ipfirewall
|
|
|
|
netpfil/ipfw/ip_fw_table.c optional inet ipfirewall
|
2014-06-14 10:58:39 +00:00
|
|
|
netpfil/ipfw/ip_fw_table_algo.c optional inet ipfirewall
|
Add support for multi-field values inside ipfw tables.
This is the last major change in given branch.
Kernel changes:
* Use 64-bytes structures to hold multi-value variables.
* Use shared array to hold values from all tables (assume
each table algo is capable of holding 32-byte variables).
* Add some placeholders to support per-table value arrays in future.
* Use simple eventhandler-style API to ease the process of adding new
table items. Currently table addition may required multiple UH drops/
acquires which is quite tricky due to atomic table modificatio/swap
support, shared array resize, etc. Deal with it by calling special
notifier capable of rolling back state before actually performing
swap/resize operations. Original operation then restarts itself after
acquiring UH lock.
* Bump all objhash users default values to at least 64
* Fix custom hashing inside objhash.
Userland changes:
* Add support for dumping shared value array via "vlist" internal cmd.
* Some small print/fill_flags dixes to support u32 values.
* valtype is now bitmask of
<skipto|pipe|fib|nat|dscp|tag|divert|netgraph|limit|ipv4|ipv6>.
New values can hold distinct values for each of this types.
* Provide special "legacy" type which assumes all values are the same.
* More helpers/docs following..
Some examples:
3:41 [1] zfscurr0# ipfw table mimimi create valtype skipto,limit,ipv4,ipv6
3:41 [1] zfscurr0# ipfw table mimimi info
+++ table(mimimi), set(0) +++
kindex: 2, type: addr
references: 0, valtype: skipto,limit,ipv4,ipv6
algorithm: addr:radix
items: 0, size: 296
3:42 [1] zfscurr0# ipfw table mimimi add 10.0.0.5 3000,10,10.0.0.1,2a02:978:2::1
added: 10.0.0.5/32 3000,10,10.0.0.1,2a02:978:2::1
3:42 [1] zfscurr0# ipfw table mimimi list
+++ table(mimimi), set(0) +++
10.0.0.5/32 3000,0,10.0.0.1,2a02:978:2::1
2014-08-31 23:51:09 +00:00
|
|
|
netpfil/ipfw/ip_fw_table_value.c optional inet ipfirewall
|
2014-07-28 19:01:25 +00:00
|
|
|
netpfil/ipfw/ip_fw_iface.c optional inet ipfirewall
|
2012-09-14 11:51:49 +00:00
|
|
|
netpfil/ipfw/ip_fw_nat.c optional inet ipfirewall_nat
|
|
|
|
netpfil/pf/if_pflog.c optional pflog pf inet
|
|
|
|
netpfil/pf/if_pfsync.c optional pfsync pf inet
|
|
|
|
netpfil/pf/pf.c optional pf inet
|
|
|
|
netpfil/pf/pf_if.c optional pf inet
|
|
|
|
netpfil/pf/pf_ioctl.c optional pf inet
|
|
|
|
netpfil/pf/pf_lb.c optional pf inet
|
|
|
|
netpfil/pf/pf_norm.c optional pf inet
|
|
|
|
netpfil/pf/pf_osfp.c optional pf inet
|
|
|
|
netpfil/pf/pf_ruleset.c optional pf inet
|
|
|
|
netpfil/pf/pf_table.c optional pf inet
|
|
|
|
netpfil/pf/in4_cksum.c optional pf inet
|
2013-06-28 21:00:08 +00:00
|
|
|
netsmb/smb_conn.c optional netsmb
|
|
|
|
netsmb/smb_crypt.c optional netsmb
|
|
|
|
netsmb/smb_dev.c optional netsmb
|
|
|
|
netsmb/smb_iod.c optional netsmb
|
|
|
|
netsmb/smb_rq.c optional netsmb
|
|
|
|
netsmb/smb_smb.c optional netsmb
|
|
|
|
netsmb/smb_subr.c optional netsmb
|
|
|
|
netsmb/smb_trantcp.c optional netsmb
|
|
|
|
netsmb/smb_usr.c optional netsmb
|
2014-12-23 00:47:46 +00:00
|
|
|
nfs/bootp_subr.c optional bootp nfscl
|
|
|
|
nfs/krpc_subr.c optional bootp nfscl
|
|
|
|
nfs/nfs_diskless.c optional nfscl nfs_root
|
|
|
|
nfs/nfs_fha.c optional nfsd
|
|
|
|
nfs/nfs_lock.c optional nfscl | nfslockd | nfsd
|
|
|
|
nfs/nfs_nfssvc.c optional nfscl | nfsd
|
2011-01-03 20:37:31 +00:00
|
|
|
nlm/nlm_advlock.c optional nfslockd | nfsd
|
2009-05-28 19:45:11 +00:00
|
|
|
nlm/nlm_prot_clnt.c optional nfslockd | nfsd
|
|
|
|
nlm/nlm_prot_impl.c optional nfslockd | nfsd
|
|
|
|
nlm/nlm_prot_server.c optional nfslockd | nfsd
|
|
|
|
nlm/nlm_prot_svc.c optional nfslockd | nfsd
|
|
|
|
nlm/nlm_prot_xdr.c optional nfslockd | nfsd
|
|
|
|
nlm/sm_inter_xdr.c optional nfslockd | nfsd
|
2011-03-21 09:40:01 +00:00
|
|
|
|
2015-10-29 08:28:39 +00:00
|
|
|
# Linux Kernel Programming Interface
|
|
|
|
compat/linuxkpi/common/src/linux_kmod.c optional compat_linuxkpi \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
compat/linuxkpi/common/src/linux_compat.c optional compat_linuxkpi \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
compat/linuxkpi/common/src/linux_pci.c optional compat_linuxkpi pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
compat/linuxkpi/common/src/linux_idr.c optional compat_linuxkpi \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
compat/linuxkpi/common/src/linux_radix.c optional compat_linuxkpi \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
compat/linuxkpi/common/src/linux_usb.c optional compat_linuxkpi usb \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${LINUXKPI_C}"
|
2015-10-29 08:28:39 +00:00
|
|
|
|
2011-03-21 09:40:01 +00:00
|
|
|
# OpenFabrics Enterprise Distribution (Infiniband)
|
|
|
|
ofed/drivers/infiniband/core/addr.c optional ofed \
|
2012-11-13 06:07:13 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/core/agent.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/cache.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
# XXX Mad.c must be ordered before cm.c for sysinit sets to occur in
|
|
|
|
# the correct order.
|
|
|
|
ofed/drivers/infiniband/core/mad.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/cm.c optional ofed \
|
2013-12-30 20:58:06 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/ -Wno-unused-function"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/core/cma.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/device.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/fmr_pool.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/iwcm.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/mad_rmpp.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/multicast.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
2015-02-17 08:40:27 +00:00
|
|
|
ofed/drivers/infiniband/core/packer.c optional ofed \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
2015-02-17 08:40:27 +00:00
|
|
|
ofed/drivers/infiniband/core/peer_mem.c optional ofed \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/sa_query.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/smi.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/sysfs.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/ucm.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/ucma.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/ud_header.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/umem.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/user_mad.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/uverbs_cmd.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/uverbs_main.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/uverbs_marshall.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
ofed/drivers/infiniband/core/verbs.c optional ofed \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/core/"
|
|
|
|
|
|
|
|
ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c optional ipoib \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
#ofed/drivers/infiniband/ulp/ipoib/ipoib_fs.c optional ipoib \
|
|
|
|
# compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c optional ipoib \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c optional ipoib \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c optional ipoib \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c optional ipoib \
|
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
#ofed/drivers/infiniband/ulp/ipoib/ipoib_vlan.c optional ipoib \
|
|
|
|
# compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
|
|
|
|
|
2012-04-12 14:01:06 +00:00
|
|
|
ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c optional sdp inet \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/sdp/"
|
2012-04-12 14:01:06 +00:00
|
|
|
ofed/drivers/infiniband/ulp/sdp/sdp_main.c optional sdp inet \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/sdp/"
|
2012-04-12 14:01:06 +00:00
|
|
|
ofed/drivers/infiniband/ulp/sdp/sdp_rx.c optional sdp inet \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/sdp/"
|
2012-04-12 14:01:06 +00:00
|
|
|
ofed/drivers/infiniband/ulp/sdp/sdp_cma.c optional sdp inet \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/sdp/"
|
2012-04-12 14:01:06 +00:00
|
|
|
ofed/drivers/infiniband/ulp/sdp/sdp_tx.c optional sdp inet \
|
2011-03-21 09:40:01 +00:00
|
|
|
compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/sdp/"
|
|
|
|
|
2013-09-29 00:35:03 +00:00
|
|
|
ofed/drivers/infiniband/hw/mlx4/alias_GUID.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/mcg.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
2014-02-14 21:06:12 +00:00
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
2013-09-29 00:35:03 +00:00
|
|
|
ofed/drivers/infiniband/hw/mlx4/sysfs.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/cm.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mlx4/ah.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/cq.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/doorbell.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/mad.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/main.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
2015-02-17 08:40:27 +00:00
|
|
|
ofed/drivers/infiniband/hw/mlx4/mlx4_exp.c optional mlx4ib \
|
2015-02-17 10:00:15 +00:00
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
2015-02-17 08:40:27 +00:00
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mlx4/mr.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/qp.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/srq.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
ofed/drivers/infiniband/hw/mlx4/wc.c optional mlx4ib \
|
|
|
|
no-depend obj-prefix "mlx4ib_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/infiniband/hw/mlx4/"
|
|
|
|
|
|
|
|
ofed/drivers/net/mlx4/alloc.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/catas.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/cmd.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/cq.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/eq.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/fw.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/icm.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/intf.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/main.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/mcg.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
2014-02-14 21:06:12 +00:00
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/ -Wno-unused"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/net/mlx4/mr.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/pd.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/port.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/profile.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/qp.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/reset.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/sense.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/srq.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
2013-09-29 00:35:03 +00:00
|
|
|
ofed/drivers/net/mlx4/resource_tracker.c optional mlx4ib | mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/sys_tune.c optional mlx4ib | mlxen \
|
2011-03-21 09:40:01 +00:00
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
|
|
|
|
ofed/drivers/net/mlx4/en_cq.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_main.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_netdev.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_port.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_resources.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_rx.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
ofed/drivers/net/mlx4/en_tx.c optional mlxen \
|
|
|
|
no-depend obj-prefix "mlx4_" \
|
|
|
|
compile-with "${OFED_C_NOIMP} -I$S/ofed/drivers/net/mlx4/"
|
|
|
|
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_alloc.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_cmd.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_cq.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_eq.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_flow_table.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_fw.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_health.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_mad.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_main.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_mcg.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_mr.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_pagealloc.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_pd.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_port.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_qp.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_srq.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_transobj.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_uar.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_vport.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_core/mlx5_wq.c optional mlx5 pci \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
|
|
|
|
dev/mlx5/mlx5_en/mlx5_en_ethtool.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_en/mlx5_en_main.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_en/mlx5_en_tx.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_en/mlx5_en_flow_table.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_en/mlx5_en_rx.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
dev/mlx5/mlx5_en/mlx5_en_txrx.c optional mlx5en pci inet inet6 \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2015-11-19 12:55:43 +00:00
|
|
|
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_allocator.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_av.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_catas.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_cmd.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_cq.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_eq.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_mad.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_main.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_mcg.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_memfree.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_mr.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_pd.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_profile.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_provider.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_qp.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_reset.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_srq.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
ofed/drivers/infiniband/hw/mthca/mthca_uar.c optional mthca \
|
2016-01-27 14:46:30 +00:00
|
|
|
compile-with "${OFED_C}"
|
2011-03-21 09:40:01 +00:00
|
|
|
|
2002-10-04 20:42:36 +00:00
|
|
|
# crypto support
|
2007-07-03 12:13:45 +00:00
|
|
|
opencrypto/cast.c optional crypto | ipsec
|
2015-07-05 14:15:58 +00:00
|
|
|
opencrypto/criov.c optional crypto | ipsec
|
|
|
|
opencrypto/crypto.c optional crypto | ipsec
|
2002-10-04 20:42:36 +00:00
|
|
|
opencrypto/cryptodev.c optional cryptodev
|
2015-07-05 14:15:58 +00:00
|
|
|
opencrypto/cryptodev_if.m optional crypto | ipsec
|
|
|
|
opencrypto/cryptosoft.c optional crypto | ipsec
|
|
|
|
opencrypto/cryptodeflate.c optional crypto | ipsec
|
|
|
|
opencrypto/gmac.c optional crypto | ipsec
|
|
|
|
opencrypto/gfmult.c optional crypto | ipsec
|
2005-11-27 21:41:58 +00:00
|
|
|
opencrypto/rmd160.c optional crypto | ipsec
|
2015-07-05 14:15:58 +00:00
|
|
|
opencrypto/skipjack.c optional crypto | ipsec
|
|
|
|
opencrypto/xform.c optional crypto | ipsec
|
2014-12-23 00:47:46 +00:00
|
|
|
rpc/auth_none.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/auth_unix.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/authunix_prot.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/clnt_bck.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/clnt_dg.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/clnt_rc.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/clnt_vc.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/getnetconfig.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/replay.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/rpc_callmsg.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/rpc_generic.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/rpc_prot.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/rpcb_clnt.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/rpcb_prot.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc_auth.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc_auth_unix.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc_dg.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc_generic.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
rpc/svc_vc.c optional krpc | nfslockd | nfscl | nfsd
|
2009-05-28 19:45:11 +00:00
|
|
|
rpc/rpcsec_gss/rpcsec_gss.c optional krpc kgssapi | nfslockd kgssapi | nfscl kgssapi | nfsd kgssapi
|
|
|
|
rpc/rpcsec_gss/rpcsec_gss_conf.c optional krpc kgssapi | nfslockd kgssapi | nfscl kgssapi | nfsd kgssapi
|
|
|
|
rpc/rpcsec_gss/rpcsec_gss_misc.c optional krpc kgssapi | nfslockd kgssapi | nfscl kgssapi | nfsd kgssapi
|
|
|
|
rpc/rpcsec_gss/rpcsec_gss_prot.c optional krpc kgssapi | nfslockd kgssapi | nfscl kgssapi | nfsd kgssapi
|
|
|
|
rpc/rpcsec_gss/svc_rpcsec_gss.c optional krpc kgssapi | nfslockd kgssapi | nfscl kgssapi | nfsd kgssapi
|
2006-02-01 21:00:16 +00:00
|
|
|
security/audit/audit.c optional audit
|
2006-02-06 22:34:29 +00:00
|
|
|
security/audit/audit_arg.c optional audit
|
2006-02-01 21:00:16 +00:00
|
|
|
security/audit/audit_bsm.c optional audit
|
|
|
|
security/audit/audit_bsm_klib.c optional audit
|
2006-02-06 22:50:39 +00:00
|
|
|
security/audit/audit_pipe.c optional audit
|
2006-02-06 22:34:29 +00:00
|
|
|
security/audit/audit_syscalls.c standard
|
|
|
|
security/audit/audit_trigger.c optional audit
|
Merge Perforce changes 93512, 93514, 93515 from TrustedBSD audit3
branch:
Integrate audit.c to audit_worker.c, so as to migrate the worker
thread implementation to its own .c file.
Populate audit_worker.c using parts now removed from audit.c:
- Move audit rotation global variables.
- Move audit_record_write(), audit_worker_rotate(),
audit_worker_drain(), audit_worker(), audit_rotate_vnode().
- Create audit_worker_init() from relevant parts of audit_init(),
which now calls this routine.
- Recreate audit_free(), which wraps uma_zfree() so that
audit_record_zone can be static to audit.c.
- Unstaticize various types and variables relating to the audit
record queue so that audit_worker can get to them. We may want
to wrap these in accessor methods at some point.
- Move AUDIT_PRINTF() to audit_private.h.
Addition of audit_worker.c to kernel configuration, missed in
earlier submit.
Obtained from: TrustedBSD Project
2006-03-19 16:03:43 +00:00
|
|
|
security/audit/audit_worker.c optional audit
|
2012-12-15 15:21:09 +00:00
|
|
|
security/audit/bsm_domain.c optional audit
|
|
|
|
security/audit/bsm_errno.c optional audit
|
|
|
|
security/audit/bsm_fcntl.c optional audit
|
|
|
|
security/audit/bsm_socket_type.c optional audit
|
|
|
|
security/audit/bsm_token.c optional audit
|
2007-04-21 22:08:48 +00:00
|
|
|
security/mac/mac_audit.c optional mac audit
|
2008-10-28 21:53:10 +00:00
|
|
|
security/mac/mac_cred.c optional mac
|
2006-12-28 20:52:02 +00:00
|
|
|
security/mac/mac_framework.c optional mac
|
2011-04-30 14:22:45 +00:00
|
|
|
security/mac/mac_inet.c optional mac inet | mac inet6
|
2007-10-28 15:55:23 +00:00
|
|
|
security/mac/mac_inet6.c optional mac inet6
|
Modify the MAC Framework so that instead of embedding a (struct label)
in various kernel objects to represent security data, we embed a
(struct label *) pointer, which now references labels allocated using
a UMA zone (mac_label.c). This allows the size and shape of struct
label to be varied without changing the size and shape of these kernel
objects, which become part of the frozen ABI with 5-STABLE. This opens
the door for boot-time selection of the number of label slots, and hence
changes to the bound on the number of simultaneous labeled policies
at boot-time instead of compile-time. This also makes it easier to
embed label references in new objects as required for locking/caching
with fine-grained network stack locking, such as inpcb structures.
This change also moves us further in the direction of hiding the
structure of kernel objects from MAC policy modules, not to mention
dramatically reducing the number of '&' symbols appearing in both the
MAC Framework and MAC policy modules, and improving readability.
While this results in minimal performance change with MAC enabled, it
will observably shrink the size of a number of critical kernel data
structures for the !MAC case, and should have a small (but measurable)
performance benefit (i.e., struct vnode, struct socket) do to memory
conservation and reduced cost of zeroing memory.
NOTE: Users of MAC must recompile their kernel and all MAC modules as a
result of this change. Because this is an API change, third party
MAC modules will also need to be updated to make less use of the '&'
symbol.
Suggestions from: bmilekic
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
2003-11-12 03:14:31 +00:00
|
|
|
security/mac/mac_label.c optional mac
|
2003-10-22 20:39:33 +00:00
|
|
|
security/mac/mac_net.c optional mac
|
|
|
|
security/mac/mac_pipe.c optional mac
|
2005-05-04 10:39:15 +00:00
|
|
|
security/mac/mac_posix_sem.c optional mac
|
Add a new file descriptor type for IPC shared memory objects and use it to
implement shm_open(2) and shm_unlink(2) in the kernel:
- Each shared memory file descriptor is associated with a swap-backed vm
object which provides the backing store. Each descriptor starts off with
a size of zero, but the size can be altered via ftruncate(2). The shared
memory file descriptors also support fstat(2). read(2), write(2),
ioctl(2), select(2), poll(2), and kevent(2) are not supported on shared
memory file descriptors.
- shm_open(2) and shm_unlink(2) are now implemented as system calls that
manage shared memory file descriptors. The virtual namespace that maps
pathnames to shared memory file descriptors is implemented as a hash
table where the hash key is generated via the 32-bit Fowler/Noll/Vo hash
of the pathname.
- As an extension, the constant 'SHM_ANON' may be specified in place of the
path argument to shm_open(2). In this case, an unnamed shared memory
file descriptor will be created similar to the IPC_PRIVATE key for
shmget(2). Note that the shared memory object can still be shared among
processes by sharing the file descriptor via fork(2) or sendmsg(2), but
it is unnamed. This effectively serves to implement the getmemfd() idea
bandied about the lists several times over the years.
- The backing store for shared memory file descriptors are garbage
collected when they are not referenced by any open file descriptors or
the shm_open(2) virtual namespace.
Submitted by: dillon, peter (previous versions)
Submitted by: rwatson (I based this on his version)
Reviewed by: alc (suggested converting getmemfd() to shm_open())
2008-01-08 21:58:16 +00:00
|
|
|
security/mac/mac_posix_shm.c optional mac
|
Add a new priv(9) kernel interface for checking the availability of
privilege for threads and credentials. Unlike the existing suser(9)
interface, priv(9) exposes a named privilege identifier to the privilege
checking code, allowing more complex policies regarding the granting of
privilege to be expressed. Two interfaces are provided, replacing the
existing suser(9) interface:
suser(td) -> priv_check(td, priv)
suser_cred(cred, flags) -> priv_check_cred(cred, priv, flags)
A comprehensive list of currently available kernel privileges may be
found in priv.h. New privileges are easily added as required, but the
comments on adding privileges found in priv.h and priv(9) should be read
before doing so.
The new privilege interface exposed sufficient information to the
privilege checking routine that it will now be possible for jail to
determine whether a particular privilege is granted in the check routine,
rather than relying on hints from the calling context via the
SUSER_ALLOWJAIL flag. For now, the flag is maintained, but a new jail
check function, prison_priv_check(), is exposed from kern_jail.c and used
by the privilege check routine to determine if the privilege is permitted
in jail. As a result, a centralized list of privileges permitted in jail
is now present in kern_jail.c.
The MAC Framework is now also able to instrument privilege checks, both
to deny privileges otherwise granted (mac_priv_check()), and to grant
privileges otherwise denied (mac_priv_grant()), permitting MAC Policy
modules to implement privilege models, as well as control a much broader
range of system behavior in order to constrain processes running with
root privilege.
The suser() and suser_cred() functions remain implemented, now in terms
of priv_check() and the PRIV_ROOT privilege, for use during the transition
and possibly continuing use by third party kernel modules that have not
been updated. The PRIV_DRIVER privilege exists to allow device drivers to
check privilege without adopting a more specific privilege identifier.
This change does not modify the actual security policy, rather, it
modifies the interface for privilege checks so changes to the security
policy become more feasible.
Sponsored by: nCircle Network Security, Inc.
Obtained from: TrustedBSD Project
Discussed on: arch@
Reviewed (at least in part) by: mlaier, jmg, pjd, bde, ceri,
Alex Lyashkov <umka at sevcity dot net>,
Skip Ford <skip dot ford at verizon dot net>,
Antoine Brodin <antoine dot brodin at laposte dot net>
2006-11-06 13:37:19 +00:00
|
|
|
security/mac/mac_priv.c optional mac
|
2003-10-22 20:39:33 +00:00
|
|
|
security/mac/mac_process.c optional mac
|
2004-02-26 03:51:04 +00:00
|
|
|
security/mac/mac_socket.c optional mac
|
2006-12-28 20:52:02 +00:00
|
|
|
security/mac/mac_syscalls.c standard
|
2003-10-22 20:39:33 +00:00
|
|
|
security/mac/mac_system.c optional mac
|
2004-11-17 17:33:59 +00:00
|
|
|
security/mac/mac_sysv_msg.c optional mac
|
|
|
|
security/mac/mac_sysv_sem.c optional mac
|
|
|
|
security/mac/mac_sysv_shm.c optional mac
|
2003-10-22 20:39:33 +00:00
|
|
|
security/mac/mac_vfs.c optional mac
|
2002-10-24 17:21:40 +00:00
|
|
|
security/mac_biba/mac_biba.c optional mac_biba
|
2012-11-13 06:07:13 +00:00
|
|
|
security/mac_bsdextended/mac_bsdextended.c optional mac_bsdextended
|
|
|
|
security/mac_bsdextended/ugidfw_system.c optional mac_bsdextended
|
|
|
|
security/mac_bsdextended/ugidfw_vnode.c optional mac_bsdextended
|
2002-10-24 17:21:40 +00:00
|
|
|
security/mac_ifoff/mac_ifoff.c optional mac_ifoff
|
2002-11-26 17:32:39 +00:00
|
|
|
security/mac_lomac/mac_lomac.c optional mac_lomac
|
2002-10-24 17:21:40 +00:00
|
|
|
security/mac_mls/mac_mls.c optional mac_mls
|
2002-08-01 22:26:38 +00:00
|
|
|
security/mac_none/mac_none.c optional mac_none
|
2005-01-04 06:07:25 +00:00
|
|
|
security/mac_partition/mac_partition.c optional mac_partition
|
|
|
|
security/mac_portacl/mac_portacl.c optional mac_portacl
|
|
|
|
security/mac_seeotheruids/mac_seeotheruids.c optional mac_seeotheruids
|
2003-08-21 16:48:39 +00:00
|
|
|
security/mac_stub/mac_stub.c optional mac_stub
|
2002-10-24 17:21:40 +00:00
|
|
|
security/mac_test/mac_test.c optional mac_test
|
2013-12-05 22:38:53 +00:00
|
|
|
teken/teken.c optional sc | vt
|
2005-01-04 06:07:25 +00:00
|
|
|
ufs/ffs/ffs_alloc.c optional ffs
|
|
|
|
ufs/ffs/ffs_balloc.c optional ffs
|
|
|
|
ufs/ffs/ffs_inode.c optional ffs
|
|
|
|
ufs/ffs/ffs_snapshot.c optional ffs
|
2005-02-11 08:13:31 +00:00
|
|
|
ufs/ffs/ffs_softdep.c optional ffs
|
2005-01-04 06:07:25 +00:00
|
|
|
ufs/ffs/ffs_subr.c optional ffs
|
|
|
|
ufs/ffs/ffs_tables.c optional ffs
|
|
|
|
ufs/ffs/ffs_vfsops.c optional ffs
|
|
|
|
ufs/ffs/ffs_vnops.c optional ffs
|
2014-06-08 10:55:06 +00:00
|
|
|
ufs/ffs/ffs_rawread.c optional ffs directio
|
2012-11-18 18:57:19 +00:00
|
|
|
ufs/ffs/ffs_suspend.c optional ffs
|
2005-01-04 06:07:25 +00:00
|
|
|
ufs/ufs/ufs_acl.c optional ffs
|
|
|
|
ufs/ufs/ufs_bmap.c optional ffs
|
|
|
|
ufs/ufs/ufs_dirhash.c optional ffs
|
|
|
|
ufs/ufs/ufs_extattr.c optional ffs
|
2009-09-22 16:22:05 +00:00
|
|
|
ufs/ufs/ufs_gjournal.c optional ffs UFS_GJOURNAL
|
2005-01-04 06:07:25 +00:00
|
|
|
ufs/ufs/ufs_inode.c optional ffs
|
|
|
|
ufs/ufs/ufs_lookup.c optional ffs
|
|
|
|
ufs/ufs/ufs_quota.c optional ffs
|
|
|
|
ufs/ufs/ufs_vfsops.c optional ffs
|
|
|
|
ufs/ufs/ufs_vnops.c optional ffs
|
|
|
|
vm/default_pager.c standard
|
|
|
|
vm/device_pager.c standard
|
|
|
|
vm/phys_pager.c standard
|
2006-01-31 11:09:21 +00:00
|
|
|
vm/redzone.c optional DEBUG_REDZONE
|
2009-07-24 13:50:29 +00:00
|
|
|
vm/sg_pager.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
vm/swap_pager.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
vm/uma_core.c standard
|
|
|
|
vm/uma_dbg.c standard
|
2005-01-21 18:09:17 +00:00
|
|
|
vm/memguard.c optional DEBUG_MEMGUARD
|
2005-01-04 06:07:25 +00:00
|
|
|
vm/vm_fault.c standard
|
|
|
|
vm/vm_glue.c standard
|
|
|
|
vm/vm_init.c standard
|
|
|
|
vm/vm_kern.c standard
|
|
|
|
vm/vm_map.c standard
|
|
|
|
vm/vm_meter.c standard
|
|
|
|
vm/vm_mmap.c standard
|
|
|
|
vm/vm_object.c standard
|
|
|
|
vm/vm_page.c standard
|
|
|
|
vm/vm_pageout.c standard
|
|
|
|
vm/vm_pager.c standard
|
Enable the new physical memory allocator.
This allocator uses a binary buddy system with a twist. First and
foremost, this allocator is required to support the implementation of
superpages. As a side effect, it enables a more robust implementation
of contigmalloc(9). Moreover, this reimplementation of
contigmalloc(9) eliminates the acquisition of Giant by
contigmalloc(..., M_NOWAIT, ...).
The twist is that this allocator tries to reduce the number of TLB
misses incurred by accesses through a direct map to small, UMA-managed
objects and page table pages. Roughly speaking, the physical pages
that are allocated for such purposes are clustered together in the
physical address space. The performance benefits vary. In the most
extreme case, a uniprocessor kernel running on an Opteron, I measured
an 18% reduction in system time during a buildworld.
This allocator does not implement page coloring. The reason is that
superpages have much the same effect. The contiguous physical memory
allocation necessary for a superpage is inherently colored.
Finally, the one caveat is that this allocator does not effectively
support prezeroed pages. I hope this is temporary. On i386, this is
a slight pessimization. However, on amd64, the beneficial effects of
the direct-map optimization outweigh the ill effects. I speculate
that this is true in general of machines with a direct map.
Approved by: re
2007-06-16 04:57:06 +00:00
|
|
|
vm/vm_phys.c standard
|
Sync back vmcontention branch into HEAD:
Replace the per-object resident and cached pages splay tree with a
path-compressed multi-digit radix trie.
Along with this, switch also the x86-specific handling of idle page
tables to using the radix trie.
This change is supposed to do the following:
- Allowing the acquisition of read locking for lookup operations of the
resident/cached pages collections as the per-vm_page_t splay iterators
are now removed.
- Increase the scalability of the operations on the page collections.
The radix trie does rely on the consumers locking to ensure atomicity of
its operations. In order to avoid deadlocks the bisection nodes are
pre-allocated in the UMA zone. This can be done safely because the
algorithm needs at maximum one new node per insert which means the
maximum number of the desired nodes is the number of available physical
frames themselves. However, not all the times a new bisection node is
really needed.
The radix trie implements path-compression because UFS indirect blocks
can lead to several objects with a very sparse trie, increasing the number
of levels to usually scan. It also helps in the nodes pre-fetching by
introducing the single node per-insert property.
This code is not generalized (yet) because of the possible loss of
performance by having much of the sizes in play configurable.
However, efforts to make this code more general and then reusable in
further different consumers might be really done.
The only KPI change is the removal of the function vm_page_splay() which
is now reaped.
The only KBI change, instead, is the removal of the left/right iterators
from struct vm_page, which are now reaped.
Further technical notes broken into mealpieces can be retrieved from the
svn branch:
http://svn.freebsd.org/base/user/attilio/vmcontention/
Sponsored by: EMC / Isilon storage division
In collaboration with: alc, jeff
Tested by: flo, pho, jhb, davide
Tested by: ian (arm)
Tested by: andreast (powerpc)
2013-03-18 00:25:02 +00:00
|
|
|
vm/vm_radix.c standard
|
2007-12-29 19:53:04 +00:00
|
|
|
vm/vm_reserv.c standard
|
Add an initial NUMA affinity/policy configuration for threads and processes.
This is based on work done by jeff@ and jhb@, as well as the numa.diff
patch that has been circulating when someone asks for first-touch NUMA
on -10 or -11.
* Introduce a simple set of VM policy and iterator types.
* tie the policy types into the vm_phys path for now, mirroring how
the initial first-touch allocation work was enabled.
* add syscalls to control changing thread and process defaults.
* add a global NUMA VM domain policy.
* implement a simple cascade policy order - if a thread policy exists, use it;
if a process policy exists, use it; use the default policy.
* processes inherit policies from their parent processes, threads inherit
policies from their parent threads.
* add a simple tool (numactl) to query and modify default thread/process
policities.
* add documentation for the new syscalls, for numa and for numactl.
* re-enable first touch NUMA again by default, as now policies can be
set in a variety of methods.
This is only relevant for very specific workloads.
This doesn't pretend to be a final NUMA solution.
The previous defaults in -HEAD (with MAXMEMDOM set) can be achieved by
'sysctl vm.default_policy=rr'.
This is only relevant if MAXMEMDOM is set to something other than 1.
Ie, if you're using GENERIC or a modified kernel with non-NUMA, then
this is a glorified no-op for you.
Thank you to Norse Corp for giving me access to rather large
(for FreeBSD!) NUMA machines in order to develop and verify this.
Thank you to Dell for providing me with dual socket sandybridge
and westmere v3 hardware to do NUMA development with.
Thank you to Scott Long at Netflix for providing me with access
to the two-socket, four-domain haswell v3 hardware.
Thank you to Peter Holm for running the stress testing suite
against the NUMA branch during various stages of development!
Tested:
* MIPS (regression testing; non-NUMA)
* i386 (regression testing; non-NUMA GENERIC)
* amd64 (regression testing; non-NUMA GENERIC)
* westmere, 2 socket (thankyou norse!)
* sandy bridge, 2 socket (thankyou dell!)
* ivy bridge, 2 socket (thankyou norse!)
* westmere-EX, 4 socket / 1TB RAM (thankyou norse!)
* haswell, 2 socket (thankyou norse!)
* haswell v3, 2 socket (thankyou dell)
* haswell v3, 2x18 core (thankyou scott long / netflix!)
* Peter Holm ran a stress test suite on this work and found one
issue, but has not been able to verify it (it doesn't look NUMA
related, and he only saw it once over many testing runs.)
* I've tested bhyve instances running in fixed NUMA domains and cpusets;
all seems to work correctly.
Verified:
* intel-pcm - pcm-numa.x and pcm-memory.x, whilst selecting different
NUMA policies for processes under test.
Review:
This was reviewed through phabricator (https://reviews.freebsd.org/D2559)
as well as privately and via emails to freebsd-arch@. The git history
with specific attributes is available at https://github.com/erikarn/freebsd/
in the NUMA branch (https://github.com/erikarn/freebsd/compare/local/adrian_numa_policy).
This has been reviewed by a number of people (stas, rpaulo, kib, ngie,
wblock) but not achieved a clear consensus. My hope is that with further
exposure and testing more functionality can be implemented and evaluated.
Notes:
* The VM doesn't handle unbalanced domains very well, and if you have an overly
unbalanced memory setup whilst under high memory pressure, VM page allocation
may fail leading to a kernel panic. This was a problem in the past, but it's
much more easily triggered now with these tools.
* This work only controls the path through vm_phys; it doesn't yet strongly/predictably
affect contigmalloc, KVA placement, UMA, etc. So, driver placement of memory
isn't really guaranteed in any way. That's next on my plate.
Sponsored by: Norse Corp, Inc.; Dell
2015-07-11 15:21:37 +00:00
|
|
|
vm/vm_domain.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
vm/vm_unix.c standard
|
2005-01-10 05:11:40 +00:00
|
|
|
vm/vm_zeroidle.c standard
|
2005-01-04 06:07:25 +00:00
|
|
|
vm/vnode_pager.c standard
|
2015-04-30 15:48:48 +00:00
|
|
|
xen/features.c optional xenhvm
|
|
|
|
xen/xenbus/xenbus_if.m optional xenhvm
|
|
|
|
xen/xenbus/xenbus.c optional xenhvm
|
|
|
|
xen/xenbus/xenbusb_if.m optional xenhvm
|
|
|
|
xen/xenbus/xenbusb.c optional xenhvm
|
|
|
|
xen/xenbus/xenbusb_front.c optional xenhvm
|
|
|
|
xen/xenbus/xenbusb_back.c optional xenhvm
|
2015-05-08 14:48:40 +00:00
|
|
|
xen/xenmem/xenmem_if.m optional xenhvm
|
2014-12-23 00:47:46 +00:00
|
|
|
xdr/xdr.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
xdr/xdr_array.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
xdr/xdr_mbuf.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
xdr/xdr_mem.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
xdr/xdr_reference.c optional krpc | nfslockd | nfscl | nfsd
|
|
|
|
xdr/xdr_sizeof.c optional krpc | nfslockd | nfscl | nfsd
|