summaryrefslogtreecommitdiff
path: root/usr/src/common
AgeCommit message (Collapse)AuthorFilesLines
2012-05-09OS-1165 fix up illumos issue 1948Bill Pijewski1-1/+3
2012-05-07illumos syncJohn Sonnenschein4-4/+42
2012-05-07Revert "1948 zpool list should show more detailed pool information"John Sonnenschein1-3/+1
This reverts commit 4263d13f00c9691fa14620eff82abef795be0693.
2012-04-241665 Illumos wont build against openssl 1.0.0Theo Schlossnagle3-0/+21
Reviewed by: Robert Mustacchi <rm@joyent.com> Reviewed by: Keith Wesolowski <keith.wesolowski@joyent.com> Reviewed by: Joshua M. Clulow <josh@sysmgr.org> Approved by: Albert Lee <trisk@nexenta.com>
2012-04-24OS-1086 mdb disassembler confuses rdtscp for invlpgBryan Cantrill1-4/+11
2012-04-13OS-1099 Want support for binutils 2.22Robert Mustacchi2-6/+14
2012-04-162115 md5 assembly doesn't compile with gas 2.22Theo Schlossnagle2-6/+14
Reviewed by: Keith Wesolowski <keith.wesolowski@joyent.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Richard Lowe <richlowe@richlowe.net>
2012-03-22OS-1048 zfs list/get -c to return only cached propertiesBill Pijewski2-1/+20
Reviewed by: Keith Wesolowski <keith.wesolowski@joyent.com>
2011-12-13Merge branch 'master' into gcc4John Sonnenschein3-2/+24
2011-12-12STOR-27 ZFS should be able to dump to a RAID-Z poolBill Pijewski1-0/+2
STOR-57 new ZFS checksum algorithm: 'noparity'
2012-03-272546 Support new AMD microcode format, update bundled AMD microcode patch fileHans Rosenfeld1-9/+2
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com> Reviewed by: Garrett D'Amore <garrett@damore.org> Reviewed by: Albert Lee <trisk@nexenta.com> Approved by: Richard Lowe <richlowe@richlowe.net>
2011-11-151693 persistent 'comment' field for a zpoolDan McDonald1-0/+4
Reviewed by: George Wilson <gwilson@zfsmail.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Richard Lowe <richlowe@richlowe.net>
2011-11-171644 add ZFS "clones" propertyMatthew Ahrens1-1/+17
1645 add ZFS "written" and "written@..." properties 1646 "zfs send" should estimate size of stream 1647 "zfs destroy" should determine space reclaimed by destroying multiple snapshots 1708 adjust size of zpool history data Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: George Wilson <gwilson@zfsmail.com> Reviewed by: Albert Lee <trisk@opensolaris.org> Approved by: Garrett D'Amore <garret@nexenta.com>
2011-11-04ctf: Allow access to the CTF parent labelRichard Lowe1-0/+10
2011-10-11Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe1-0/+5
Conflicts: usr/src/cmd/avs/dsw/iiadm.c
2011-09-25Merge remote-tracking branch 'illumos/master' into gcc/upgradeRichard Lowe1-3/+42
Conflicts: usr/src/common/dis/i386/dis_tables.c
2011-09-151518 dis should support AMD SVM/AMD-V/Pacifica instructionsRichard Lowe1-2/+41
Reviewed by: Garrett D'Amore <garrett@nexenta.com> Reviewed by: Jason King <jason.brian.king@gmail.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-08-28Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe3-7/+112
Conflicts: usr/src/cmd/lp/cmd/lpadmin/options.c usr/src/cmd/man/src/man.c
2011-08-131362 add kvmstat for monitoring of KVM statisticsBryan Cantrill1-6/+101
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-02openssl: Backport relevant sections of GCC 4.2 compilation fixesRichard Lowe3-25/+66
GCC 4.2 and above absolutely forbid casts of function pointers (they in fact emit a fatal trap such that any code doing so fails). These are the fixes from OpenSSL CVS to cease any function pointer casting while retaining type checks via other means.
2011-07-02dis: Allow decoding of 66 (%cs:) segment override even when amd64Richard Lowe1-1/+1
This is now generated by GCC 4 as part of an extended multi-byte nop as variable-length executable padding of the form: 66 66 66 2e 0f 1f 84 Where the number of 66 (address size) prefixes varies according to the amount of pad required.
2011-07-02dis: Decode multibyte nops generated by GCCRichard Lowe1-1/+1
This decodes 0f 1f (nopl) and 66 0f 1f (nopw), which seem to be the ones most commonly generated by gcc (determined by disassembling /kernel). unused opcodes in [0f18, 0f1f) are technically reserved nops, and used by Intel as "hinting nops", but I haven't found them generated. It doesn't seem to deal with '66 2e 0f 1f' (nopw %cs:) but I'm not certain as to why. This seems to mostly be generated inter-function however, and so this may not be such a big deal.
2011-07-02bignumimpl: Reword to evade apostrophe GCC warns aboutRichard Lowe1-1/+1
2011-08-111347 isainfo should indicate presence of vmx/svm supportBryan Cantrill2-1/+11
1348 isainfo -v potentially overflows 80 columns Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Eric Schrock <Eric.Schrock@delphix.com>
2011-10-051470 strtol doesn't set errno = EINVAL if conversion failedYakov Zaytsev1-0/+5
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com> Reviewed by: Jason King <jason.brian.king@gmail.com> Reviewed by: Gary Mills <mills@cc.umanitoba.ca> Reviewed by: Garrett D'Amore <garrett.damore@gmail.com> Approved by: Eric Schrock <Eric.Schrock@delphix.com>
2011-06-222426 wanboot openssl needs to not call cast function pointersRichard Lowe3-25/+66
Reviewed by: Garrett D'Amore <garrett@damore.org> Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Joshua M. Clulow <josh@sysmgr.org> Approved by: Gordon Ross <gwr@nexenta.com>
2011-06-131092 zfs refratio propertyMatt Ahrens1-0/+4
Reviewed by: George Wilson <George.Wilson@delphix.com> Reviewed by: Adam Leventhal <Adam.Leventhal@delphix.com> Reviewed by: Dan McDonald <danmcd@nexenta.com> Reviewed by: Richard Elling <richard.elling@richardelling.com> Reviewed by: Mark Musante <Mark.Musante@oracle.com> Reviewed by: Garrett D'Amore <garrett@nexenta.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-05-161757 bignumimpl's use of contractions annoys GCCRichard Lowe1-1/+1
Reviewed by: Eric Schrock <eric.schrock@delphix.com> Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com> Reviewed by: Albert Lee <trisk@nexenta.com> Approved by: Eric Schrock <eric.schrock@delphix.com>
2011-11-08backout 1644/1645/1646/1647/1708: Breaks 'zfs snapshot', boot environmentsRichard Lowe1-17/+1
2011-11-051644 add ZFS "clones" propertyMatthew Ahrens1-1/+17
1645 add ZFS "written" and "written@..." properties 1646 "zfs send" should estimate size of stream 1647 "zfs destroy" should determine space reclaimed by destroying multiple snapshots 1708 adjust size of zpool history data Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: George Wilson <gwilson@zfsmail.com> Approved by: Gordon Ross <gwr@nexenta.com>
2011-05-14742 Resurrect the ZFS "aclmode" propertyAlbert Lee3-69/+85
664 Umask masking "deny" ACL entries. 279 Bug in the new ACL (post-PSARC/2010/029) semantics Reviewed by: Aram Hăvărneanu <aram@nexenta.com> Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Robert Gordon <rbg@openrbg.com> Reviewed by: Mark.Maybee@oracle.com Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-05-011096 i386 disassembler should understand complex nopsBryan Cantrill1-2/+2
Reviewed by: Dan McDonald <danmcd@nexenta.com> Reviewed by: Jason King <jason.brian.king@gmail.com> Reviewed by: Garrett D'Amore <garrett@nexenta.com> Reviewed by: Albert Lee <trisk@nexenta.com> Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-01-01587 update bzip2 vers 1.0.5 to 1.0.6Gordon Ross11-470/+626
Reviewed by: garrett@nexenta.com Reviewed by: estseg@gmail.com Reviewed by: damian@wojslaw.pl Approved by: richlowe@richlowe.net
2010-12-01278 get rid zfs of python and pyzfs dependenciesAlexander Stetsenko2-1/+4
Reviewed by: gordon.w.ross@gmail.com Reviewed by: trisk@opensolaris.org Reviewed by: alexander.r.eremin@gmail.com Reviewed by: jerry.jelinek@joyent.com Approved by: garrett@nexenta.com
2010-10-09289 invalid padding when using java pkcs11 providerJason King2-13/+26
Reviewed by: garrett@nexenta.com, gordon.w.ross@gmail.com Approved by: richlowe@richlowe.net
2012-01-231948 zpool list should show more detailed pool informationGeorge Wilson1-1/+3
Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Matt Ahrens <matt@delphix.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: Albert Lee <trisk@nexenta.com> Reviewed by: Dan McDonald <danmcd@nexenta.com> Reviewed by: Garrett D'Amore <garrett@damore.org> Approved by: Eric Schrock <eric.schrock@delphix.com>
2010-09-126 Need open kcfdGarrett D'Amore21-7232/+5
Reviewed by: gwr@nexenta.com, richlowe@richlowe.net, matt@greenviolet.net Approved by: richlowe@richlowe.net
2010-08-166958308 XSAVE/XRSTOR mechanism to save and restore processor stateKuriakose Kuruvilla2-5/+11
Contributed by Lejun Zhu <lejun.zhu@intel.com>
2010-08-136762020 Disassembly support for Intel Advanced Vector Extensions (AVX)Edward Gillett1-23/+1149
6926635 Disassembler support for XGETBV, XRSTOR, XSAVE and XSETBV instructions Contributed by Xinping Huang <xinping.huang@intel.com>
2010-08-12PSARC 2010/299 GNU/Linux/BSD compatibility functionsRoger A. Faulkner1-22/+19
6960818 add get_nprocs(), getline(), strdupa(), strndup() to libc 6901783 strndup would be nice 6824404 libc should provide ffsl() & ffsll() 6793969 RFE: Add|stpcpy|to libc 6735446 Want a __progname symbol for BSD-style source compatibility 6421095 Solaris should provide strcasestr 6275498 Provide string compare functions wcscasecmp,wcsncasecmp in solaris like linux --HG-- rename : usr/src/lib/libc/port/gen/strcasecmp.c => usr/src/lib/libc/port/gen/ascii_strcasecmp.c rename : usr/src/lib/libc/port/gen/strncasecmp.c => usr/src/lib/libc/port/gen/ascii_strncasecmp.c rename : usr/src/lib/libc/sparc/gen/strcasecmp.s => usr/src/lib/libc/sparc/gen/ascii_strcasecmp.s rename : usr/src/lib/libc/sparcv9/gen/strcasecmp.s => usr/src/lib/libc/sparcv9/gen/ascii_strcasecmp.s
2010-08-116972305 Preferred DC not selected after setting pdc via sharectljoyce mcintosh1-0/+2
6971047 smbd hang during FVT regression test 6711195 Sparc:Get error "Windows Explorer has stopped working" once click on Details fr Properties on Vista PSARC/2009/464 Offline attribute 6972515 Offline attribute - PSARC 2009/464 PSARC/2010/037 Windows Sparse Attribute 6972519 Windows Sparse Attribute - PSARC 2010/037 6719444 [CLI] - idmap help's output is not consistent with man pages's 6975449 idmap test suite needs idmap_cache_get_data() from libidmap 6974351 OpenSSL still taking smbd down --HG-- rename : usr/src/lib/libidmap/common/idmap_priv.h => usr/src/cmd/idmap/idmap/namemaps.h
2010-08-106948791 Panics are seen when running EF on sparc in b139 caused by mp_int ↵Dina K Nimeh2-14/+10
having flag=0xbaddcafe
2010-08-09PSARC 2010/306 Read-only ZFS poolsGeorge Wilson1-2/+3
6720531 ZFS should provide read-only import
2010-08-07PSARC 2010/105 zfs diffTim Haley3-6/+6
6425091 want 'zfs diff' to list files that have changed between snapshots
2010-08-046972233 Panic is seen when fips-140 mode is enabled and rebootedMisaki Miyashita1-21/+20
2010-08-036974312 unref license wad should have done a better job not introducing ↵Mark J. Nelson1-0/+7
unref files --HG-- rename : usr/src/lib/libntfs/THIRDPARTYLICENSE => usr/src/common/GPLDISCLAIMER
2010-08-026929502 packages are missing some license filesMark J. Nelson1-0/+1
6930656 license action improvements --HG-- rename : usr/src/cmd/cmd-inet/usr.bin/pppdump/LICENSE.top.descrip => usr/src/cmd/cmd-inet/usr.bin/pppdump/THIRDPARTYLICENSE.descrip rename : usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE => usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.bsd rename : usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.descrip => usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.bsd.descrip rename : usr/src/pkg/license_files/lic_SUNWroute => usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.freebsd rename : usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.descrip => usr/src/cmd/cmd-inet/usr.sbin/in.routed/THIRDPARTYLICENSE.freebsd.descrip rename : usr/src/pkg/license_files/lic_SUNWhwdata => usr/src/cmd/hwdata/THIRDPARTYLICENSE.pciids.tmpl rename : usr/src/pkg/license_files/lic_GPLv2 => usr/src/cmd/powertop/common/COPYING rename : usr/src/lib/librstp/THIRDPARTYLICENSE.descrip => usr/src/lib/librstp/common/COPYING.descrip rename : usr/src/uts/common/io/e1000g/README => usr/src/uts/common/io/e1000g/THIRDPARTYLICENSE rename : usr/src/pkg/license_files/lic_Emulex => usr/src/uts/common/io/fibre-channel/fca/emlxs/FIRMWARELICENSE rename : usr/src/pkg/license_files/lic_Qlogic => usr/src/uts/common/io/fibre-channel/fca/qlc/FIRMWARELICENSE rename : usr/src/uts/common/io/ib/clients/of/lic_of => usr/src/uts/common/io/ib/clients/of/THIRDPARTYLICENSE rename : usr/src/uts/common/io/ib/clients/of/lic_of.descrip => usr/src/uts/common/io/ib/clients/of/THIRDPARTYLICENSE.descrip rename : usr/src/pkg/license_files/cr_Intel.SUNWfipe => usr/src/uts/i86pc/io/fipe/THIRDPARTYLICENSE
2010-07-30PSARC/2009/617 Software Events Notification Parameters CLIGavin Maltby1-2/+7
PSARC/2009/618 snmp-notify: SNMP Notification Daemon for Software Events PSARC/2009/619 smtp-notify: Email Notification Daemon for Software Events PSARC/2010/225 fmd for non-global Solaris zones PSARC/2010/226 Solaris Instance UUID PSARC/2010/227 nvlist_nvflag(3NVPAIR) PSARC/2010/228 libfmevent additions PSARC/2010/257 sysevent_evc_setpropnvl and sysevent_evc_getpropnvl PSARC/2010/265 FMRI and FMA Event Stabilty, 'ireport' category 1 event class, and the 'sw' FMRI scheme PSARC/2010/278 FMA/SMF integration: instance state transitions PSARC/2010/279 Modelling panics within FMA PSARC/2010/290 logadm.conf upgrade 6392476 fmdump needs to pretty-print 6393375 userland ereport/ireport event generation interfaces 6445732 Add email notification agent for FMA and software events 6804168 RFE: Allow an efficient means to monitor SMF services status changes 6866661 scf_values_destroy(3SCF) will segfault if is passed NULL 6884709 Add snmp notification agent for FMA and software events 6884712 Add private interface to tap into libfmd_msg macro expansion capabilities 6897919 fmd to run in a non-global zone 6897937 fmd use of non-private doors is not safe 6900081 add a UUID to Solaris kernel image for use in crashdump identification 6914884 model panic events as a defect diagnosis in FMA 6944862 fmd_case_open_uuid, fmd_case_uuisresolved, fmd_nvl_create_defect 6944866 log legacy sysevents in fmd 6944867 enumerate svc scheme in topo 6944868 software-diagnosis and software-response fmd modules 6944870 model SMF maintenance state as a defect diagnosis in FMA 6944876 savecore runs in foreground for systems with zfs root and dedicated dump 6965796 Implement notification parameters for SMF state transitions and FMA events 6968287 SUN-FM-MIB.mib needs to be updated to reflect Oracle information 6972331 logadm.conf upgrade PSARC/2010/290
2010-07-286959099 T2 Crypto Drivers (ncp, n2cp, n2rng) need to implement self tests ↵Misaki Miyashita8-462/+2522
for FIPS 140-2 compliance
2010-07-266779186 need domain controller hot failoverjoyce mcintosh1-24/+3
6970986 Level II oplocks - smb_oplock_grant_t shouldn't be dynamically allocated 6971031 Unable add ACL on the share which has only the default owner tab by ZFS 6971899 OpenSSL not MT-safe and takes down smbd 6936762 libidmap should transparently handle interruption in connection to idmapd 6954902 mapping to unknown type does not use directory-based mapping information --HG-- rename : usr/src/lib/libidmap/common/idmap_priv.h => usr/src/cmd/idmap/idmap/namemaps.h