thorpej
8cccee3a4a
Define a bpf_filter attribute, and include bpf_filter.o when we
...
have it. Give the attribute to things which need to use the BPF
virtual machine.
2000-12-29 00:54:58 +00:00
sommerfeld
ea23a4b9a6
Preliminary pci_intr_* man page.
2000-12-28 23:06:08 +00:00
sommerfeld
851de295eb
Change pci_intr_map to get interrupt source information from a "struct
...
pci_attach_args *" instead of from four separate parameters which in
all cases were extracted from the same "struct pci_attach_args".
This both simplifies the driver api, and allows for alternate PCI
interrupt mapping schemes, such as one using the tables described in
the Intel Multiprocessor Spec which describe interrupt wirings for
devices behind pci-pci bridges based on the device's location rather
the bridge's location.
Tested on alpha and i386; welcome to 1.5Q
2000-12-28 22:59:06 +00:00
thorpej
7490542205
Document the name forms of the ICMP and TCP field offsets/values
...
recently added to libpcap's compiler.
2000-12-28 22:43:39 +00:00
is
70692a9b20
Gone since May 2000.
2000-12-28 22:29:57 +00:00
mjacob
d4c32f2a63
Apply nearly all of Bill Sommerfeld's -Wformat patches. The one
...
change I didn't take is the %llu format- I can't have a common
across multiple platform module assume a %ll argument capability-
which really pointed out that I shouldn't be trying to *print*
something which could long long.
2000-12-28 22:27:46 +00:00
mjacob
3823efc25a
Apply Bill Sommerfeld's -Wformat changes.
2000-12-28 22:23:41 +00:00
sommerfeld
ac8e2453b8
Add new :cs: modifier to gettytab which clears the screen using the
...
appropriate control sequence from termcap (based on the terminal type
listed in /etc/ttys for the line).
2000-12-28 22:18:27 +00:00
thorpej
e9c2ed11fe
Add names for some ICMP and TCP protocol header offsets:
...
- icmptype (offset of ICMP type field)
- icmpcode (offset of ICMP code field)
- tcpflags (offset of TCP flags field)
and field values:
- icmp-echoreply, icmp-unreach, icmp-sourcequench,
icmp-redirect, icmp-echo, icmp-routeradvert,
icmp-routersolicit, icmp-timxceed, icmp-paramprob,
icmp-tstamp, icmp-tstampreply, icmp-ireq, icmp-ireqreply,
icmp-maskreq, icmp-maskreply
- tcp-fin, tcp-syn, tcp-rst, tcp-push, tcp-ack, tcp-urg
This allows expressions like the following:
icmp[0] = 3
(tcp[13] & 0x02) != 0
to be written as:
icmp[icmptype] = icmp-unreach
(tcp[tcpflags] & tcp-syn) != 0
which is a bit more user-friendly for e.g. writing packet filter rules.
2000-12-28 22:12:07 +00:00
thorpej
f3b5a7d293
Add support for the DLT_RAWAF() data link type.
2000-12-28 22:04:22 +00:00
thorpej
054b845cec
Fix a small typo that would cause IP Filter to not hook in to
...
pfil_hooks properly on kernels that included IPv6 support.
2000-12-28 21:42:49 +00:00
thorpej
ad5b855ef0
Back out the sledgehammer damage applied by wiz while I was out for
...
the holiday.
2000-12-28 21:40:59 +00:00
mjacob
0dae1b3d9a
Turn ISP_LOCK/ISP_UNLOCK into ISP_ILOCK/ISP_IUNLOCK macros for routines
...
that are driven from a timeout (oops, they're on the interrupt stack).
2000-12-28 21:37:04 +00:00
itojun
8b9fb822b0
do not touch ra_addr if it is NULL. from IIJ SEIL team
2000-12-28 21:23:00 +00:00
bjh21
40906c10a4
Sync with arm32: remove ovbcopy entry point.
2000-12-28 18:33:54 +00:00
bjh21
9d5c6f8887
RCSID cleanup.
2000-12-28 18:27:24 +00:00
augustss
20d1ae1adb
Add two more quirks:
...
UQ_AU_NO_FRAC for audio devices that cannot handle adjustment for fractional
sample size.
UQ_AU_INP_ASYNC for input devices that claim to be adaptive, but are in fact
asynchronous (an easy mistake to make unless you read the specs carefully :)
2000-12-28 11:56:22 +00:00
augustss
1e0da50daa
Regen.
2000-12-28 11:53:25 +00:00
augustss
bdcc0b7ad1
Add device no for YAP phone with firmware loaded.
2000-12-28 11:53:01 +00:00
jdolecek
1e46d6c702
use NetBSD utrace(2) facilities for FreeBSD utrace(2) emulation;
...
use id 'FreeBSD utrace'
2000-12-28 11:18:01 +00:00
jdolecek
7899fd7798
regen - utrace(2) addition
2000-12-28 11:16:48 +00:00
jdolecek
be3807a7c5
adapt to KTR_USER structure changes
2000-12-28 11:11:34 +00:00
jdolecek
a80dee65df
add utrace(2) - this syscall allows to add user ktrace entries
...
idea from FreeBSD, but added argument (const char *id) so that it's possible
to differentiate between entries from different sources
2000-12-28 11:10:15 +00:00
augustss
4dbac77503
#define for USB_2_0
2000-12-28 10:40:36 +00:00
castor
a698752050
Disable FPU in sys___sigreturn14() so floating point registers are
...
properly restored.
2000-12-28 09:27:09 +00:00
mjacob
8493d154d1
roll to 2.01.26 f/w
2000-12-28 08:30:40 +00:00
mjacob
d81d268d13
Use the ISP_CFG_NOINIT flag to decide whether to complete the full init
...
process steps (this is used in some platforms where you want to bring
the adapter to ready (to get a WWN, e.g.) , but not engage either target
or initiator mode until some later time). Set the correct defaults WWNs.
2000-12-28 08:26:12 +00:00
chs
1e651a1688
remove some more leftovers from Mach.
2000-12-28 08:24:55 +00:00
mjacob
a5498e1514
add an ISP_CFG_NOINIT flag
2000-12-28 08:24:17 +00:00
mjacob
b551237fb6
add two minor ATIO2 offsets
2000-12-28 08:23:48 +00:00
mjacob
829a533bfb
Restore the change fvdl made. Sorry about not noticing it. The
...
header (about 'Maintainer') is supposed to help encourage folks
to coordinate with me.
2000-12-28 08:11:52 +00:00
jmc
5649071c21
Add x/m option functionality
2000-12-28 07:30:06 +00:00
sato
e527c3f384
add platid_search() for search platid related data from tables.
...
add platid_search() test program in platid_test.c. it's sample.
2000-12-28 07:10:14 +00:00
matt
d1ff29768d
Add a few more cases to print_operand_address (and be more helpful on aborts).
2000-12-28 05:29:25 +00:00
itojun
4ab94d919b
sync citrus Id part with citrus repository.
2000-12-28 05:27:35 +00:00
itojun
2ea22179ea
switch locale module API, from s{get,put}rune to wcrtomb/mbrtowc.
...
handle intermediate mbstate_t more correctly.
no externally-visible changes here.
2000-12-28 05:22:27 +00:00
matt
a589927cbc
Make identical to arm32 version. (add same parens, use __P, etc.)
2000-12-28 03:55:14 +00:00
matt
f1f4acfb4d
Remove reference to CLBYTES
2000-12-28 03:54:15 +00:00
matt
1ea4047532
Add __ELF__ case for RCSID. Now identical to arm26 version.
2000-12-28 03:53:31 +00:00
matt
61b05af542
Except for the RCSID, this file is now identical with arm32/include/ansi.h
2000-12-28 03:52:50 +00:00
mrg
c5ce287448
fix oversight in previous.
2000-12-28 02:07:00 +00:00
augustss
a5fd97f0e6
Repair hid_parse_usage_in_page() after format string cleanup: use fmtcheck().
2000-12-28 01:22:40 +00:00
augustss
5236b76556
Make message about ignored endpoint a little clearer.
2000-12-28 01:01:42 +00:00
augustss
d2098567fe
Add audio terminal types.
2000-12-28 00:29:58 +00:00
sommerfeld
5217f6335b
Let COMPAT_LINUX build with DEBUG
2000-12-27 23:47:58 +00:00
jdolecek
69fa90cc78
s/SYS_NSYSENT/FREEBSD_&/
2000-12-27 23:20:29 +00:00
bjh21
144e2eb120
Add wd*.
2000-12-27 22:21:47 +00:00
bjh21
c00a8ab5fd
Calculate the required amount of screen memory, rather than just trusting the
...
number that RISC OS gives us (which may be far too large).
2000-12-27 22:13:42 +00:00
jdolecek
c490f5c6a1
update commented out code to recent changes of signal structures
2000-12-27 22:06:07 +00:00
fvdl
7fbbc11d9c
Regen.
2000-12-27 22:04:35 +00:00