Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 275507
b: refs/heads/master
c: 3f25dc4
h: refs/heads/master
i:
  275505: 9b6f751
  275503: f79d6af
v: v3
  • Loading branch information
Michael Holzheu authored and Martin Schwidefsky committed Nov 14, 2011
1 parent b85c253 commit a5c69f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bc615deaf35ab06e7fe5672b0efb3c7a0b2dcf1a
refs/heads/master: 3f25dc4fcbc371f86a61a6af759003ebd4965908
4 changes: 3 additions & 1 deletion trunk/arch/s390/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ static void __init setup_zfcpdump(unsigned int console_devno)

if (ipl_info.type != IPL_TYPE_FCP_DUMP)
return;
if (OLDMEM_BASE)
return;
if (console_devno != -1)
sprintf(str, " cio_ignore=all,!0.0.%04x,!0.0.%04x",
ipl_info.data.fcp.dev_id.devno, console_devno);
Expand Down Expand Up @@ -482,7 +484,7 @@ static void __init setup_memory_end(void)


#ifdef CONFIG_ZFCPDUMP
if (ipl_info.type == IPL_TYPE_FCP_DUMP) {
if (ipl_info.type == IPL_TYPE_FCP_DUMP && !OLDMEM_BASE) {
memory_end = ZFCPDUMP_HSA_SIZE;
memory_end_set = 1;
}
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/s390/char/zcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,8 @@ static int __init zcore_init(void)

if (ipl_info.type != IPL_TYPE_FCP_DUMP)
return -ENODATA;
if (OLDMEM_BASE)
return -ENODATA;

zcore_dbf = debug_register("zcore", 4, 1, 4 * sizeof(long));
debug_register_view(zcore_dbf, &debug_sprintf_view);
Expand Down

0 comments on commit a5c69f9

Please sign in to comment.