| Fix enum types mismatch. |
| |
| diff -ru --exclude-from freebsd-src-diff-exclude-names /var/archive3/public/freebsd-releng-10.4-src/sys/dev/isci/scil/scif_sas_smp_remote_device.c freebsd-10.4/sys/dev/isci/scil/scif_sas_smp_remote_device.c |
| --- /var/archive3/public/freebsd-releng-10.4-src/sys/dev/isci/scil/scif_sas_smp_remote_device.c 2017-09-29 08:19:51.000000000 +0800 |
| +++ freebsd-10.4/sys/dev/isci/scil/scif_sas_smp_remote_device.c 2019-08-17 23:20:31.960393699 +0800 |
| @@ -194,7 +194,7 @@ |
| |
| //if Core set the status of this io to be RETRY_REQUIRED, we should |
| //retry the IO without even decode the response. |
| - if (completion_status == SCI_FAILURE_RETRY_REQUIRED) |
| + if (completion_status == SCI_IO_FAILURE_RETRY_REQUIRED) |
| { |
| scif_sas_smp_remote_device_continue_current_activity( |
| fw_device, fw_request, SCI_FAILURE_RETRY_REQUIRED |