Skip to content

Commit bc3d440

Browse files
Benjamin-BlockAlexander Gordeev
authored andcommitted
s390/qdio: Rename feature flag aif_osa to aif_qdio
This feature is not only utilized by OSA, but by QDIO in general. Clear up possible confusions. Signed-off-by: Benjamin Block <[email protected]> Reviewed-by: Steffen Maier <[email protected]> Acked-by: Alexandra Winter <[email protected]> Signed-off-by: Alexander Gordeev <[email protected]>
1 parent 3ace3c4 commit bc3d440

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

arch/s390/include/asm/css_chars.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ struct css_general_char {
2525
u64 : 2;
2626

2727
u64 : 3;
28-
u64 aif_osa : 1; /* bit 67 */
28+
u64 aif_qdio : 1;/* bit 67 */
2929
u64 : 12;
3030
u64 eadm_rf : 1; /* bit 80 */
3131
u64 : 1;

drivers/s390/cio/qdio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ struct qdio_irq {
266266

267267
#define is_thinint_irq(irq) \
268268
(irq->qib.qfmt == QDIO_IQDIO_QFMT || \
269-
css_general_characteristics.aif_osa)
269+
css_general_characteristics.aif_qdio)
270270

271271
#define qperf(__qdev, __attr) ((__qdev)->perf_stat.(__attr))
272272

drivers/s390/cio/qdio_setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ int __init qdio_setup_init(void)
423423

424424
/* Check for OSA/FCP thin interrupts (bit 67). */
425425
DBF_EVENT("thinint:%1d",
426-
(css_general_characteristics.aif_osa) ? 1 : 0);
426+
(css_general_characteristics.aif_qdio) ? 1 : 0);
427427

428428
/* Check for QEBSM support in general (bit 58). */
429429
DBF_EVENT("cssQEBSM:%1d", css_general_characteristics.qebsm);

0 commit comments

Comments
 (0)