aboutsummaryrefslogtreecommitdiffstats
path: root/module/Makefile.bsd
diff options
context:
space:
mode:
authorAlexander Motin <[email protected]>2023-06-09 15:40:55 -0400
committerGitHub <[email protected]>2023-06-09 12:40:55 -0700
commit70ea484e3ec56c529c6c5027ffc43840100ce224 (patch)
treed006081f0701728fe2b3a743cbd47e54e25fbac2 /module/Makefile.bsd
parent6db4ed51d6c2cd8ec6a3ad318118f7a0d6b6dfe8 (diff)
Finally drop long disabled vdev cache.
It was a vdev level read cache, designed to aggregate many small reads by speculatively issuing bigger reads instead and caching the result. But since it has almost no idea about what is going on with exception of ZIO_FLAG_DONT_CACHE flag set by higher layers, it was found to make more harm than good, for which reason it was disabled for the past 12 years. These days we have much better instruments to enlarge the I/Os, such as speculative and prescient prefetches, I/O scheduler, I/O aggregation etc. Besides just the dead code removal this removes one extra mutex lock/unlock per write inside vdev_cache_write(), not otherwise disabled and trying to do some work. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Alexander Motin <[email protected]> Sponsored by: iXsystems, Inc. Closes #14953
Diffstat (limited to 'module/Makefile.bsd')
-rw-r--r--module/Makefile.bsd1
1 files changed, 0 insertions, 1 deletions
diff --git a/module/Makefile.bsd b/module/Makefile.bsd
index 9464223f6..0c4d8bfe1 100644
--- a/module/Makefile.bsd
+++ b/module/Makefile.bsd
@@ -308,7 +308,6 @@ SRCS+= abd.c \
uberblock.c \
unique.c \
vdev.c \
- vdev_cache.c \
vdev_draid.c \
vdev_draid_rand.c \
vdev_indirect.c \