aboutsummaryrefslogtreecommitdiff
path: root/cddl/contrib
Commit message (Collapse)AuthorAgeFilesLines
* MFV illumosRui Paulo2014-06-2616-4/+877
| | | | | | | | | 4477 DTrace should speak JSON MFC after: 2 weeks Notes: svn path=/head/; revision=267937
* MFV illumos r266986:Rui Paulo2014-06-266-3/+461
| | | | | | | | | | | 2915 DTrace in a zone should see "cpu", "curpsinfo", et al 2916 DTrace in a zone should be able to access fds[] 2917 DTrace in a zone should have limited provider access MFC after: 2 weeks Notes: svn path=/head/; revision=267929
* Revert r267898.Rui Paulo2014-06-2618-2289/+39
| | | | Notes: svn path=/head/; revision=267925
* Bring the following change from the illumos-joyent repository:Rui Paulo2014-06-2618-39/+2289
| | | | | | | | | | | | | | | commit 78e24ab6803bbe11ba37642624e1498ede5b239d Author: Bryan Cantrill <bryan@joyent.com> Date: Thu Oct 31 01:20:54 2013 OS-1688 DTrace count() with histogram OS-2360 DTrace full width distribution histograms OS-2361 DTrace frequency trails MFC after: 2 weeks Notes: svn path=/head/; revision=267898
* MFV r258381:Pedro F. Giffuni2014-06-251-2/+7
| | | | | | | | | | | | | | | | 4251 libdtrace leaks open file handles Illumos commit: 93ed8d0d4b068b95d0bb50d57bb854df462a8485 (partial) Reference: https://www.illumos.org/issues/4251 Discussed with: Robert Mustacchi Obtained from: Illumos MFC after: 1 week Notes: svn path=/head/; revision=267875
* mdoc: remove superfluous paragraph macros.Joel Dahl2014-06-231-1/+0
| | | | Notes: svn path=/head/; revision=267803
* MFV r249332 (illumos-gate 14005:55fc53126003)Xin LI2014-06-171-1/+38
| | | | | | | | | | Illumos ZFS issues: 3654 zdb should print number of ganged blocks MFC after: 2 weeks Notes: svn path=/head/; revision=267572
* MFV r266988:Pedro F. Giffuni2014-06-153-0/+168
| | | | | | | | | | | | | | Merge from r258379 missed the tests. 4248 dtrace(1M) should never create DOF with empty probes section 4249 Only probes from the first DTrace object file will be included Illumos Revision: 54a20ab41aadcb81c53e72fc65886e964e9add59 MFC after: 5 days Notes: svn path=/head/; revision=267513
* MFV r266766:Xin LI2014-05-271-2/+49
| | | | | | | | | | | | | | | | | | | | | | | | Add a new zfs property, "redundant_metadata" which can have values "all" or "most". The default will be "all", which is the current behavior. When set to all, ZFS stores an extra copy of all metadata. If a single on-disk block is corrupt, at worst a single block of user data (which is recordsize bytes long) can be lost. Setting to "most" will cause us to only store 1 copy of level-1 indirect blocks of user data files. This can improve performance of random writes, because less metadata has to be written. In practice, at worst about 100 blocks (of recordsize bytes each) of user data can be lost if a single on-disk block is corrupt. The exact behavior of which metadata blocks are stored redundantly may change in future releases. Illumos issue: 3835 zfs need not store 2 copies of all metadata MFC after: 2 weeks Notes: svn path=/head/; revision=266771
* Fix tst.ZeroModuleProbes.d.ksh, which was incorrectly modified in r178534.Mark Johnston2014-05-191-1/+1
| | | | | | | | | Since "BEGIN" is not the name of a module, the test would just hang. MFC after: 3 days Notes: svn path=/head/; revision=266454
* Comment out some pointless device open/close around reading device IDs.Alexander Motin2014-05-103-0/+10
| | | | | | | | | | | | FreeBSD ZFS port unlike OpenSolaris does not use device IDs, and does not implement respective devid_*() fuctions. It is pointless to open devices just to close them back immediately. MFC after: 2 weeks Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=265821
* Re-apply r248644. This fixes an annoying problem which caused dtrace -c toMark Johnston2014-05-081-1/+1
| | | | | | | | | | | | | | fail to attach to stripped binaries. With the _r_debug_postinit symbol, dtrace(1) can now set a breakpoint in the victim process after it has registered its DOF table(s) with the kernel. r_debug_state cannot be used for this purpose since it is called before DOF is made available, in which case dtrace(1) cannot create USDT probes before the program begins execution. MFC after: 2 weeks Notes: svn path=/head/; revision=265631
* Silence compiler warning due to missing return in idmap_id_to_numeric_domain_ridSteven Hartland2014-04-241-0/+1
| | | | Notes: svn path=/head/; revision=264852
* Eliminated optarg global being used outside of the function which called getoptSteven Hartland2014-04-241-6/+5
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=264851
* MFV r264829:Xin LI2014-04-234-3/+115
| | | | | | | | | 3897 zfs filesystem and snapshot limits MFC after: 2 weeks Notes: svn path=/head/; revision=264835
* MFV r264666:Xin LI2014-04-183-10/+10
| | | | | | | | | | | 4374 dn_free_ranges should use range_tree_t illumos/illumos-gate@bf16b11e8deb633dd6c4296d46e92399d1582df4 MFC after: 2 weeks Notes: svn path=/head/; revision=264669
* Replace a few Solarisisms with their corresponding FreeBSDisms to make a fewMark Johnston2014-04-156-6/+6
| | | | | | | printf tests pass. Notes: svn path=/head/; revision=264487
* Use the correct format specifiers for wide characters and strings of wideMark Johnston2014-04-151-0/+5
| | | | | | | | | characters. MFC after: 1 week Notes: svn path=/head/; revision=264486
* Take into account when zpool history block grows exceeding 128KB in zpool(8)Xin LI2014-04-142-7/+54
| | | | | | | | | | | | and zdb(8) by growing the buffer on demand with a cap of 1GB (specified in spa_history_create_obj()). PR: bin/186574 Submitted by: Andrew Childs <lorne cons org nz> (with changes) MFC after: 2 weeks Notes: svn path=/head/; revision=264467
* Add property and sysctl to control how ZVOLs are exposed to OS.Alexander Motin2014-04-051-1/+33
| | | | | | | | | | | | | | | | | | | | | | | New ZFS property volmode and sysctl vfs.zfs.vol.mode allow switching ZVOL between three modes: geom -- existing fully functional behavior (default); dev -- exposing volumes only as raw disk device file in devfs; none -- not exposing volumes outside ZFS. The "dev" mode is less functional (can't be partitioned, mounted, etc), but it is faster, and in some scenarios with untrusted consumers safer. It can be useful for NAS, VM block storages, etc. The "none" mode may be convenient for backup servers, etc. that don't need direct data access. Due to the way ZVOL is integrated with main ZFS code, those property and sysctl are checked only during pool import and volume creation. MFC after: 1 month Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=264145
* MFV r258379;Pedro F. Giffuni2014-04-023-8/+23
| | | | | | | | | | | | | | | | | 4248 dtrace(1M) should never create DOF with empty probes section 4249 Only probes from the first DTrace object file will be included Illumos Revision: 4a20ab41aadcb81c53e72fc65886e964e9add59 Reference: https://www.illumos.org/issues/4248 https://www.illumos.org/issues/4249 Obtained from: Illumos MFC after: 1 month Notes: svn path=/head/; revision=264040
* MFV r263887:Xin LI2014-03-285-30/+154
| | | | | | | | | | 3993 zpool(1M) and zfs(1M) should support -p for "list" and "get" 4700 "zpool get" doesn't support -H or -o options MFC after: 2 weeks Notes: svn path=/head/; revision=263889
* MFV 263436-263438:Xin LI2014-03-213-13/+49
| | | | | | | | | | | | | | | | | 3947 zpool(1M) references nonexistent zfs-features(5) 4540 zpool(1M) man page doesn't describe "readonly" property 3948 zfs sync=default is not accepted 4611 zfs(1M) still mentions 'send -r' in synopsis 4415 zpool(1M) man page missing "import -m" description 4570 Document dedupditto pool property 4572 Dedup-related documentation additions for zpool and zdb. 1371 Add -D option description to zpool(1M) manpage 4571 Add documentation for -T and interval to "zpool list" MFC after: 2 weeks Notes: svn path=/head/; revision=263459
* Remove unused option -r from zpool.Xin LI2014-03-191-1/+1
| | | | | | | | Submitted by: Richard Yao <ryao gentoo org> MFC after: 2 weeks Notes: svn path=/head/; revision=263385
* cddl/contrib/opensolaris/lib/libuutil/common/uu_avl.cAlan Somers2014-03-071-0/+1
| | | | | | | | | | | | Fix a memory leak in uu_avl_pool_create: pthread_mutex_init without a corresponding pthread_mutex_destroy. It shows up, among other places, when doing "zfs list". MFC after: 3 weeks Sponsored by: Spectra Logic Corporation Notes: svn path=/head/; revision=262912
* When our linker merges .SUNW_dof sections from multiple files, it simplyMark Johnston2014-03-011-30/+58
| | | | | | | | | | | | | | concatenates the DOF tables into one section. Previously, the USDT init code in drti.o would only look at the first table in the DOF section; with this change, it iterates over all the tables, passing each DOF table to the kernel. PR: 186821 Submitted by: Fedor Indutny <fedor@indutny.com> MFC after: 1 month Notes: svn path=/head/; revision=262669
* 4478 dtrace_dof_maxsize is far too smallMark Johnston2014-02-281-0/+97
| | | | | | | | | | illumos/illumos-gate@d339a29bb4765c4b6883a935cf69b669cd05bca0 PR: 187027 MFC after: 1 week Notes: svn path=/head/; revision=262596
* MFV r262570:Xin LI2014-02-271-4/+11
| | | | | | | | | | | 4626 libzfs memleak in zpool_in_use() illumos/illumos-gate@fb13f48f1d9593453b94cd1c7277553b56f493c8 MFC after: 2 weeks Notes: svn path=/head/; revision=262577
* 1452 DTrace buffer autoscaling should be less violentMark Johnston2014-02-223-43/+0
| | | | | | | | | | | | | | illumos/illumos-gate@6fb4854bed54ce82bd8610896b64ddebcd4af706 This fixes the tst.resize1.d and tst.resize2.d DTrace tests, which have been failing since r261122 since they were causing dtrace(1) to attempt to allocate and use large amounts of memory, and get killed by the OOM killer as a result. MFC after: 1 month Notes: svn path=/head/; revision=262330
* Fix formatting.Mark Felder2014-02-171-2/+2
| | | | | | | | | | | | "Manpages should start a new sentence on a new line. This makes it easier for translators to track changes." -jhb Approved by: jhb MFC after: 3 days Sponsored by: SupraNet Communications, Inc Notes: svn path=/head/; revision=262051
* zfs.8: fix garbled options in a sample zfs send -R command lineAndriy Gapon2014-02-141-1/+1
| | | | | | | MFC after: 5 days Notes: svn path=/head/; revision=261893
* zpool.8: fix typo in option description of labelclear commandAndriy Gapon2014-02-141-1/+1
| | | | | | | MFC after: 5 days Notes: svn path=/head/; revision=261892
* Add caveat to zpool manpage indicating that we do not automatically activateMark Felder2014-02-111-0/+6
| | | | | | | | | | | | | | hot spares. This should be MFC'd to all STABLE branches. Upon the availability of zfsd, the zpool manpage on relevant branches should be updated to remove this caveat and document hot spare's reliance on zfsd. Approved by: avg MFC after: 1 week Sponsored by: SupraNet Communications Notes: svn path=/head/; revision=261774
* Only declare `bysz' variable under little endian archs.Kai Wang2014-01-291-1/+4
| | | | Notes: svn path=/head/; revision=261259
* MFH@261151.Kai Wang2014-01-251-10/+0
|\ | | | | | | Notes: svn path=/projects/elftoolchain/; revision=261159
| * dtrace: remove unexplained 16MB limitation from dt_alloc/dt_zallocAndriy Gapon2014-01-241-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | The limitation was introduced in r178556 without any note or comment. It seems pretty artificial and now it leads to problems like the following: $ dtrace -x bufsize=17m -n ... dtrace: processing aborted: Memory allocation failure OpenSolaris and illumos never had this limitation. Sponsored by: HybridCluster Notes: svn path=/head/; revision=261122
* | Simplify DWARF version check.Kai Wang2014-01-251-8/+2
| | | | | | | | | | | | | | Submitted by: emaste Notes: svn path=/projects/elftoolchain/; revision=261154
* | Let ctfconvert accept DWARF version 3 and 4.Kai Wang2014-01-221-3/+6
| | | | | | | | Notes: svn path=/projects/elftoolchain/; revision=261025
* | MFH@260917.Kai Wang2014-01-202-0/+2
|\| | | | | | | Notes: svn path=/projects/elftoolchain/; revision=260920
| * zdb -R: do not treat numeric parameters to a flag as more flagsAndriy Gapon2014-01-171-0/+1
| | | | | | | | | | | | | | | | Reviewed by: Matthew Ahrens <mahrens@delphix.com> MFC after: 1 week Notes: svn path=/head/; revision=260811
| * zinject must use ioctl(2) compatibility wrapperAndriy Gapon2014-01-161-0/+1
| | | | | | | | | | | | | | | | MFC after: 8 days Sponsored by: HybridCluster Notes: svn path=/head/; revision=260703
* | Clang 3.4 will sometimes emit DIE for struct/union member beforeKai Wang2014-01-201-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | emitting the DIE for the type of that member. ctfconvert can not handle this properly and will calculate a wrong member bit offset. Same struct/union type from different .o file will be treated as different types when their member bit offsets are different, and gets added/merged multiple times. This will in turn cause many other structs/pointers/typedefs that refer to the duplicated struct/union gets added/merged multiple times and eventually causes numerous duplicated CTF types in the kernel.debug file. The simple workaround here is to make use of DW_AT_byte_size attribute of the member DIE to calculate the bits occupied by the member's type, without actually resolving the type. Notes: svn path=/projects/elftoolchain/; revision=260897
* | * Make die_mem_offset() be able to handle DW_AT_data_member_locationKai Wang2014-01-191-9/+57
| | | | | | | | | | | | | | | | | | | | attributes generated by Clang 3.4. * Document how different compilers generate DW_AT_data_member_location attributes differently. * Document the quirks about DW_FORM_data[48]. Notes: svn path=/projects/elftoolchain/; revision=260880
* | We should not set the unnamed DIE's name to "__anon__" since that willKai Wang2014-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | bring back a known issue with DTrace regarding type name comparison. Instead, we can set the name to an empty string. Pointed out by: avg Notes: svn path=/projects/elftoolchain/; revision=260809
* | If function die_name() finds a DIE without a name, set its name toKai Wang2014-01-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | "__anon__". This hack is used to workaround a issue that compilers like GCC could generate DW_TAG_base_type DIE without a name. Note that we didn't need this before because the old libdwarf internally set all the unnamed DIE's name to "__anon__". Notes: svn path=/projects/elftoolchain/; revision=260797
* | Convert ctfconvert to use the new libdwarf API.Kai Wang2014-01-161-30/+34
|/ | | | Notes: svn path=/projects/elftoolchain/; revision=260795
* MFV r260154 + 260182:Xin LI2014-01-0212-159/+767
| | | | | | | | | | | | 4369 implement zfs bookmarks 4368 zfs send filesystems from readonly pools Illumos/illumos-gate@78f171005391b928aaf1642b3206c534ed644332 MFC after: 2 weeks Notes: svn path=/head/; revision=260183
* MFV r260152:Xin LI2014-01-011-2/+2
| | | | | | | | | | | | | 4208 Typo in zfs_main.c: "posxiuser" illumos/illumos-gate@f38cb554a534c6df738be3f4d23327e69888e634 Note: this is a stripped down version of Illumos change. MFC after: 2 weeks Notes: svn path=/head/; revision=260156
* MFV r259170:Xin LI2014-01-014-47/+136
| | | | | | | | | | | | | | | | 4370 avoid transmitting holes during zfs send 4371 DMU code clean up illumos/illumos-gate@43466aae47bfcd2ad9bf501faec8e75c08095e4f NOTE: Make sure the boot code is updated if a zpool upgrade is done on boot zpool. MFC after: 2 weeks Notes: svn path=/head/; revision=260150
* MFV r258972:Xin LI2013-12-312-4/+123
| | | | | | | | | | | 4373 add block contents print to zstreamdump illumos/illumos-gate@994fb6b8a9d07a8021d77d79f46e30637bca3ad3 MFC after: 2 weeks Notes: svn path=/head/; revision=260142