There is already a patch named nfs-utils-2.3.3-nfsiostat-key-error.patch but it does not cover the issue found by user: Traceback (most recent call last): File "/usr/sbin/nfsiostat", line 667, in <module> iostat_command(prog) File "/usr/sbin/nfsiostat", line 635, in iostat_command print_iostat_summary(old_mountstats, mountstats, devices, sample_time, options) File "/usr/sbin/nfsiostat", line 475, in print_iostat_summary if "fstype autofs" not in str(old[device]): KeyError: '/home/someuser Untested, this pseudo patch should work: - if "fstype autofs" not in str(old[device]): + if device in old and "fstype autofs" not in str(old[device]): If this condition should not happen, please suggest a way to debug what did lead to it.