Commit 6b4044bd authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky

[S390] extmem unbalanced spin_lock.

segment save will exit with a lock held if the passed segment doesn't
exist. Any subsequent call to segment_save will lead to a deadlock.
Fix this and give up the lock before returning.
Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 645c98c8
...@@ -563,8 +563,9 @@ segment_save(char *name) ...@@ -563,8 +563,9 @@ segment_save(char *name)
seg = segment_by_name (name); seg = segment_by_name (name);
if (seg == NULL) { if (seg == NULL) {
PRINT_ERR ("could not find segment %s in segment_save, please report to linux390@de.ibm.com\n",name); PRINT_ERR("could not find segment %s in segment_save, please "
return; "report to linux390@de.ibm.com\n", name);
goto out;
} }
startpfn = seg->start_addr >> PAGE_SHIFT; startpfn = seg->start_addr >> PAGE_SHIFT;
......
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