diff options
author | David Hildenbrand <dahi@linux.vnet.ibm.com> | 2015-05-06 03:17:51 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-05-13 03:58:18 -0400 |
commit | 78335a30e0ea2ac79db5a9915fdf6edd9e8ded9b (patch) | |
tree | 09d2cadffa3de537b8295902a3918b5a40c07054 | |
parent | 3a9f3fe69eab40d9de948230a6789bd7ea68d5e9 (diff) |
s390/sclp: move sclp_facilities into "struct sclp"
Let's also move the facilities into the sclp struct, so we can avoid
another separate external variable.
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | arch/s390/include/asm/sclp.h | 1 | ||||
-rw-r--r-- | drivers/s390/char/sclp.c | 2 | ||||
-rw-r--r-- | drivers/s390/char/sclp.h | 12 | ||||
-rw-r--r-- | drivers/s390/char/sclp_cmd.c | 2 | ||||
-rw-r--r-- | drivers/s390/char/sclp_early.c | 3 |
5 files changed, 9 insertions, 11 deletions
diff --git a/arch/s390/include/asm/sclp.h b/arch/s390/include/asm/sclp.h index 6b00faa7e1ad..c891f41b2753 100644 --- a/arch/s390/include/asm/sclp.h +++ b/arch/s390/include/asm/sclp.h | |||
@@ -62,6 +62,7 @@ struct sclp_info { | |||
62 | unsigned long long hamax; | 62 | unsigned long long hamax; |
63 | unsigned int max_cpu; | 63 | unsigned int max_cpu; |
64 | unsigned long hsa_size; | 64 | unsigned long hsa_size; |
65 | unsigned long long facilities; | ||
65 | }; | 66 | }; |
66 | extern struct sclp_info sclp; | 67 | extern struct sclp_info sclp; |
67 | 68 | ||
diff --git a/drivers/s390/char/sclp.c b/drivers/s390/char/sclp.c index 41ba56d2e752..5e20513c0587 100644 --- a/drivers/s390/char/sclp.c +++ b/drivers/s390/char/sclp.c | |||
@@ -665,7 +665,7 @@ sclp_state_change_cb(struct evbuf_header *evbuf) | |||
665 | sclp_send_mask = scbuf->sclp_send_mask; | 665 | sclp_send_mask = scbuf->sclp_send_mask; |
666 | spin_unlock_irqrestore(&sclp_lock, flags); | 666 | spin_unlock_irqrestore(&sclp_lock, flags); |
667 | if (scbuf->validity_sclp_active_facility_mask) | 667 | if (scbuf->validity_sclp_active_facility_mask) |
668 | sclp_facilities = scbuf->sclp_active_facility_mask; | 668 | sclp.facilities = scbuf->sclp_active_facility_mask; |
669 | sclp_dispatch_state_change(); | 669 | sclp_dispatch_state_change(); |
670 | } | 670 | } |
671 | 671 | ||
diff --git a/drivers/s390/char/sclp.h b/drivers/s390/char/sclp.h index 852f20649f33..026e38990952 100644 --- a/drivers/s390/char/sclp.h +++ b/drivers/s390/char/sclp.h | |||
@@ -100,13 +100,11 @@ struct init_sccb { | |||
100 | sccb_mask_t sclp_send_mask; | 100 | sccb_mask_t sclp_send_mask; |
101 | } __attribute__((packed)); | 101 | } __attribute__((packed)); |
102 | 102 | ||
103 | extern u64 sclp_facilities; | 103 | #define SCLP_HAS_CHP_INFO (sclp.facilities & 0x8000000000000000ULL) |
104 | 104 | #define SCLP_HAS_CHP_RECONFIG (sclp.facilities & 0x2000000000000000ULL) | |
105 | #define SCLP_HAS_CHP_INFO (sclp_facilities & 0x8000000000000000ULL) | 105 | #define SCLP_HAS_CPU_INFO (sclp.facilities & 0x0800000000000000ULL) |
106 | #define SCLP_HAS_CHP_RECONFIG (sclp_facilities & 0x2000000000000000ULL) | 106 | #define SCLP_HAS_CPU_RECONFIG (sclp.facilities & 0x0400000000000000ULL) |
107 | #define SCLP_HAS_CPU_INFO (sclp_facilities & 0x0800000000000000ULL) | 107 | #define SCLP_HAS_PCI_RECONFIG (sclp.facilities & 0x0000000040000000ULL) |
108 | #define SCLP_HAS_CPU_RECONFIG (sclp_facilities & 0x0400000000000000ULL) | ||
109 | #define SCLP_HAS_PCI_RECONFIG (sclp_facilities & 0x0000000040000000ULL) | ||
110 | 108 | ||
111 | 109 | ||
112 | struct gds_subvector { | 110 | struct gds_subvector { |
diff --git a/drivers/s390/char/sclp_cmd.c b/drivers/s390/char/sclp_cmd.c index 215e7950fd29..a186918dc393 100644 --- a/drivers/s390/char/sclp_cmd.c +++ b/drivers/s390/char/sclp_cmd.c | |||
@@ -508,7 +508,7 @@ static int __init sclp_detect_standby_memory(void) | |||
508 | 508 | ||
509 | if (OLDMEM_BASE) /* No standby memory in kdump mode */ | 509 | if (OLDMEM_BASE) /* No standby memory in kdump mode */ |
510 | return 0; | 510 | return 0; |
511 | if ((sclp_facilities & 0xe00000000000ULL) != 0xe00000000000ULL) | 511 | if ((sclp.facilities & 0xe00000000000ULL) != 0xe00000000000ULL) |
512 | return 0; | 512 | return 0; |
513 | rc = -ENOMEM; | 513 | rc = -ENOMEM; |
514 | sccb = (void *) __get_free_page(GFP_KERNEL | GFP_DMA); | 514 | sccb = (void *) __get_free_page(GFP_KERNEL | GFP_DMA); |
diff --git a/drivers/s390/char/sclp_early.c b/drivers/s390/char/sclp_early.c index 914ff62112c8..d7f696d95597 100644 --- a/drivers/s390/char/sclp_early.c +++ b/drivers/s390/char/sclp_early.c | |||
@@ -52,7 +52,6 @@ static struct sclp_ipl_info sclp_ipl_info; | |||
52 | 52 | ||
53 | struct sclp_info sclp; | 53 | struct sclp_info sclp; |
54 | EXPORT_SYMBOL(sclp); | 54 | EXPORT_SYMBOL(sclp); |
55 | u64 sclp_facilities; | ||
56 | 55 | ||
57 | static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb) | 56 | static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb) |
58 | { | 57 | { |
@@ -105,7 +104,7 @@ static void __init sclp_facilities_detect(struct read_info_sccb *sccb) | |||
105 | if (sclp_read_info_early(sccb)) | 104 | if (sclp_read_info_early(sccb)) |
106 | return; | 105 | return; |
107 | 106 | ||
108 | sclp_facilities = sccb->facilities; | 107 | sclp.facilities = sccb->facilities; |
109 | sclp.has_sprp = !!(sccb->fac84 & 0x02); | 108 | sclp.has_sprp = !!(sccb->fac84 & 0x02); |
110 | sclp.has_cpu_type = !!(sccb->fac84 & 0x01); | 109 | sclp.has_cpu_type = !!(sccb->fac84 & 0x01); |
111 | if (sccb->fac85 & 0x02) | 110 | if (sccb->fac85 & 0x02) |