summaryrefslogtreecommitdiff
path: root/usr/src/uts
AgeCommit message (Collapse)AuthorFilesLines
2011-08-041457 lltostr() D subroutine should take an optional baseBryan Cantrill1-6/+28
Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-08-04OS-527 lltostr() D subroutine should take an optional baseBryan Cantrill1-6/+28
2011-07-29OS514 oce driver on HP blades in a c7000 chassis seems to mis-tag incoming ↵Max Bruning1-1/+6
internet packets
2011-08-181385 iscsi target drops due to taskqGarrett D'Amore2-11/+13
Reviewed by: Jason Brian King <jason.brian.king@gmail.com> Reviewed by: Albert Lee <trisk@nexenta.com> Reviewed by: Dmitry Yusupov <dmitry@nexenta.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Eric Shrock <eric.schrock@delphix.com>
2011-08-181361 Add support for socket options TCP_KEEPCNT, TCP_KEEPIDLE, TCP_KEEPINTVL ↵Vineeth Pillai1-1/+1
(fix diff)
2011-08-171361 Add support for socket options TCP_KEEPCNT, TCP_KEEPIDLE, TCP_KEEPINTVLGarrett D'Amore5-2/+133
Reviewed by: Pavan <pavan.tc@gmail.com> Reviewed by: Dan McDonald <danmcd at nexenta.com> Reviewed by: Garrett D'Amore <garrett@damore.org> Approved by: Garrett D'Amore <garrett@damore.org>
2011-08-131362 add kvmstat for monitoring of KVM statisticsBryan Cantrill6-10/+88
1363 add vmregs[] variable to DTrace 1364 need disassembler support for VMX instructions 1365 mdb needs 16-bit disassembler support Reviewed by: Brendan Gregg <brendan.gregg@joyent.com> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-07-27OS-517 <sys/tss.h> should export all version of the tss structureRobert Mustacchi3-16/+52
2011-07-26OS-451 update ixgbe driver to latest FreeBSD sourceJerry Jelinek10-6054/+5987
2011-07-25OS-359 want local zone TCP kstats in the global zoneBill Pijewski1-2/+18
2011-07-22va_*.h: Use __GNUC_MINOR__, which actually existsRichard Lowe2-3/+3
2011-07-21OS-509 zone should halt if init exits and is configured not to restartJerry Jelinek1-4/+11
2011-07-20va_impl.h: Update version condition for __builtin_va_startRichard Lowe1-1/+1
In actuality, gcc's ginclude/stdarg.h switched to using the __builtin_va_start name in GCC 3.3, see revision 1.16 here: http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ginclude/stdarg.h?only_with_tag=gcc_3_3_release
2011-07-20OS-505 Create zone brand option that allows a brand to specify that when ↵Jerry Jelinek2-0/+5
init fails, it should not be restarted
2011-07-16Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe21-369/+971
Conflicts: usr/src/uts/sun4u/opl/io/drmach.c usr/src/uts/sun4u/serengeti/io/sbdp_cpu.c usr/src/uts/sun4u/starfire/io/drmach.c
2011-07-15OS-161 vmem_destroy(XXX): leaked 1 identifiers messages on shutdownJerry Jelinek1-1/+1
2011-07-13OS-393 ziostat reporting incorrect actv and asvc_tBill Pijewski3-4/+7
2011-07-121451 DTrace needs toupper()/tolower() subroutinesBryan Cantrill2-2/+51
Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-07-12OS-486 DTrace needs toupper()/tolower() subroutinesBryan Cantrill2-2/+51
2011-07-111455 DTrace tracemem() should take an optional size argumentBryan Cantrill2-0/+16
Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-07-11OS-481 DTrace tracemem() action should take a dynamic size argumentBryan Cantrill2-0/+16
2011-07-09OS-478 restore lint cleanlinessBryan Cantrill7-12/+32
2011-07-081452 DTrace buffer autoscaling should be less violentBryan Cantrill1-9/+24
Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-07-08OS-472 DTrace buffer autoscaling should be less violentBryan Cantrill1-9/+24
2011-07-06OS-423 Adding a link-aggr to a bridge causes a kernel panicJerry Jelinek1-4/+3
2011-07-061456 DTrace profile and tick probes sometimes don't fire in a zoneBryan Cantrill5-105/+201
Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-07-06OS-431 dtrace profile and tick probes sometimes don't fire in a zoneBryan Cantrill5-106/+201
2011-07-02Makefile.uts: Disable address comparison warnings in uts, tooRichard Lowe1-0/+1
UFS, at least, checks the address of a weak symbol which may or may not be present in the running kernel.
2011-07-02ipf: Avoid implicit truncation in IP_HL_ARichard Lowe1-1/+1
2011-07-02pcisch: Avoid GCC type promotion leading to format string warningsRichard Lowe1-2/+3
Apparently GCC promotes a couple of cmn_err arguments to long long, which then causes it to complain that the %lx format is inappropriate. Explicitly cast to uint64_t. It is unclear why the promotion is occurring.
2011-07-02starcat/drmach: Haul static prototypes out of functionsRichard Lowe1-12/+13
Function-local function prototypes may not be static, says GCC.
2011-07-02starcat/mboxsc: Use offsetof() not a homebrew copyRichard Lowe1-4/+3
2011-07-02starcat/schpc: Remove impossible status value (3rd bit of a 2 bit field)Richard Lowe2-10/+0
2011-07-02starcat/cvc: Use offsetof, don't hand-rollRichard Lowe1-2/+2
2011-07-02opl/drmach: Haul static prototypes out of functionsRichard Lowe1-10/+10
Function-local function prototypes may not be static, says GCC.
2011-07-02cpu/opl: Haul static prototypes out of functionsRichard Lowe1-4/+4
Function-local function prototypes may not be static, says GCC.
2011-07-02serengeti/sbdp: Don't cast addresses down to intRichard Lowe1-1/+2
2011-07-02serengeti/sbdp: Haul static prototypes out of functionsRichard Lowe1-1/+1
Function-local function prototypes may not be static, says GCC.
2011-07-02starfire/idn: Don't cast pointers directly to intRichard Lowe3-5/+6
2011-07-02starfire/idn: Use offsetof, don't hand-rollRichard Lowe1-1/+1
2011-07-02starfire/ngdrmach: Don't cast addresses down to intRichard Lowe1-1/+2
2011-07-02starfire/ngdrmach: Haul static prototypes out of functionsRichard Lowe1-14/+14
Function-local function prototypes may not be static, says GCC.
2011-07-02ngdr: Haul static prototypes out of functionsRichard Lowe1-2/+2
Function-local function prototypes may not be static, says GCC.
2011-07-02fhc: Haul static prototypes out of functionsRichard Lowe1-2/+2
Function-local function prototypes may not be static, says GCC.
2011-07-02niumx: Don't overflow driver_name in _fill_in_intrdevsRichard Lowe1-3/+2
2011-07-02px: Don't overflow driver_name in px_fill_in_intr_devsRichard Lowe1-3/+2
2011-07-02pci: Don't overflow driver_name in ib_get_ino_devs()Richard Lowe1-3/+2
2011-07-02zulu_hat: Don't cast ints directly to pointersRichard Lowe1-76/+75
2011-07-02lm75: Don't mask off the low bit of the temperatureRichard Lowe1-1/+1
LM75 encodes temperatures in writes in 16 bits, with the sign in the high bit, then 8 bits of temperature, then 7 ignored bits.
2011-07-02domaind.h: Use offsetof, don't hand-rollRichard Lowe1-12/+11