[blobfs] Disable paging for ZSTD_SEEKABLE blobs

This codepath is not as well tested and still has performance issues to
sort out, so it is better to leave disabled for now.

Bug: 52652
Change-Id: I9196ef32fb357167d6c0d5813ee56661c01fae78
Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/392553
Reviewed-by: Rasha Eqbal <rashaeqbal@google.com>
Reviewed-by: Fady Samuel <fsamuel@google.com>
Commit-Queue: James Sullivan <jfsulliv@google.com>
Testability-Review: Fady Samuel <fsamuel@google.com>
diff --git a/zircon/system/ulib/blobfs/blob.cc b/zircon/system/ulib/blobfs/blob.cc
index bc64988..2f953ec 100644
--- a/zircon/system/ulib/blobfs/blob.cc
+++ b/zircon/system/ulib/blobfs/blob.cc
@@ -54,8 +54,7 @@
 bool SupportsPaging(const Inode& inode) {
   CompressionAlgorithm algorithm = AlgorithmForInode(inode);
   if (algorithm == CompressionAlgorithm::UNCOMPRESSED ||
-      algorithm == CompressionAlgorithm::CHUNKED ||
-      algorithm == CompressionAlgorithm::ZSTD_SEEKABLE) {
+      algorithm == CompressionAlgorithm::CHUNKED) {
     return true;
   }
   return false;