Created
August 29, 2016 20:40
-
-
Save forestbaker/6247e61dacad6baa98d86f94e46b231d to your computer and use it in GitHub Desktop.
Got “READ FPDMA QUEUED” errors from “dmesg” output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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