mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
Fix typo in arc_summary3
This is a simple fix for a typo ("perfetch" rather than "prefetch") in arc_summary3. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Richard Laager <rlaager@wiktel.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Jason Cohen <jwittlincohen@gmail.com> Closes #8499
This commit is contained in:
parent
db2af93d72
commit
146bdc414c
@ -594,7 +594,7 @@ def section_archits(kstats_dict):
|
|||||||
print()
|
print()
|
||||||
print('Cache hits by data type:')
|
print('Cache hits by data type:')
|
||||||
dt_todo = (('Demand data:', arc_stats['demand_data_hits']),
|
dt_todo = (('Demand data:', arc_stats['demand_data_hits']),
|
||||||
('Demand perfetch data:', arc_stats['prefetch_data_hits']),
|
('Demand prefetch data:', arc_stats['prefetch_data_hits']),
|
||||||
('Demand metadata:', arc_stats['demand_metadata_hits']),
|
('Demand metadata:', arc_stats['demand_metadata_hits']),
|
||||||
('Demand prefetch metadata:',
|
('Demand prefetch metadata:',
|
||||||
arc_stats['prefetch_metadata_hits']))
|
arc_stats['prefetch_metadata_hits']))
|
||||||
|
Loading…
Reference in New Issue
Block a user