BRT: Skip duplicate BRT prefetches
If there is a pending entry for this block, then we've already issued BRT prefetch for it within this TXG, so don't do it again. BRT vdev lookup and following zap_prefetch_uint64() call can be pretty expensive and should be avoided when not necessary. Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored by: iXsystems, Inc.
This commit is contained in:
parent
8f2f6cd2ac
commit
74fc769ffd
|
@ -1471,10 +1471,10 @@ brt_pending_add(spa_t *spa, const blkptr_t *bp, dmu_tx_t *tx)
|
||||||
kmem_cache_free(brt_pending_entry_cache, newbpe);
|
kmem_cache_free(brt_pending_entry_cache, newbpe);
|
||||||
} else {
|
} else {
|
||||||
ASSERT(bpe == NULL);
|
ASSERT(bpe == NULL);
|
||||||
}
|
|
||||||
|
|
||||||
/* Prefetch BRT entry, as we will need it in the syncing context. */
|
/* Prefetch BRT entry for the syncing context. */
|
||||||
brt_prefetch(brt, bp);
|
brt_prefetch(brt, bp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue