diff --git a/mkdumprd b/mkdumprd
index 593ec77..500146b 100644
--- a/mkdumprd
+++ b/mkdumprd
@@ -457,6 +457,11 @@ if ! is_fadump_capable; then
 	add_dracut_arg "--no-hostonly-default-device"
 fi
 
+# This is RHEL-only to work around nvme problem, then real fix should go to dracut
+if [[ -d /sys/module/nvme ]]; then
+	add_dracut_arg "--add-drivers" "nvme"
+fi
+
 dracut "${dracut_args[@]}" "$@"
 
 _rc=$?