| Commit message (Expand) | Author | Age | Files | Lines |
* | Continuing efforts to provide hardening of FFS, this change adds a | Kirk McKusick | 2017-09-22 | 1 | -0/+5 |
* | x86/crc32_sse42.c: quiet unused function warning | Ryan Libby | 2017-08-11 | 1 | -7/+9 |
* | arm64: add ".arch armv8-a+crc" to allow use of crc instructions | Ed Maste | 2017-06-08 | 1 | -0/+1 |
* | Sync qsort.c with userland r318515. | Xin LI | 2017-05-19 | 1 | -47/+82 |
* | Remove register keyword from sys/ and ANSIfy prototypes | Ed Maste | 2017-05-17 | 1 | -18/+18 |
* | armv8 has support for optional CRC32C instructions. This patch checks if they... | Michael Tuexen | 2017-04-27 | 2 | -0/+94 |
* | Replace the RC4 algorithm for generating in-kernel secure random | Mark Murray | 2017-04-16 | 1 | -120/+130 |
* | Use inline asm instead of unportable intrinsics for the SSE4 crc32 | Bruce Evans | 2017-03-26 | 1 | -11/+102 |
* | Discard first 3072 bytes of RC4 keystream, this is a bandaid | Xin LI | 2017-03-14 | 1 | -2/+2 |
* | strstr.c was inadvertently blasted with a copy of isa_nmi.c. Revert | Warner Losh | 2017-03-01 | 1 | -30/+20 |
* | Renumber copyright clause 4 | Warner Losh | 2017-02-28 | 32 | -56/+62 |
* | sys: Replace zero with NULL for pointers. | Pedro F. Giffuni | 2017-02-22 | 1 | -1/+1 |
* | Remove inet_ntoa() from the kernel | Eric van Gyzen | 2017-02-16 | 1 | -14/+0 |
* | calculate_crc32c: Add SSE4.2 implementation on x86 | Conrad Meyer | 2017-01-31 | 2 | -0/+299 |
* | Use time_t for intermediate values to avoid overflow in clock_ts_to_ct | Conrad Meyer | 2017-01-24 | 1 | -0/+4 |
* | libkern: Remove obsolete 'register' keyword | Conrad Meyer | 2017-01-12 | 11 | -29/+29 |
* | Update r309143 to prevent false sharing. | Fabien Thomas | 2016-11-25 | 1 | -2/+2 |
* | In a dual processor system (2*6 cores) during IPSec throughput tests, | Fabien Thomas | 2016-11-25 | 1 | -37/+80 |
* | sys: Make use of our rounddown() macro when sys/param.h is available. | Pedro F. Giffuni | 2016-04-30 | 1 | -1/+1 |
* | Merge ACPICA 20160422. | Jung-uk Kim | 2016-04-27 | 1 | -0/+63 |
* | kern: for pointers replace 0 with NULL. | Pedro F. Giffuni | 2016-04-15 | 4 | -4/+4 |
* | libkern: ffs, fls: s/4/3/ the 3rd BSD clause | Conrad Meyer | 2015-10-22 | 6 | -6/+6 |
* | Add libkern ffsll() for parity with flsll() | Conrad Meyer | 2015-10-22 | 1 | -0/+48 |
* | Add the __aeabi_memclr8 symbol, clang 3.7 uses this. | Andrew Turner | 2015-09-21 | 1 | -0/+2 |
* | Remove checks for __ARM_EABI__, we only build for EABI now. | Andrew Turner | 2015-07-09 | 6 | -30/+0 |
* | Add support for __aeabi_memclr4, clang 3.7 calls it. | Andrew Turner | 2015-07-09 | 1 | -0/+40 |
* | Huge cleanup of random(4) code. | Mark Murray | 2015-06-30 | 2 | -16/+10 |
* | Add more __aeabi_memcpy functions, later versions of clang generate calls | Andrew Turner | 2015-05-31 | 1 | -0/+4 |
* | Move zlib.c from net to libkern. | Craig Rodrigues | 2015-04-22 | 1 | -0/+5414 |
* | Implement asprintf in libkern | Ryan Stone | 2015-03-01 | 1 | -0/+77 |
* | Similar to r277901, fix more -Wcast-qual warnings in libkern's strtoq(), | Dimitry Andric | 2015-01-29 | 3 | -3/+3 |
* | Fix a -Wcast-qual warning in libkern's strtol(), by using __DECONST. No | Dimitry Andric | 2015-01-29 | 1 | -1/+1 |
* | Add some new modes to OpenCrypto. These modes are AES-ICM (can be used | John-Mark Gurney | 2014-12-12 | 1 | -0/+32 |
* | Use the unified syntax in a few more assembly files | Andrew Turner | 2014-12-05 | 1 | -1/+2 |
* | Sync with userland variant. | Xin LI | 2014-11-17 | 1 | -5/+3 |
* | Add a complete implementation of MurmurHash3. Tweak both implementations | Dag-Erling Smørgrav | 2014-10-18 | 1 | -12/+70 |
* | Remove duplicated code. | Xin LI | 2014-10-16 | 1 | -0/+4 |
* | Change the PF hash from Jenkins to Murmur3. In forwarding tests | George V. Neville-Neil | 2014-10-10 | 1 | -0/+74 |
* | Add explicit_bzero(3) and its kernel counterpart. | Xin LI | 2014-10-07 | 1 | -0/+24 |
* | Use __DECONST to avoid compiler warnings (and thus build failures) | Bjoern A. Zeeb | 2014-09-08 | 1 | -2/+2 |
* | Add support for gdb's memory searching capabilities to our in-kernel gdb | Benno Rice | 2014-09-05 | 1 | -0/+62 |
* | Bring in the new automounter, similar to what's provided in most other | Edward Tomasz Napierala | 2014-08-17 | 1 | -0/+51 |
* | Fix unwind-info errors in our hand-written arm assembler code. | Ian Lepore | 2014-08-01 | 1 | -10/+10 |
* | Remove ia64. | Marcel Moolenaar | 2014-07-07 | 12 | -1273/+0 |
* | Use strcasecmp() instead of strcmp() when checking user-supplied encoding | John Baldwin | 2014-06-09 | 2 | -4/+4 |
* | Fix typo | Eitan Adler | 2013-11-29 | 1 | -1/+1 |
* | Fix typo | Eitan Adler | 2013-11-29 | 1 | -1/+1 |
* | Fix ixp425 boot2 with ARM EABI: | Andrew Turner | 2013-09-29 | 2 | -0/+14 |
* | Fix watchdog pretimeout. | Alfred Perlstein | 2013-07-27 | 1 | -0/+47 |
* | Attempt to mitigate poor initialization of arc4 by one-shot | Andrey A. Chernov | 2013-04-19 | 1 | -1/+4 |