mirror of
https://github.com/torvalds/linux.git
synced 2025-11-06 19:50:24 +02:00
In the case where mbox_status is OCRDMA_MBX_STATUS_FAILED and
add_status is OCRDMA_MBX_STATUS_FAILED err_num is assigned -EAGAIN
however the case OCRDMA_MBX_STATUS_FAILED is missing a break and
falls through to the default case which then re-assigns err_num
to -EFAULT. Fix this so that err_num is assigned to -EAGAIN
for the add_status OCRDMA_MBX_STATUS_FAILED case and -EFAULT
otherwise.
Detected by CoverityScan CID#703125 ("Missing break in switch")
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| ocrdma.h | ||
| ocrdma_ah.c | ||
| ocrdma_ah.h | ||
| ocrdma_hw.c | ||
| ocrdma_hw.h | ||
| ocrdma_main.c | ||
| ocrdma_sli.h | ||
| ocrdma_stats.c | ||
| ocrdma_stats.h | ||
| ocrdma_verbs.c | ||
| ocrdma_verbs.h | ||