Skip to content

Instantly share code, notes, and snippets.

@forestbaker
Created August 29, 2016 20:40
Show Gist options
  • Save forestbaker/6247e61dacad6baa98d86f94e46b231d to your computer and use it in GitHub Desktop.
Save forestbaker/6247e61dacad6baa98d86f94e46b231d to your computer and use it in GitHub Desktop.
Got “READ FPDMA QUEUED” errors from “dmesg” output
# Got “READ FPDMA QUEUED” errors from “dmesg” output
# Likely have an issue with the hard disk controller driver
# resolve by disabling NCQ
echo 1 > /sys/block/sdX/device/queue_depth
# verify if NCQ is enabled
# returned value will be higher than “1”
cat /sys/block/sdX/device/queue_depth
# enable NCQ with:
echo 31 > /sys/block/sdX/device/queue_depth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment