diff options
-rw-r--r-- | module/zfs/btree.c | 2 | ||||
-rw-r--r-- | module/zfs/dsl_destroy.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/btree.c b/module/zfs/btree.c index f099eb67c..9f69d4b1a 100644 --- a/module/zfs/btree.c +++ b/module/zfs/btree.c @@ -59,7 +59,7 @@ int zfs_btree_verify_intensity = 0; * A convenience function to silence warnings from memmove's return value and * change argument order to src, dest. */ -void +static void bmov(const void *src, void *dest, size_t size) { (void) memmove(dest, src, size); diff --git a/module/zfs/dsl_destroy.c b/module/zfs/dsl_destroy.c index ee237a85b..37480c3f7 100644 --- a/module/zfs/dsl_destroy.c +++ b/module/zfs/dsl_destroy.c @@ -938,7 +938,7 @@ dsl_async_clone_destroy(dsl_dataset_t *ds, dmu_tx_t *tx) * Move the bptree into the pool's list of trees to clean up, update space * accounting information and destroy the zil. */ -void +static void dsl_async_dataset_destroy(dsl_dataset_t *ds, dmu_tx_t *tx) { uint64_t used, comp, uncomp; |