Remove unneeded "extern inline" function declarations
All of these externs are already #included as static inline functions via corresponding headers. Reviewed-by: Igor Kozhukhov <igor@dilos.org> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com> Closes #13073
This commit is contained in:
parent
94a4b7ec3d
commit
02309af096
|
@ -170,11 +170,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.
|
||||
*/
|
||||
|
|
|
@ -90,8 +90,6 @@ 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,
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -80,8 +80,6 @@ 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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue