Skip to main contentSkip to navigation
Rossmann Repair Group logo - data recovery and MacBook repair

Fusion Drive CoreStorage Desynchronization Recovery

When an Apple Fusion Drive loses the binding between its SSD cache and HDD data layer, macOS displays two separate unmountable volumes instead of one. We image both drives independently and reconstruct the CoreStorage LVG or APFS Fusion container offline at our Austin lab.

Louis Rossmann
Written by
Louis Rossmann
Founder & Chief Technician
Updated March 2026
8 min read

What Is Fusion Drive Desynchronization?

The second most common Fusion Drive failure, after HDD mechanical problems.

Apple Fusion Drives bind a small PCIe SSD (24GB to 128GB) with a larger SATA HDD (1TB to 3TB) into a single logical volume. macOS manages block placement between the two drives using CoreStorage (macOS Sierra and earlier) or APFS Fusion containers (Mojave and later). Desynchronization occurs when the metadata that tracks which blocks reside on which physical drive becomes corrupted or lost.

The result: Disk Utility shows two separate drives where there should be one. Neither drive mounts on its own because each contains only a partial slice of the file system. The SSD holds metadata, recently written files, and frequently accessed blocks. The HDD holds bulk data, older files, and demoted blocks. Without the tier map that binds them, macOS cannot assemble a coherent volume.

The data on both drives is typically intact. The failure is in the metadata layer, not the storage media. Recovery requires imaging both components and rebuilding the tier map offline using PC-3000's Apple module.

How Desynchronization Happens

Power Loss During Tier Migration

macOS continuously moves blocks between the SSD and HDD based on access patterns. A block being promoted from HDD to SSD (or demoted from SSD to HDD) requires updating the tier map atomically. If power is lost mid-write, the tier map references a block location that no longer matches reality. CoreStorage LVG headers are single-copy metadata; if the header write was interrupted, the volume cannot mount.

Failed macOS Upgrade

The Mojave (10.14) upgrade converts CoreStorage Fusion volumes to APFS Fusion containers. This conversion rewrites the volume metadata on both the SSD and HDD. If the upgrade fails mid- conversion (kernel panic, power loss, insufficient disk space), the volume is left in a hybrid state: partially CoreStorage, partially APFS. Neither the CoreStorage nor the APFS driver can mount it.

SATA Cable or Connector Failure

iMac Fusion Drives connect via SATA (HDD) and PCIe (SSD blade). A failing SATA cable causes intermittent disconnects on the HDD. macOS continues writing to the SSD while the HDD drops offline. When the HDD reconnects, the tier map on the SSD references blocks that were never written to the HDD, or the HDD contains stale data that the SSD tier map has already marked as relocated.

Disk Utility Repair on a Degraded Volume

Running First Aid on a Fusion Drive that has intermittent read errors can overwrite the tier map or LVG header. Disk Utility treats each component as an independent volume and attempts to repair it in isolation, destroying the cross-drive block assignments that made the Fusion volume coherent.

Diagnostic Commands

If your Mac boots to the question mark folder or Recovery Mode, open Terminal from the Utilities menu. These commands help identify whether a desynchronization has occurred. Do not run any repair commands; diagnosis only.

CoreStorage Fusion (Sierra and earlier)

diskutil cs list

A healthy CoreStorage Fusion Drive shows a single Logical Volume Group (LVG) with status "Online." A desynchronized drive shows one of these patterns:

  • LVG status reads "Incomplete" or "Offline"
  • Only one Physical Volume appears under the LVG (the other component is missing)
  • No LVG exists at all; diskutil cs list returns "No CoreStorage logical volume groups found"
  • The LVG exists but the Logical Volume shows "Locked" without FileVault being enabled

APFS Fusion (Mojave and later)

diskutil apfs list

A healthy APFS Fusion container shows a single container spanning both drives with "Fusion: Yes." Desynchronization indicators:

  • Two separate APFS containers appear instead of one Fusion container
  • The container exists but lists "Fusion: No" despite being on a Fusion Drive Mac
  • Container shows 0 volumes or volumes with status "Unmountable"
  • diskutil apfs list crashes or hangs (indicates severely corrupted container metadata)

If Your Fusion Drive Just Split: Do This

  1. Power off the Mac immediately. Hold the power button for 5 seconds. Do not let macOS run background processes. APFS runs garbage collection and TRIM in the background, which can erase metadata blocks on the SSD tier that are needed for volume reconstruction.
  2. Do not run diskutil resetFusion. This command erases both drives and creates a new, empty Fusion pair. It issues TRIM/UNMAP commands to the SSD, destroying the file system metadata stored on the flash tier.
  3. Do not run Disk Utility First Aid. First Aid treats each half of the split as an independent volume and overwrites the cross-drive metadata that recovery depends on.
  4. Do not reinstall macOS. The installer may reformat one or both drives, overwriting data blocks on the HDD and metadata on the SSD.
  5. Contact a recovery lab with Fusion Drive experience. The drives need to be removed from the Mac and imaged independently using hardware tools that bypass the operating system entirely. Start a free evaluation.

Why Disk Utility First Aid Makes Desynchronization Worse

Disk Utility's First Aid runs fsck_cs (for CoreStorage) or fsck_apfs (for APFS). These tools are designed to repair a single, intact volume. On a desynchronized Fusion Drive, they encounter two partial volumes and attempt to "fix" each one independently.

For CoreStorage: fsck_cs may rewrite the LVG header to remove the "broken" Physical Volume reference, permanently severing the binding between the SSD and HDD. This converts a recoverable desynchronization into two genuinely independent, incomplete volumes.

For APFS: fsck_apfs traverses the container's B-tree and object map. If it cannot read blocks that are physically on the other drive (because the Fusion tier map is broken), it marks those blocks as free space. Subsequent writes by the repair tool can overwrite data blocks that belong to the missing tier.

Do not run these commands on a desynchronized Fusion Drive

diskutil repairVolume or Disk Utility First Aid

diskutil resetFusion (erases both drives and creates a new, empty Fusion pair)

diskutil cs create or diskutil apfs createContainer (overwrites existing metadata with a new empty volume)

Reinstalling macOS (the installer may reformat one or both drives)

Lab Recovery Procedure

Desynchronization recovery is a four-step process performed entirely in-house at our Austin, TX lab. No external vendors, no outsourcing.

Fusion Drive desynchronization recovery steps
StepProcedureTools
1. Separate imagingRemove both drives from the iMac or Mac Mini. Image the SSD blade via Sintech adapter connected to PC-3000 SSD. Image the HDD via direct SATA connection to PC-3000 Portable III. Both images are sector-level clones.PC-3000 Portable III, PC-3000 SSD, Sintech adapter, DeepSpar Disk Imager
2. Metadata extractionParse the SSD image for CoreStorage LVG metadata (block allocation table, tier map entries) or APFS container checkpoints (Fusion role descriptors, Spaceman allocations). If the current metadata is corrupted, search for prior checkpoint snapshots. CoreStorage keeps a single header; APFS keeps a rolling checkpoint history.PC-3000 (Apple module), hex editor for manual metadata inspection
3. Tier map reconstructionRebuild the block-to-drive mapping from the extracted metadata. Each logical block address in the Fusion volume maps to a physical offset on either the SSD or HDD. This mapping is reconstructed from the LVG block allocation table (CoreStorage) or the Fusion tier allocation records (APFS). If the tier map is unrecoverable, fall back to file-level carving from the HDD image.PC-3000 (Apple module), UFS Explorer
4. Volume assembly and extractionMerge the SSD and HDD images using the reconstructed tier map to produce a single coherent volume image. Mount the reconstructed volume read-only and extract files to the customer's return media. Verify directory structure, file counts, and spot-check file integrity before delivery.PC-3000, UFS Explorer, return media

CoreStorage vs. APFS: How Recovery Differs

CoreStorage (2012 to 2018)

CoreStorage stores the tier map in a single LVG header on the SSD. If this header is corrupted, there is no backup copy. Recovery relies on parsing the raw LVG metadata structures to extract whatever block mappings survived. If the header is zeroed out (from running diskutil cs delete or reformatting), recovery falls back to carving files directly from the HDD image. CoreStorage desynchronizations from power loss are generally more recoverable because the header corruption is localized to a small metadata region.

APFS Fusion (2018 onward)

APFS uses a copy-on-write design with periodic checkpoints. Each checkpoint captures the state of the container, including the Fusion tier allocation tables. When the current checkpoint is corrupted, prior checkpoints may contain a valid tier map from seconds or minutes before the failure. This makes APFS Fusion recovery more resilient than CoreStorage for power-loss scenarios. The tradeoff: failed CoreStorage-to-APFS conversions leave the volume in a hybrid state that neither driver can parse, requiring manual metadata inspection at the hex level.

Desynchronization Recovery Pricing

Fusion Drive desynchronization is a logical failure. Both drives are typically physically healthy. Pricing follows the HDD tier structure since the HDD component is the primary data store.

Service TierPriceDescription
Simple CopyLow complexity$100

Your drive works, you just need the data moved off it

Functional drive; data transfer to new media

Rush available: +$100

File System RecoveryLow complexityFrom $250

Your drive isn't recognized by your computer, but it's not making unusual sounds

File system corruption. Accessible with professional recovery software but not by the OS

Starting price; final depends on complexity

Firmware RepairMedium complexity – PC-3000 required$600–$900

Your drive is completely inaccessible. It may be detected but shows the wrong size or won't respond

Firmware corruption: ROM, modules, or translator tables corrupted; requires PC-3000 terminal access

Standard drives at lower end; high-density drives at higher end

Head SwapHigh complexity – clean bench surgery50% deposit$1,200–$1,500

Your drive is clicking, beeping, or won't spin. The internal read/write heads have failed

Head stack assembly failure. Transplanting heads from a matching donor drive on a clean bench

50% deposit required. Donor parts are consumed in the repair

Surface / Platter DamageHigh complexity – clean bench surgery50% deposit$2,000

Your drive was dropped, has visible damage, or a head crash scraped the platters

Platter scoring or contamination. Requires platter cleaning and head swap

50% deposit required. Donor parts are consumed in the repair. Most difficult recovery type.

Hardware Repair vs. Software Locks

Our "no data, no fee" policy applies to hardware recovery. We do not bill for unsuccessful physical repairs. If we replace a hard drive read/write head assembly or repair a liquid-damaged logic board to a bootable state, the hardware repair is complete and standard rates apply. If data remains inaccessible due to user-configured software locks, a forgotten passcode, or a remote wipe command, the physical repair is still billable. We cannot bypass user encryption or activation locks.

All tiers: Free evaluation and firm quote before any paid work. No data, no fee on simple copy, file system, and firmware tiers. Head swap and surface damage require a 50% deposit because donor parts are consumed in the attempt.

Target drive: The destination drive we copy recovered data onto. You can supply your own or we provide one at cost. For ultra-high-capacity drives (20TB and above), the target drive costs approximately $400+ due to the large media required. All prices are plus applicable tax.

Volume reconstruction is included

The CoreStorage or APFS tier map reconstruction step is included in the recovery price. You are not charged separately for merging the SSD and HDD images. If the HDD also has physical damage (clicking, bad sectors), the price reflects the additional hardware work required on that component.

No data, no recovery fee. Free evaluation. Firm quote before any work begins.

What Mac Data Recovery Customers Say

4.9 across 1,837+ verified Google reviews
My story isn't much different than anyone else on here leaving a Rossmann review, but I feel compelled to write all this anyway. After importing 14GB of RAW photos from my brand new camera to my 13" MBP (A2338), I started to excitedly sift through my gorgeous sunset photos in Lightroom. After 5 minutes of editing, my MacBook died. Wouldn't turn on, wouldn't charge, wouldn't make any sound. It's always been well taken care of and I was dumbfounded as to why this happened. Absolutely clueless as to what to do next, I took it to the "Genius Bar".
Joseph TischnerMacBook
View on Google
I used their mail-in service and followed their simple instructions on how to send it it. First fill out a form, then you get a ticket number and write it down and put it in the box you ship the device in. Few days later from delivery I got an email indicating diagnosis was beginning.
Josue MontalvoMacBook
View on Google
I just got my Macbook Pro back from RRG. I have to say I was overjoyed and honestly getting my Macbook Pro back was the one time I felt pure joy in a while. I caught Louis on the phone a couple of the times that I called and he is super nice, incredibly nice to customers. I called in to tell him I wanted rush service and he noted that I approved $45 rush service.
AlexMacBook Pro
View on Google
True story: I found the shop through Louis's youtube. Love his content. So I didn't even think twice about trusting the repair I needed for my macbook 13" 2017. One of my usb-c ports died, and my battery was bad. Here's where things get interesting. I got an update saying my facetime camera failed during QA testing after the repair.
Danny YooMacBook
View on Google

Data Recovery Standards & Verification

Our Austin lab operates on a transparency-first model. We use industry-standard recovery tools, including PC-3000 and DeepSpar, combined with strict environmental controls to make sure your hard drive is handled safely and properly. This approach allows us to serve clients nationwide with consistent technical standards.

Open-drive work is performed in a ULPA-filtered laminar-flow bench, validated to 0.02 µm particle count, verified using TSI P-Trak instrumentation.

Transparent History

Serving clients nationwide via mail-in service since 2008. Our lead engineer holds PC-3000 and HEX Akademia certifications for hard drive firmware repair and mechanical recovery.

Media Coverage

Our repair work has been covered by The Wall Street Journal and Business Insider, with CBC News reporting on our pricing transparency. Louis Rossmann has testified in Right to Repair hearings in multiple states and founded the Repair Preservation Group.

Aligned Incentives

Our "No Data, No Charge" policy means we assume the risk of the recovery attempt, not the client.

LR

Louis Rossmann

Louis Rossmann's well trained staff review our lab protocols to ensure technical accuracy and honest service. Since 2008, his focus has been on clear technical communication and accurate diagnostics rather than sales-driven explanations.

We believe in proving standards rather than just stating them. We use TSI P-Trak instrumentation to verify that clean-air benchmarks are met before any drive is opened.

See our clean bench validation data and particle test video

Fusion Drive Desynchronization FAQ

What does it mean when a Fusion Drive desynchronizes?
Desynchronization means the logical binding between the SSD cache layer and the HDD data layer has broken. macOS managed these two drives as a single volume through CoreStorage (Sierra and earlier) or APFS Fusion (Mojave and later). When that binding fails, the Mac shows two separate, unmountable drives in Disk Utility instead of one Fusion volume. The data is still on both drives in its tiered locations; the metadata that maps which blocks live on which drive is damaged or missing.
What causes Fusion Drive desynchronization?
The most common trigger is power loss during a tier migration write, when macOS is moving data blocks between the SSD and HDD. Failed macOS upgrades (especially the upgrade to Mojave, which converts CoreStorage Fusion volumes to APFS) are the second most common cause. Other triggers include SATA cable failure on the HDD component, intermittent SSD blade disconnection from a loose connector, and running Disk Utility repair commands on a degraded volume.
Why is Disk Utility First Aid dangerous on a desynchronized Fusion Drive?
First Aid runs fsck on whatever volume structure it can find. On a desynchronized Fusion Drive, it sees two partial volumes instead of one. It attempts to repair each partial volume independently, which overwrites the CoreStorage LVG header or APFS container checkpoint that held the cross-drive block map. Once that metadata is overwritten, software-based reconstruction of the Fusion tier assignments becomes impossible. The data blocks are still on the drives, but the map that tells us which blocks go where is gone.
Will 'diskutil resetFusion' fix a desynchronized Fusion Drive?
No. diskutil resetFusion destroys the existing volume metadata and creates a fresh, empty Fusion pair. It erases the CoreStorage LVG or APFS container header on both drives. All previously stored data becomes inaccessible through normal means. If you have already run this command, the data blocks may still exist on the HDD, but recovery requires raw block-level carving rather than volume reconstruction, which produces less complete results.
How much does Fusion Drive desync recovery cost?
If both drives are physically healthy and the failure is purely logical (metadata corruption from desynchronization), recovery starts at $250. If the HDD has developed bad sectors or firmware corruption that contributed to the desync, pricing moves to $600 to $900 for firmware-level work. No diagnostic fee. No charge if recovery is not successful.
The HDD half of my Fusion Drive still works. Can I just use that?
The HDD contains the majority of bulk data (photos, videos, large documents), but it does not contain a coherent file system on its own. macOS stored file metadata and frequently accessed files on the SSD. Mounting only the HDD gives you a partial block image with no directory structure. Recovery requires imaging both the SSD and HDD, then reconstructing the Fusion volume metadata offline to reassemble the file system.

Fusion Drive split into two volumes? We can recover it.

Free estimate. No data, no charge. Austin walk-in or mail-in from anywhere in the U.S.