Gleb Smirnoff
b8c83a1957
Another round of removing historical mbuf(9) allocator flags.
...
They are breeding! New ones arouse since last round.
Sponsored by: Nginx, Inc.
2014-01-16 13:44:47 +00:00
Eitan Adler
7a22215c53
Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
...
shifts into the sign bit. Instead use (1U << 31) which gets the
expected result.
This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.
A similar change was made in OpenBSD.
Discussed with: -arch, rdivacky
Reviewed by: cperciva
2013-11-30 22:17:27 +00:00
David C Somayajulu
280c10eba5
Validate the buffer and its length passed to QLA_MPI_DUMP.
...
copyout dump only if qls_mpi_core_dump() is successful.
(like to credit x90c for pointing the issue)
Submitted by:David C Somayajulu
2013-11-15 01:44:58 +00:00
Gleb Smirnoff
c3322cb91c
Include necessary headers that now are available due to pollution
...
via if_var.h.
Sponsored by: Netflix
Sponsored by: Nginx, Inc.
2013-10-28 07:29:16 +00:00
David C Somayajulu
711bcba0bb
Add Qlogic 10Gb Ethernet Driver for Qlogic 8100 Series CNA Adapter
...
Driver version (v2.0.0)
Submitted by: David C Somayajulu (davidcs@freebsd.org ) QLogic Corporation
Approved by: George Neville-Neil (gnn@freebsd.org )
2013-06-25 17:50:22 +00:00