Searched hist:1.1234 (Results 1 - 12 of 12) sorted by relevance

/src/sys/dev/pci/
H A Dpcidevs.h1.1234 Mon Nov 16 14:20:00 GMT 2015 msaitoh Regen.
H A Dpcidevs_data.h1.1234 Mon Nov 16 15:00:13 GMT 2015 msaitoh Regen.
H A Dpcidevs1.1234 Thu Aug 27 09:30:36 GMT 2015 nonaka Added Realtek RTL8192CE.
/src/doc/
H A D3RDPARTY1.1234 Thu Jul 09 14:32:24 GMT 2015 christos mention openssl
H A DCHANGES1.1234 Sun May 24 02:36:57 GMT 2009 ginsbach Document getdate(3) addition and adding %s to strptime(3).
/src/distrib/sets/lists/comp/
H A Dmi1.1234 Sun Feb 08 16:30:48 GMT 2009 pooka branches: 1.1234.2;
Add rumpnet_local to the setlists (at least most of the variants ;).
1.1234 Sun Feb 08 16:30:48 GMT 2009 pooka branches: 1.1234.2;
Add rumpnet_local to the setlists (at least most of the variants ;).
/src/sys/arch/i386/conf/
H A DGENERIC1.1234 Wed Jan 20 13:22:08 GMT 2021 nia remove compat_ossaudio from kernel modules

this is only useful with compat_linux and gets autoloaded when
compat_linux is loaded, so there's no reason to bake it into kernels
any more.
/src/distrib/sets/lists/base/
H A Dmi1.1234 Fri Mar 27 15:11:57 GMT 2020 christos As described in tech-userlevel:
- Modify the writing code to only write entries in the new
format for the terminal descriptions that require it.
- Store new format entries as <name>@v3
- Store old format entries with clamped values as <name> for
backwards compatibility
- Lookup first <name>@v3 and then <name> if that is not found.
- Don't create terminfo2 anymore; old programs keep working with
clamped entries, and new programs be able to use the wide
fields with using the original db file.
/src/distrib/sets/lists/man/
H A Dmi1.1234 Sun Aug 22 18:56:20 GMT 2010 rmind Import NPF - a packet filter. Some features:

- Designed to be fully MP-safe and highly efficient.

- Tables/IP sets (hash or red-black tree) for high performance lookups.

- Stateful filtering and Network Address Port Translation (NAPT).
Framework for application level gateways (ALGs).

- Packet inspection engine called n-code processor - inspired by BPF -
supporting generic RISC-like and specific CISC-like instructions for
common patterns (e.g. IPv4 address matching). See npf_ncode(9) manual.

- Convenient userland utility npfctl(8) with npf.conf(8).

NOTE: This is not yet a fully capable alternative to PF or IPFilter.
Further work (support for binat/rdr, return-rst/return-icmp, common ALGs,
state saving/restoring, logging, etc) is in progress.

Thanks a lot to Matt Thomas for various useful comments and code review.
Aye by: board@
/src/distrib/sets/lists/tests/
H A Dmi1.1234 Mon Nov 21 22:01:33 GMT 2022 christos lua libm API from Phil Rulon
/src/share/mk/
H A Dbsd.own.mk1.1234 Tue Nov 17 10:49:41 GMT 2020 rin Set USE_XZ_SETS to yes by default for aarch64eb in the same manner as aarch64.
/src/sys/conf/
H A Dfiles1.1234 Sat Apr 13 08:41:36 GMT 2019 maxv Introduce POOL_QUARANTINE, a feature that creates a window during which a
freed buffer cannot be reallocated. This greatly helps detecting
use-after-frees, because they are not short-lived anymore.

We maintain a per-pool fifo of 128 buffers. On each pool_put, we do a real
free of the oldest buffer, and insert the new buffer. Before insertion, we
mark the buffer as invalid with KASAN. On each pool_cache_put, we destruct
the object, so it lands in pool_put, and the quarantine is handled there.

POOL_QUARANTINE can be used in conjunction with KASAN to detect more
use-after-free bugs.

Completed in 1245 milliseconds