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 | |
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')
-rw-r--r-- | module/zfs/dbuf.c | 5 | ||||
-rw-r--r-- | module/zfs/dsl_dataset.c | 2 | ||||
-rw-r--r-- | module/zfs/dsl_dir.c | 2 | ||||
-rw-r--r-- | module/zfs/zap.c | 2 | ||||
-rw-r--r-- | module/zfs/zap_leaf.c | 2 | ||||
-rw-r--r-- | module/zfs/zap_micro.c | 2 |
6 files changed, 0 insertions, 15 deletions
diff --git a/module/zfs/dbuf.c b/module/zfs/dbuf.c index 076b2d09c..26f0d72b2 100644 --- a/module/zfs/dbuf.c +++ b/module/zfs/dbuf.c @@ -171,11 +171,6 @@ static void dbuf_write(dbuf_dirty_record_t *dr, arc_buf_t *data, dmu_tx_t *tx); static void dbuf_sync_leaf_verify_bonus_dnode(dbuf_dirty_record_t *dr); static int dbuf_read_verify_dnode_crypt(dmu_buf_impl_t *db, uint32_t flags); -extern inline void dmu_buf_init_user(dmu_buf_user_t *dbu, - dmu_buf_evict_func_t *evict_func_sync, - dmu_buf_evict_func_t *evict_func_async, - dmu_buf_t **clear_on_evict_dbufp); - /* * Global data structures and functions for the dbuf cache. */ diff --git a/module/zfs/dsl_dataset.c b/module/zfs/dsl_dataset.c index 36631ea80..459faafee 100644 --- a/module/zfs/dsl_dataset.c +++ b/module/zfs/dsl_dataset.c @@ -90,8 +90,6 @@ static int zfs_allow_redacted_dataset_mount = 0; #define DS_REF_MAX (1ULL << 62) -extern inline dsl_dataset_phys_t *dsl_dataset_phys(dsl_dataset_t *ds); - static void dsl_dataset_set_remap_deadlist_object(dsl_dataset_t *ds, uint64_t obj, dmu_tx_t *tx); static void dsl_dataset_unset_remap_deadlist_object(dsl_dataset_t *ds, diff --git a/module/zfs/dsl_dir.c b/module/zfs/dsl_dir.c index e4ff7d8e7..43ef18978 100644 --- a/module/zfs/dsl_dir.c +++ b/module/zfs/dsl_dir.c @@ -121,8 +121,6 @@ * dsl_dir_init_fs_ss_count(). */ -extern inline dsl_dir_phys_t *dsl_dir_phys(dsl_dir_t *dd); - static uint64_t dsl_dir_space_towrite(dsl_dir_t *dd); typedef struct ddulrt_arg { diff --git a/module/zfs/zap.c b/module/zfs/zap.c index 075522517..d1d07f9fc 100644 --- a/module/zfs/zap.c +++ b/module/zfs/zap.c @@ -80,8 +80,6 @@ static int zap_iterate_prefetch = B_TRUE; int fzap_default_block_shift = 14; /* 16k blocksize */ -extern inline zap_phys_t *zap_f_phys(zap_t *zap); - static uint64_t zap_allocate_blocks(zap_t *zap, int nblocks); void 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) { diff --git a/module/zfs/zap_micro.c b/module/zfs/zap_micro.c index b4611685b..1f32e4450 100644 --- a/module/zfs/zap_micro.c +++ b/module/zfs/zap_micro.c @@ -41,8 +41,6 @@ #include <sys/sunddi.h> #endif -extern inline mzap_phys_t *zap_m_phys(zap_t *zap); - static int mzap_upgrade(zap_t **zapp, void *tag, dmu_tx_t *tx, zap_flags_t flags); |