mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
ebbeb55561
Also add script used to generate patches and SRC_URI Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
50 lines
1.7 KiB
Diff
50 lines
1.7 KiB
Diff
From 0fe4a197fe13b8817fbe93fa72571bbdc6d2bcbf Mon Sep 17 00:00:00 2001
|
|
From: Steffen Maier <maier@linux.vnet.ibm.com>
|
|
Date: Fri, 2 Mar 2012 17:32:58 +0100
|
|
Subject: [PATCH 38/95] S390: qdio: fix handler function arguments for zfcp
|
|
data router
|
|
|
|
commit 7b3cc67d4445995a025a4b55a7dc687b6829b4ca upstream.
|
|
|
|
Git commit 25f269f17316549e "[S390] qdio: EQBS retry after CCQ 96"
|
|
introduced a regression in regard to the zfcp data router.
|
|
Revoke the incorrect simplification of the function call arguments
|
|
for the qdio handler to make the zfcp hardware data router working
|
|
again.
|
|
|
|
This is applicable to 3.2+ kernels.
|
|
|
|
Signed-off-by: Steffen Maier <maier@linux.vnet.ibm.com>
|
|
Reviewed-by: Jan Glauber <jang@linux.vnet.ibm.com>
|
|
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/s390/cio/qdio_main.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/s390/cio/qdio_main.c b/drivers/s390/cio/qdio_main.c
|
|
index 3ef8d07..770a740 100644
|
|
--- a/drivers/s390/cio/qdio_main.c
|
|
+++ b/drivers/s390/cio/qdio_main.c
|
|
@@ -167,7 +167,7 @@ again:
|
|
DBF_ERROR("%4x EQBS ERROR", SCH_NO(q));
|
|
DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
|
|
q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
|
|
- 0, -1, -1, q->irq_ptr->int_parm);
|
|
+ q->nr, q->first_to_kick, count, q->irq_ptr->int_parm);
|
|
return 0;
|
|
}
|
|
|
|
@@ -215,7 +215,7 @@ again:
|
|
DBF_ERROR("%4x SQBS ERROR", SCH_NO(q));
|
|
DBF_ERROR("%3d%3d%2d", count, tmp_count, nr);
|
|
q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION,
|
|
- 0, -1, -1, q->irq_ptr->int_parm);
|
|
+ q->nr, q->first_to_kick, count, q->irq_ptr->int_parm);
|
|
return 0;
|
|
}
|
|
|
|
--
|
|
1.7.9.4
|
|
|