committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
1f7d11e6 | ceri | July 1, 2021, 3:52 p.m. | build.7: remove documentation of "make update"
update target was removed in e290182bcf3895ca659dff111bca6a077c4708b1cgit |
|
2eb4d8dc | manu | July 1, 2021, 3:51 p.m. | Import device-tree files from Linux 5.13
Sponsored by: Diablotin Systemscgit |
|
71ca10f8 | manu | July 1, 2021, 3:50 p.m. | Import device-tree files from Linux 5.13 | |
82ea1a07 | manu | July 1, 2021, 3:41 p.m. | Import device-tree files from Linux 5.12
Sponsored by: Diablotin Systemscgit |
|
c7a3c729 | manu | July 1, 2021, 3:39 p.m. | Import device-tree files from Linux 5.12 | |
1426907f | imp | July 1, 2021, 3:33 p.m. | hz.9: update stathz for current usage
Update the stathz description to reflect reality. profhz is the only thing we should deprecate. Add some implementation notes that describe the optimizations made to date. Discusssed with: emaste Reviewed by: kib (prior), jhb (prior), gbe Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D30815cgit |
|
b192a2c0 | noreply | July 1, 2021, 3:32 p.m. | Remove avl_size field from struct avl_tree
This field is used only by illumos mdb. On other platforms it only increases the struct size from 32 to 40 bytes. For struct vdev_queue including 13 instances of avl_tree_t size means active cache lines. Keep the padding in user-space for now to not break the ABI. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored-By: iXsystems, Inc. Closes #12290cgit |
|
490c845e | noreply | July 1, 2021, 3:30 p.m. | Compact dbuf/buf hashes and lock arrays
With default dbuf cache size of 1/32 of ARC, it makes no sense to have hash table of the same size (or even bigger on Linux). Reduce it to 1/8 of ARC's one, still leaving some slack, assuming higher I/O rate via dbuf cache than via ARC. Remove padding from ARC hash locks array. The idea behind padding is to avoid false sharing between locks. It would have sense if there would be a limited number of very busy locks. But since we have no limit on the number, using the same memory for more locks we can achieve even lower lock contention with the same false sharing, or we can use less memory for the same contention level. Reduce number of hash locks from 8192 to 2048. The number is still big enough to not cause contention, but reduced memory size improves cache hit rate for mutex_tryenter() in ARC eviction thread, saving about 1% of the thread time. Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored-By: iXsystems, Inc. Closes #12289cgit |
|
c6d1112b | noreply | July 1, 2021, 3:28 p.m. | Fix abd leak, kmem_free correct size of abd_t
Fix a leak of abd_t that manifested mostly when using raidzN with at least as many columns as N (e.g. a four-disk raidz2 but not a three-disk raidz2). Sufficiently heavy raidz use would eventually run a system out of memory. Additionally: * Switch abd_cache arena to FIRSTFIT, which empirically improves perofrmance. * Make abd_chunk_cache more performant and debuggable. * Allocate the abd_zero_buf from abd_chunk_cache rather than the heap. * Don't try to reap non-existent qcaches in abd_cache arena. * KM_PUSHPAGE->KM_SLEEP when allocating chunks from their own arena Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Signed-off-by: Jorgen Lundman <lundman@lundman.net> Co-authored-by: Sean Doran <smd@use.net> Closes #12295cgit |
|
eca17452 | noreply | July 1, 2021, 3:22 p.m. | Upstream: dmu_zfetch_stream_fini leaks refcount
dmu_zfetch_stream_fini() is missing calls to destroy the refcounts, leaking them and the mutex inside. Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Signed-off-by: Jorgen Lundman <lundman@lundman.net> Closes #12294cgit |
|
5def4c47 | manu | July 1, 2021, 3:21 p.m. | Import device-tree files from Linux 5.11
Sponsored by: Diablotin Systemscgit |
|
50e09edd | noreply | July 1, 2021, 3:20 p.m. | Optimize txg_kick() process (#12274)
Use dp_dirty_pertxg[] for txg_kick(), instead of dp_dirty_total in original code. Extra parameter "txg" is added for txg_kick(), thus it knows which txg to kick. Also txg_kick() call is moved from dsl_pool_need_dirty_delay() to dsl_pool_dirty_space() so that we can know the txg number assigned for txg_kick(). Some unnecessary code regarding dp_dirty_total in txg_sync_thread() is also cleaned up. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Alexander Motin <mav@FreeBSD.org> Signed-off-by: jxdking <lostking2008@hotmail.com> Closes #12274cgit |
|
42afb12d | noreply | July 1, 2021, 3:16 p.m. | Remove refcount from spa_config_*()
The only reason for spa_config_*() to use refcount instead of simple non-atomic (thanks to scl_lock) variable for scl_count is tracking, hard disabled for the last 8 years. Switch to simple int scl_count reduces the lock hold time by avoiding atomic, plus makes structure fit into single cache line, reducing the locks contention. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Mark Maybee <mark.maybee@delphix.com> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored-By: iXsystems, Inc. Closes #12287cgit |
|
244002b4 | andrew | July 1, 2021, 12:48 a.m. | Switch the order of the ID_AA64PFR1_EL1 fields
This makes them consistent with the fields in other registers. Sponsored by: The FreeBSD Foundationcgit |
|
d93a2f5d | ceri | July 1, 2021, 1:02 p.m. | fortune: correct documentation of default FORTUNE_PATH.
While here, fix a typo in a comment relating to FORTUNE_PATHcgit |