diff options
author | Gvozden Neskovic <[email protected]> | 2016-11-26 21:30:44 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-05-04 19:26:28 -0400 |
commit | c17486b2178fc545c50d48effd4be47d33208933 (patch) | |
tree | 82f82e4b72863f3096efd7e7db84aaec3f4b8757 /include | |
parent | 8fa5250f5d779e577406c581fc2d7fbf0baceea5 (diff) |
Add missing *_destroy/*_fini calls
The proposed debugging enhancements in zfsonlinux/spl#587
identified the following missing *_destroy/*_fini calls.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Gvozden Neskovic <[email protected]>
Closes #5428
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/zfs_ratelimit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/zfs_ratelimit.h b/include/sys/zfs_ratelimit.h index b9f9f73dc..f36e07841 100644 --- a/include/sys/zfs_ratelimit.h +++ b/include/sys/zfs_ratelimit.h @@ -33,5 +33,6 @@ typedef struct { int zfs_ratelimit(zfs_ratelimit_t *rl); void zfs_ratelimit_init(zfs_ratelimit_t *rl, unsigned int burst, unsigned int interval); +void zfs_ratelimit_fini(zfs_ratelimit_t *rl); #endif /* _SYS_ZFS_RATELIMIT_H */ |