summaryrefslogtreecommitdiffstats
path: root/zfs
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to explicitly say GPLv2+Daniel Lange2021-09-225-5/+5
|
* platform-dependent files included relative to main source directorymayurdahibhate2021-05-104-5/+6
|
* cleaned up includes with iwyumayurdahibhate2021-05-104-1/+6
|
* Use RichString_appendnAscii where possibleChristian Göttsche2021-04-261-6/+8
| | | | | | | | | | `RichString_appendnAscii()` avoids a `strlen(3)` call over ` RichString_appendAscii()`. Use the former where the length is available from a previous checked `snprintf(3)` call. Keep `RichString_appendAscii()` when passing a string literal and rely on compilers to optimize the `strlen(3)` call away.
* ZfsCompressedArcMeter: avoid division by 0Christian Göttsche2021-04-221-1/+5
| | | | On systems not using ZFS `this->values[0]` is zero.
* Save text buffer in MeterChristian Göttsche2021-03-042-3/+5
|
* Move generic (shared) code into its own sub-directoryNathan Scott2021-03-042-114/+0
| | | | | | | | Code that is shared across some (but not all) platforms is moved into a 'generic' home. Makefile.am cleanups to match plus some minor alphabetic reordering/formatting. As discussed in https://github.com/htop-dev/htop/pull/553
* Drop empty file zfs/ZfsArcStats.cChristian Göttsche2021-02-171-10/+0
|
* Make ZFS Meter "Unavailable" text match others -> FAILED_READ coloringDaniel Lange2021-02-092-2/+2
|
* Forgot to correctly color ZFS ARC ratioRoss Williams2021-02-091-1/+1
| | | | | | | | | | `ZFS_RATIO` in `CRT.c` was unused, because I forgot to colorize the ARC ratio in the Compressed ARC meter. The intent was to improve readability of the meter by highlighting the most relevant value, the ratio, in a brighter color, for most themes. This change effects that intent.
* Split RichString_(append|appendn|write) into wide and asciiChristian Göttsche2020-12-082-23/+23
| | | | | | | | RichString_writeFrom takes a top spot during performance analysis due to the calls to mbstowcs() and iswprint(). Most of the time we know in advance that we are only going to print regular ASCII characters.
* Use sizeof buffer instead of magic numberChristian Göttsche2020-12-082-10/+10
|
* Introduce METER_BUFFER_CHECK and METER_BUFFER_APPEND_CHR to cleanup writing ↵Christian Göttsche2020-12-061-6/+5
| | | | | | to bar buffers Closes: #294
* Use size_t as len type for Meter_UpdateValuesChristian Göttsche2020-12-062-3/+3
| | | | Most of the time the parameter is passed to snprintf type functions
* Reduce scope of local variablesBenny Baumann2020-11-222-2/+2
|
* IWYU update (FreeBSD)Christian Goettsche2020-11-192-24/+5
|
* Spacing around operatorsBenny Baumann2020-11-023-14/+14
|
* Whitespace and indentation issuesBenny Baumann2020-11-021-15/+18
|
* Hold only a const version of the ProcessList in MetersChristian Göttsche2020-10-264-4/+4
|
* Drop tabs in source indentionsChristian Göttsche2020-10-201-2/+1
|
* Make all required includes explicitBenny Baumann2020-10-182-22/+6
| | | | Information as seen by IWYU 0.12 + clang 9 on Linux
* Rename StringUtils.[ch] to XUtils.[ch]Benny Baumann2020-10-161-1/+1
|
* Move xAsprintf, xSnprintf and xStrdup to StringUtils.hBenny Baumann2020-10-161-0/+1
|
* Mark remaining classes constChristian Göttsche2020-10-134-10/+6
|
* Mark Object pointer to _display function constChristian Göttsche2020-10-102-5/+5
|
* Mark Object classes and Object class fields constChristian Göttsche2020-10-071-1/+1
|
* Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-058-8/+8
|
* Refactor __attribute__ usageChristian Göttsche2020-09-181-1/+3
| | | | Use internal macros for compatibility with non GNUC compilers.
* Further, minor cleanups to headers post-MakeHeadersNathan Scott2020-09-084-9/+0
| | | | | Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
* Remove superfluous 'extern's from function declarations.Zev Weiss2020-09-031-1/+1
| | | | | | | | Applied via: $ find * -name '*.h' -exec sed -i -r 's/^extern (.+\()/\1/;' {} + Suggested-by: Bert Wesarg <bert.wesarg@googlemail.com>
* Normalize ZFS ARC captionZach Dykstra2020-08-281-2/+1
| | | | | Other captions take the form of LABEL:<space>. This moves the uncompressed ZFS ARC caption into the same style.
* Update header files to match whitespace changes in source filesNathan Scott2020-08-221-1/+1
|
* Avoid empty translation unit warningChristian Göttsche2020-08-212-0/+3
| | | | | | zfs/ZfsArcStats.c:22: error: ISO C forbids an empty translation unit [-Werror=pedantic] 22 | }*/ |
* Remove trailing whitespacesChristian Göttsche2020-08-211-1/+1
|
* Support for ZFS Compressed ARC statisticsRoss Williams2019-09-035-0/+132
|
* Refactor openzfs_sysctl_init() and ZfsArcMeter...Ross Williams2019-09-034-6/+28
| | | | | | | | | | | openzfs_sysctl_init() now returns void instead of int. The ZfsArcStats->enabled flag is set inside the init function now, instead of having to be set from its return value. Preparation for more flag setting in Compressed ARC commit. ZfsArcMeter_readStats() added and all Meter->values[] setting moved to it, eliminating duplicated code in {darwin,freebsd,linux,solaris}/Platform.c.
* Refactor common OpenZFS sysctl accessRoss Williams2019-07-074-0/+141
| | | | | Darwin and FreeBSD export zfs kstats through the same APIs, so moving functions into a common file.
* ZFS arcstats for LinuxRoss Williams2019-07-071-21/+26
| | | | | | If no pools are imported (ARC size == 0) or the ZFS module is not in the kernel (/proc/spl/kstat/zfs/arcstats does not exist), then the Meter reports "Unavailable".
* Support ZFS ARC stats on FreeBSDRoss Williams2019-07-072-0/+99
New meter displays same ARC stats as FreeBSD top(1). Can be extended to other platforms that support ZFS. Pulling kstat.zfs.misc.arcstats.c_max as the meter total, so the meter has a meaningful value to work up to. The Text meter displays, first, the maximum ARC size (Meter.total), then second, the total ARC used, using the difference between Meter.maxItems and Meter.curItems to "hide" the used value from the Bar and Graph drawing functions by using an index in Meter.values[] that is beyond curItems - 1, but less than maxItems - 1.

© 2014-2024 Faster IT GmbH | imprint | privacy policy