smartos-live -------- commit b0cd21e6f42e4fa391cc396635f4e7946c80e8ff Author: Josh Wilsdon Date: Fri Sep 25 01:07:25 2015 -0700 OS-4777 zlog-mode set incorrectly when not using tty commit ec684e076fb4e4bc7941aa939eff26211a86c274 Author: Jerry Jelinek Date: Thu Sep 24 13:08:43 2015 +0000 OS-4775 dockerinit no longer needs to work around lx winsize issue commit a0b22b8cda265d0c2e5897305df7ec9a27337721 Author: Josh Wilsdon Date: Thu Sep 24 07:47:31 2015 -0700 OS-4752 VM.js should not change zlog-mode unless requested (add bit that missed the first commit) commit 6bf179926483eb50ab4a7506662976a0ddbb8b27 Author: Josh Wilsdon Date: Wed Sep 23 11:31:22 2015 -0700 OS-4752 VM.js should not change zlog-mode unless requested commit 75f6fd531d2f42afd2d5ea2fc1fb6f8f61f6c698 Author: Jerry Jelinek Date: Tue Sep 22 17:22:38 2015 +0000 OS-4748 dockerinit process in zone can run before zfd devices are ready commit b9b3974ce080657c83357cdca0bb7c73ae63cdd0 Author: Cody Peter Mello Date: Thu Sep 17 21:40:25 2015 +0000 OS-4750 Configured gateway gets dropped from NIC during upgrade to multiple IPs commit 2e8f2f7b1a1462648ad6c19811e7d319bd38936b Author: Patrick Mooney Date: Wed Sep 16 15:46:21 2015 +0000 OS-4744 ship NVMe commit 06d4d8d154d15d5f97ddc61ce55a9633bbf9a0dd Author: Cody Peter Mello Date: Tue Sep 15 21:59:59 2015 +0000 OS-2994 Add support for IPv6 addresses to vmadm & SmartOS zones (add missing file) commit 837b13405c6e871699999565a02e33ac0a8ba075 Author: Cody Peter Mello Date: Wed Jul 22 13:43:14 2015 -0700 OS-2994 Add support for IPv6 addresses to vmadm & SmartOS zones OS-4582 Add multiple addresses & gateways support Reviewed by: Josh Wilsdon Reviewed by: Josh Clulow commit 321f0ab20c12fc153d94c3e8859f787ab876df26 Author: Josh Wilsdon Date: Thu Sep 10 14:57:40 2015 +0000 OS-4664 dockerinit should know about log drivers and how to run an in-zone logger commit 23b2d4a3138533b22129b411ea32e4ad3cf31cb9 Author: Jerry Jelinek Date: Thu Sep 10 16:37:38 2015 +0000 OS-4666 busybox /bin/sh sets different SIGTERM behavior on LX than Linux commit d5dab2ac009edde28dadd084d1a2d490eb31e214 Author: Alain O'Dea Date: Fri Oct 11 18:25:56 2013 +0000 OS-4711 upper case man section references Reviewed by: Dave Eddy commit be56e53afbfd80cc963b6829d13b958b86fea05a Author: Dave Eddy Date: Fri Sep 4 19:46:51 2015 -0400 OS-4413 zonememstat "total" row and output headers commit 9a18d9792d6f64dd9ab37ac00a3fff260c822357 Author: Sebastian Wiedenroth Date: Thu Jun 5 14:30:05 2014 +0200 OS-4708 vmadm usage missing uuid parameter for reprovision Reviewed by: Dave Eddy commit c3881f2255b727b0b07d6a33a6f38bc327c57ccf Author: Michael Nisi Date: Thu Aug 13 19:55:51 2015 +0200 OS-4707 typo in vmadm man page Reviewed by: Dave Eddy commit 93de4227ad326abf05578879442e00ab27d4779c Author: Nahum Shalman Date: Tue Apr 7 12:56:24 2015 -0400 joyent/smartos-live#439 Want improved installer Co-author: Robert Mustacchi Reviewed by: Dave Eddy commit 251994b70f298e109ed3d982fd729cb0dcbb21c8 Author: Dave Eddy Date: Fri Sep 4 12:49:08 2015 -0400 OS-4704: OS-4610 broke the output of nictagadm commit 5cb5e2d183d6e56351feb7b1fa6e5407bad3580c Author: Alex Wilson Date: Fri Aug 14 16:13:38 2015 +0000 OS-4688 Switch platform over to using recent OpenSSH Reviewed by: Robert Mustacchi mdata-client -------- kvm-cmd -------- commit 3d466c1816e1a0af4c59c5335a9541a8ef01631f Author: Stefan Hajnoczi Date: Wed Jul 15 18:17:04 2015 +0100 rtl8139: check TCP Data Offset field The TCP Data Offset field contains the length of the header. Make sure it is valid and does not exceed the IP data length. Signed-off-by: Stefan Hajnoczi commit 4c28cb44984e7b7112178dfaa2b0c95e3c31a2e8 Author: Stefan Hajnoczi Date: Fri Sep 4 16:16:12 2015 +0000 rtl8139: skip offload on short TCP header TCP Large Segment Offload accesses the TCP header in the packet. If the packet is too short we must not attempt to access header fields: tcp_header *p_tcp_hdr = (tcp_header*)(eth_payload_data + hlen); int tcp_hlen = TCP_HEADER_DATA_OFFSET(p_tcp_hdr); Signed-off-by: Stefan Hajnoczi commit 505be34bc8392a8844c804d389d126aa837d7307 Author: Stefan Hajnoczi Date: Wed Jul 15 18:17:02 2015 +0100 rtl8139: check IP Total Length field The IP Total Length field includes the IP header and data. Make sure it is valid and does not exceed the Ethernet payload size. Signed-off-by: Stefan Hajnoczi commit b721141b831aaf85be762709d94b53c0146ab624 Author: Stefan Hajnoczi Date: Wed Jul 15 18:17:01 2015 +0100 rtl8139: check IP Header Length field The IP Header Length field was only checked in the IP checksum case, but is used in other cases too. Signed-off-by: Stefan Hajnoczi commit 08d7e3b88417e68890078d12567403f65ff1b892 Author: Stefan Hajnoczi Date: Fri Sep 4 16:14:55 2015 +0000 rtl8139: skip offload on short Ethernet/IP header Transmit offload features access Ethernet and IP headers the packet. If the packet is too short we must not attempt to access header fields: int proto = be16_to_cpu(*(uint16_t *)(saved_buffer + 12)); ... eth_payload_data = saved_buffer + ETH_HLEN; ... ip = (ip_header*)eth_payload_data; if (IP_HEADER_VERSION(ip) != IP_HEADER_VERSION_4) { Signed-off-by: Stefan Hajnoczi commit d98e4679e9b9510a8b0bdf0ae0e7de2aa0f3f8d1 Author: Stefan Hajnoczi Date: Fri Sep 4 16:13:36 2015 +0000 rtl8139: drop tautologous if (ip) {...} statement The previous patch stopped using the ip pointer as an indicator that the IP header is present. When we reach the if (ip) {...} statement we know ip is always non-NULL. Remove the if statement to reduce nesting. Signed-off-by: Stefan Hajnoczi Note, this was further modified to handle the case that we don't have the VLAN offload. commit d2f091cea2c66bb906b3737a754e8441fe6a7562 Author: Stefan Hajnoczi Date: Wed Jul 15 18:16:58 2015 +0100 rtl8139: avoid nested ifs in IP header parsing Transmit offload needs to parse packet headers. If header fields have unexpected values the offload processing is skipped. The code currently uses nested ifs because there is relatively little input validation. The next patches will add missing input validation and a goto label is more appropriate to avoid deep if statement nesting. Signed-off-by: Stefan Hajnoczi commit c314d1588614ddebd892ee1efd8a588654be9006 Author: Robert Mustacchi Date: Fri Sep 4 16:05:48 2015 +0000 HVM-833 Sync rtl8139 dprintf style commit 5dae2222119f7c4968e42f11e9603e64dab0ff7d Author: P J P Date: Fri Sep 4 13:40:39 2015 +0000 e1000: Avoid infinite loop in processing transmit descriptor While processing transmit descriptors, it could lead to an infinite loop if 'bytes' was to become zero; Add a check to avoid it. [The guest can force 'bytes' to 0 by setting the hdr_len and mss descriptor fields to 0. --Stefan] Signed-off-by: P J P Signed-off-by: Stefan Hajnoczi kvm -------- illumos -------- commit bffffae526f77bd42edace530fdc2c65f226079f Author: Jerry Jelinek Date: Thu Sep 24 12:38:22 2015 +0000 OS-4758 sshd issues on Alpine Linux 3.2 commit a53b4895769e00252f920955cf5b1022228e8c10 Author: Bryan Cantrill Date: Tue Sep 29 21:28:08 2015 +0000 OS-4791 harden dtrace_difo_chunksize() with respect to malicious DIF Reviewed by: Alex Wilson Reviewed by: Dan McDonald commit df3b36f3d97df979fb68b68560b333c9714fac70 Author: Patrick Mooney Date: Wed Sep 16 15:45:44 2015 +0000 OS-4744 ship NVMe commit 31a74c182cf2b5150a704786c53c053fd31b4c6d Merge: a845c80 39fd84a Author: Patrick Mooney Date: Wed Sep 16 14:55:15 2015 +0000 [illumos-gate merge] commit 39fd84a866206a99cbb6b6e63e0c38a367aaa88e 6119 mptsas doesn't handle timeouts in mptsas_get_sata_guid() commit 6d532798b6559eb98b586fd17725d8093f3b9ade 6168 strlcpy() does not return s1 commit 3c9168fa8e9c30d55b3aa2fde74bd7da46df53f5 4053 Add NVME Driver Support to Illumos commit b08923d6c9c63a4f4b647b84d9454d8124fcedd7 6210 ping can misreport ICMP latency 6211 want warnings in the face of long running name lookups for ping 6212 Want sub-second ping interval support 6213 clean up warnings in ping commit 0d045c0d0cb001d79480ee33be28514e847f8612 6209 libc mutexes break kernel writers hearts Conflicts: usr/src/cmd/cmd-inet/usr.sbin/ping/Makefile usr/src/cmd/cmd-inet/usr.sbin/ping/ping.c usr/src/lib/libc/port/threads/assfail.c usr/src/uts/common/Makefile.files usr/src/uts/common/Makefile.rules usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c usr/src/uts/common/sys/scsi/adapters/mpt_sas/mptsas_var.h commit 39fd84a866206a99cbb6b6e63e0c38a367aaa88e Author: Hans Rosenfeld Date: Tue Aug 4 23:02:41 2015 +0200 6119 mptsas doesn't handle timeouts in mptsas_get_sata_guid() Reviewed by: Josef 'Jeff' Sipek Reviewed by: Gordon Ross Reviewed by: Dan Fields Reviewed by: Yuri Pankov Reviewed by: Robert Mustacchi Reviewed by: Albert Lee Reviewed by: Garrett D'Amore Approved by: Dan McDonald commit 6734c4b0468cc77a7871a5dd5c23a5562557d64c Author: Robert Mustacchi Date: Sat Aug 8 00:24:00 2015 +0000 6189 want smbios 3.0 support 6190 libsmbios checks against the wrong version 6191 libsmbios can be a bit more forgiving to the past 6192 smbios misprints extended onboard devices Reviewed by: Igor Kozhukhov Reviewed by: Dan McDonald Reviewed by: Josef 'Jeff' Sipek Approved by: Garrett D'Amore commit 6d532798b6559eb98b586fd17725d8093f3b9ade Author: Damian Wojslaw Date: Mon Sep 14 16:35:38 2015 +0200 6168 strlcpy() does not return s1 Reviewed by: Marcel Telka Approved by: Robert Mustacchi commit 3c9168fa8e9c30d55b3aa2fde74bd7da46df53f5 Author: Hans Rosenfeld Date: Wed Oct 15 17:53:08 2014 +0200 4053 Add NVME Driver Support to Illumos Reviewed by: Dan Fields Reviewed by: Josef 'Jeff' Sipek Reviewed by: Robert Mustacchi Approved by: Dan McDonald commit a845c808b8c12dd241b837bd48ae775b26d458fe Merge: ac0b822 7bbfa3e Author: Patrick Mooney Date: Tue Sep 15 14:26:26 2015 +0000 [illumos-gate merge] commit 7bbfa3ee1f517d6d5762f10047886094cea843a1 6217 nfsauth_cache_get() should allocate/free maxlen for addr, not len commit 020c6b3e8852eb03df56f9b3fc96ffdc28975b1f 6227 truss(1M) doesn't show TCP_KEEPIDLE, TCP_KEEPCNT, and TCP_KEEPINTVL commit c546f36aa898d913ff77674fb5ff97f15b2e08b4 6220 memleak in l2arc on debug build commit b08923d6c9c63a4f4b647b84d9454d8124fcedd7 Author: Robert Mustacchi Date: Thu May 21 14:49:36 2015 +0000 6210 ping can misreport ICMP latency 6211 want warnings in the face of long running name lookups for ping 6212 Want sub-second ping interval support 6213 clean up warnings in ping Reviewed by: Jerry Jelinek Reviewed by: Joshua M. Clulow Reviewed by: Hans Rosenfeld Reviewed by: Josef 'Jeff' Sipek Approved by: Dan McDonald commit 0d045c0d0cb001d79480ee33be28514e847f8612 Author: Robert Mustacchi Date: Tue Jun 2 17:12:04 2015 +0000 6209 libc mutexes break kernel writers hearts Reviewed by: Jerry Jelinek Reviewed by: Josef 'Jeff' Sipek Reviewed by: Dan McDonald Reviewed by: Garrett D'Amore Approved by: Dan McDonald commit 7bbfa3ee1f517d6d5762f10047886094cea843a1 Author: Marcel Telka Date: Thu Sep 10 18:35:46 2015 +0200 6217 nfsauth_cache_get() should allocate/free maxlen for addr, not len Reviewed by: Dan McDonald Approved by: Robert Mustacchi commit 020c6b3e8852eb03df56f9b3fc96ffdc28975b1f Author: Mohamed A. Khalfella Date: Sun Sep 13 21:26:28 2015 +0300 6227 truss(1M) doesn't show TCP_KEEPIDLE, TCP_KEEPCNT, and TCP_KEEPINTVL Reviewed by: Dan McDonald Reviewed by: Richard PALO Reviewed by: Toomas Soome Approved by: Robert Mustacchi commit c546f36aa898d913ff77674fb5ff97f15b2e08b4 Author: Arne Jansen Date: Tue Sep 8 12:44:57 2015 +0200 6220 memleak in l2arc on debug build Reviewed by: Saso Kiselkov Reviewed by: Simon Klinkert Reviewed by: George Wilson Approved by: Robert Mustacchi commit ac0b8220e0412dac6c66e93475be7f8702d72dc3 Merge: 1066ed7 47d6cd8 Author: Patrick Mooney Date: Mon Sep 14 14:16:18 2015 +0000 [illumos-gate merge] commit 363d35fde600fdc6ede49498a7efc2ff2ab12a66 6188 add support for eventfd (missing driver pkg entry) commit d4cd038c92c36fd0ae35945831a8fc2975b5272c 6214 zpools going south commit 47d6cd81a842fb02c0db1bb31227cf9c303c8814 Author: Robert Mustacchi Date: Fri Aug 7 22:02:53 2015 +0000 6215 update ses connector list Reviewed by: Dan McDonald Reviewed by: Toomas Soome Reviewed by: Garrett D'Amore Approved by: Richard Lowe commit 091194e6fc9fb462c843bd5f1beea58d43650378 Author: Bryan Cantrill Date: Thu Sep 3 08:51:12 2015 -0700 6202 htable_reap() kicks off htable crime wave, destroying system Reviewed by: Robert Mustacchi Reviewed by: Josef 'Jeff' Sipek Reviewed by: Richard PALO Approved by: Albert Lee commit 9bd90b910ac60a25b2b3f2a00f19fca0af45b174 Author: Robert Mustacchi Date: Fri Aug 7 02:19:32 2015 +0000 6207 fm topo ses plugin should process enclosures in 'UNKNOWN' state Reviewed by: Hans Rosenfeld Approved by: Garrett D'Amore commit 363d35fde600fdc6ede49498a7efc2ff2ab12a66 Author: Robert Mustacchi Date: Fri Sep 11 12:54:37 2015 -0700 6188 add support for eventfd (missing driver pkg entry) Approved by: Dan McDonald commit d4cd038c92c36fd0ae35945831a8fc2975b5272c Author: Arne Jansen Date: Fri Sep 11 14:18:03 2015 -0700 6214 zpools going south Reviewed by: Dan McDonald Reviewed by: Igor Kozhukhov Reviewed by: George Wilson Reviewed by: Saso Kiselkov Approved by: Matthew Ahrens commit 1066ed7d9a1f062bbb9fae95a364b4125a8bdc62 Author: Robert Mustacchi Date: Fri Sep 11 12:08:04 2015 +0000 OS-2481 obytes64 drops despite vnic not being destroyed OS-4731 Want mac group walker and dcmds Reviewed by: Jerry Jelinek commit 9acc6699f823c5ea6d11bab0d14a8e9efc0dc859 Author: Jerry Jelinek Date: Fri Sep 11 17:47:48 2015 +0000 OS-4331 lxbrand RPC: Authentication error while mounting nfs commit 04e897ad9798e6c5ac51301efad5f47fabc50b78 Author: Jerry Jelinek Date: Fri Sep 11 17:00:34 2015 +0000 OS-4647 lx fails to mount nfs share - Transport endpoint is already connected commit f13fe5b0067651c187b89429b442473f0dfe1b8d Merge: b62b681 1767006 Author: Patrick Mooney Date: Fri Sep 11 15:13:36 2015 +0000 [illumos-gate merge] commit 1767006bb066ef500b90b432fba79d63d0d09b36 6188 add support for eventfd Conflicts: usr/src/cmd/devfsadm/misc_link.c usr/src/lib/libc/i386/Makefile.com usr/src/lib/libc/sparc/Makefile.com usr/src/lib/libc/sparcv9/Makefile.com usr/src/man/man3c/eventfd.3c usr/src/man/man5/eventfd.5 usr/src/uts/common/Makefile.files usr/src/uts/common/io/eventfd.c usr/src/uts/sparc/Makefile.sparc commit b62b68123223dfbbe48210441e87d115c8098771 Merge: 47867e6 cf6106c Author: Patrick Mooney Date: Thu Sep 10 13:55:23 2015 +0000 [illumos-gate merge] commit cf6106c8a0d6598b045811f9650d66e07eb332af 5987 zfs prefetch code needs work commit 1767006bb066ef500b90b432fba79d63d0d09b36 Author: Bryan Cantrill Date: Fri Aug 28 17:45:00 2015 -0700 6188 add support for eventfd Reviewed by: Albert Lee Reviewed by: Igor Kozhukhov Reviewed by: Dan McDonald Reviewed by: Gordon Ross Approved by: Richard Lowe commit cf6106c8a0d6598b045811f9650d66e07eb332af Author: Matthew Ahrens Date: Tue Sep 8 11:36:05 2015 -0700 5987 zfs prefetch code needs work Reviewed by: Adam Leventhal Reviewed by: George Wilson Reviewed by: Paul Dagnelie Approved by: Gordon Ross commit 47867e6026c890cb5ce0fb9a3a75015174dd0b26 Author: Jerry Jelinek Date: Wed Sep 9 21:34:31 2015 +0000 OS-4725 fcntl(infd, F_SETOWN, getpid()) for /dev/tty fails commit 8837fefacef8d1b76e1b31b39c2f5fc0c461ccb0 Author: Patrick Mooney Date: Tue Sep 8 22:02:32 2015 +0000 OS-4695 lxbrand move epoll_create in-kernel Reviewed by: Jerry Jelinek commit aa2aa0157230d27b95ab615d5da5323c3411369b Merge: 75bfec4 e7c874a Author: Jerry Jelinek Date: Wed Sep 9 11:21:53 2015 +0000 [illumos-gate merge] commit e7c874af0c35dbf6ef9d056e7be939b0b4e2b0d7 6065 page hash: use a static inline instead of a macro commit 75bfec4856787510498d8faf9c3e804d71b6f339 Author: Jerry Jelinek Date: Tue Sep 8 23:18:24 2015 +0000 OS-4694 need support for in-zone docker logging commit 26bd3a79a40a1f5bbd290d933c101a992b3a69df Author: Alex Wilson Date: Tue Sep 8 11:52:58 2015 -0700 OS-4720 manpages about privileges are out of date wrt basicset and new privs in it Reviewed by: Robert Mustacchi Reviewed by: Jerry Jelinek commit e7c874af0c35dbf6ef9d056e7be939b0b4e2b0d7 Author: Josef 'Jeff' Sipek Date: Thu Jul 23 13:38:16 2015 -0400 6065 page hash: use a static inline instead of a macro Reviewed by: Dan McDonald Approved by: Robert Mustacchi commit 0cc355c2e6d0f1ceb6efa371505ed4fbf0e7568c Author: Bryan Cantrill Date: Tue Sep 8 08:00:44 2015 +0000 OS-4648 LX /proc/cpuinfo starts at current CPU instead of #0 commit f02d4dd3ff080329f0cb01b63fef17bb6a72c06b Author: Bryan Cantrill Date: Tue Sep 8 07:59:32 2015 +0000 OS-4713 timerfd_settime(3C) should clear tfd_fired commit 776df8cd0f399e238b36d4e075fc9e49be5188bf Author: Robert Mustacchi Date: Wed Sep 2 00:38:46 2015 +0000 OS-4692 MAC tries to use aggr rings from downed links Reviewed by: Bryan Cantrill Reviewed by: Patrick Mooney commit d3f733727b32121f182aebf92553c993506cc0cb Merge: d0c1b87 2ed9632 Author: Jerry Jelinek Date: Fri Sep 4 12:00:23 2015 +0000 [illumos-gate merge] commit 22146ea93e24c7deb02c49c33b2ab98605ce78b4 6090 IOPS, bandwidth, and latency kstats for NFS server commit cf98b944cdc2063fc14f3fd525e284de3ed29fd0 5907 xdrmblk_getpos() is unreliable commit fb01aed523c52aea9a7b48fe29a1b2624c7f21c5 6197 get rid of unused checks in fs-root and fs-usr boot scripts commit 146e34b68e0380c276523b9f82600fb18f9730a9 6180 DHCP address detection isn't aware of DHCPv6 Rapid Commits Conflicts: usr/src/uts/common/io/mac/mac_protect.c commit 2ed96329a073f74bd33f766ab982be14f3205bc9 Author: Bryan Cantrill Date: Fri Jun 5 18:51:46 2015 +0000 6178 fix for 5234 reintroduced 3921 Reviewed by: Josef 'Jeff' Sipek Approved by: Richard Lowe commit d0c1b872bd54d7989a1f97af5d5d86ec4a13cabe Author: Alex Wilson Date: Tue Aug 11 00:23:16 2015 +0000 OS-4689 Remove SunSSH from illumos-joyent OS-4688 Switch platform over to using recent OpenSSH Reviewed by: Robert Mustacchi commit 22146ea93e24c7deb02c49c33b2ab98605ce78b4 Author: Marcel Telka Date: Wed Sep 2 08:18:08 2015 +0200 6090 IOPS, bandwidth, and latency kstats for NFS server Reviewed by: Josef 'Jeff' Sipek Reviewed by: Richard Elling Approved by: Dan McDonald commit cf98b944cdc2063fc14f3fd525e284de3ed29fd0 Author: Marcel Telka Date: Thu Sep 3 19:47:20 2015 +0200 5907 xdrmblk_getpos() is unreliable Reviewed by: Josef 'Jeff' Sipek Reviewed by: Yuri Pankov Reviewed by: Richard Elling Approved by: Dan McDonald commit fb01aed523c52aea9a7b48fe29a1b2624c7f21c5 Author: Alexander Eremin Date: Wed Sep 2 05:33:33 2015 -0700 6197 get rid of unused checks in fs-root and fs-usr boot scripts Reviewed by: Toomas Soome Reviewed by: Peter Tribble Reviewed by: Dan McDonald Approved by: Gordon Ross commit 42d2cb6faf809f84bbfd0fd73fe6f644b8417053 Merge: fd60a2a 892f67e Author: Jerry Jelinek Date: Thu Sep 3 12:28:52 2015 +0000 [illumos-gate merge] commit 892f67e40e1eb46c09794613082d56ebd2d8088d 6173 mdb ought honour the depress of Home and End commit 0ad555ad6a787635be8c8a424168dc59cfbce6c7 6174 /dev/zvol does not show pool directories Conflicts: usr/src/uts/common/sys/fs/sdev_impl.h usr/src/uts/common/fs/dev/sdev_zvolops.c usr/src/cmd/mdb/common/mdb/mdb_termio.c commit 146e34b68e0380c276523b9f82600fb18f9730a9 Author: Cody Peter Mello Date: Mon Aug 10 18:55:56 2015 +0000 6180 DHCP address detection isn't aware of DHCPv6 Rapid Commits Reviewed by: Patrick Mooney Reviewed by: Robert Mustacchi Reviewed by: Dan McDonald Reviewed by: Sebastian Wiedenroth Approved by: Richard Lowe commit 892f67e40e1eb46c09794613082d56ebd2d8088d Author: Joshua M. Clulow Date: Tue Mar 10 22:31:36 2015 -0700 6173 mdb ought honour the depress of Home and End Reviewed by: Robert Mustacchi Reviewed by: Toomas Soome Reviewed by: Jason King Reviewed by: Josef Sipek Approved by: Dan McDonald commit e3c6427a8c15992042ea477cf18805764b7e41e0 Author: Alex Wilson Date: Tue Aug 11 23:04:27 2015 +0000 6175 sdev can create bogus zvol directories Reviewed by: Robert Mustacchi Reviewed by: Jason King Approved by: Dan McDonald commit 0ad555ad6a787635be8c8a424168dc59cfbce6c7 Author: Alex Wilson Date: Fri Aug 28 18:03:26 2015 -0700 6174 /dev/zvol does not show pool directories Reviewed by: Robert Mustacchi Reviewed by: Jason King Approved by: Dan McDonald illumos-extra -------- commit e9a384dad164467e1288d722794ff9de52e958c8 Author: Alex Wilson Date: Wed Sep 16 11:07:23 2015 -0700 OS-4745 openssh wants libwrap/tcpwrappers back Reviewed by: Robert Mustacchi Reviewed by: Jonathan Perkin commit 3c721f39b0e7083e93d8a2df34063ad6e5f2dea8 Author: Alex Wilson Date: Wed Sep 9 16:57:05 2015 -0700 OS-4726 openssh illumos-extra readme needs updating Reviewed by: Patrick Mooney commit 073e6fd12e5076484940c626b2e5a80b4a43644b Author: Alex Wilson Date: Wed Sep 9 10:54:00 2015 -0700 OS-4724 new OpenSSH breaks ssh-keygen and sdc-healthcheck Reviewed by: Patrick Mooney commit a9194bb34038c48db22efa19954c0e3a8b0c229c Author: Alex Wilson Date: Tue Sep 8 15:39:03 2015 -0700 OS-4722 opensshd fails to start on first attempt, creating /var/empty Reviewed by: Jerry Jelinek commit 459b5eeb1d35131d144e38b32d3cefa619900f13 Author: Alex Wilson Date: Tue Sep 8 13:48:48 2015 -0700 OS-4717 sshd noise on console Reviewed by: Jerry Jelinek commit 27ad1ea5c49e5c53c6f4b7ece611a6db361546d8 Author: Alex Wilson Date: Fri Sep 4 11:07:20 2015 -0700 OS-4706 OpenSSH needs dh-group1 re-enabled OS-4705 OpenSSH drops LANG/LC_* env vars by default Reviewed by: Robert Mustacchi commit 2d53fd05c19f5632221b282182a9e4eb41fdbdbf Author: Alex Wilson Date: Mon Aug 10 17:51:32 2015 -0700 OS-4688 Switch platform over to using recent OpenSSH Reviewed by: Robert Mustacchi