diff options
author | Tomohiro Kusumi <[email protected]> | 2022-02-09 03:48:57 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-08 10:48:57 -0800 |
commit | 5f65d008e9ea92d939064430e0ee0654e4758ee0 (patch) | |
tree | 56faa571860fdceba2837986a376ad6956ef2661 /module/zfs/zap_leaf.c | |
parent | 8df0bde321ab6e4c38cf17e89c8bc331369c7f0a (diff) |
Remove unneeded "extern inline" function declarations
All of these externs are already #included as static inline
functions via corresponding headers.
Reviewed-by: Igor Kozhukhov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Tomohiro Kusumi <[email protected]>
Closes #13073
Diffstat (limited to 'module/zfs/zap_leaf.c')
-rw-r--r-- | module/zfs/zap_leaf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/module/zfs/zap_leaf.c b/module/zfs/zap_leaf.c index aa6c298c3..aad923d51 100644 --- a/module/zfs/zap_leaf.c +++ b/module/zfs/zap_leaf.c @@ -52,8 +52,6 @@ static uint16_t *zap_leaf_rehash_entry(zap_leaf_t *l, uint16_t entry); #define LEAF_HASH_ENTPTR(l, h) (&zap_leaf_phys(l)->l_hash[LEAF_HASH(l, h)]) -extern inline zap_leaf_phys_t *zap_leaf_phys(zap_leaf_t *l); - static void zap_memset(void *a, int c, size_t n) { |