Commit 67175616 authored by Peter Oberparleiter's avatar Peter Oberparleiter Committed by Martin Schwidefsky

[S390] cio: add missing reprobe loop end statement

Add loop end statement to prevent looping over empty subchannel sets.
Signed-off-by: default avatarPeter Oberparleiter <peter.oberparleiter@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent c94dec99
...@@ -451,6 +451,7 @@ static int reprobe_subchannel(struct subchannel_id schid, void *data) ...@@ -451,6 +451,7 @@ static int reprobe_subchannel(struct subchannel_id schid, void *data)
break; break;
case -ENXIO: case -ENXIO:
case -ENOMEM: case -ENOMEM:
case -EIO:
/* These should abort looping */ /* These should abort looping */
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment