X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2Fpatches%2Fsuse-2.6.27.25%2Fpatches.fixes%2Fopen-iscsi-mv-transport-eh-setting;fp=src%2Fpatches%2Fsuse-2.6.27.25%2Fpatches.fixes%2Fopen-iscsi-mv-transport-eh-setting;h=0000000000000000000000000000000000000000;hb=1e29f276cf10d0aedbf4aeb6f34b540d966878a6;hp=e52b7b9f6e68c06619363e4c3efe31d949cd5320;hpb=939c2a2110814dd854f2838462347b72b3398389;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/src/patches/suse-2.6.27.25/patches.fixes/open-iscsi-mv-transport-eh-setting b/src/patches/suse-2.6.27.25/patches.fixes/open-iscsi-mv-transport-eh-setting deleted file mode 100644 index e52b7b9f6e..0000000000 --- a/src/patches/suse-2.6.27.25/patches.fixes/open-iscsi-mv-transport-eh-setting +++ /dev/null @@ -1,35 +0,0 @@ -From: Mike Christie -Subject: Kernel panic on sysReboot of array controller -References: bnc#466846 - -Here is a patch made against upstream. It is simple. The -transportt->eh_timed_out was supposed to go in iscsi_host_add. It used -to be in iscsi_host_alloc because we set the LLD transportt in there -(now the LLD does it after calling iscsi_host_alloc). - -Signed-off-by: Yanling Qi -Signed-off-by: Mike Christie -Signed-off-by: Hannes Reinecke - ---- - drivers/scsi/libiscsi.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/scsi/libiscsi.c -+++ b/drivers/scsi/libiscsi.c -@@ -1927,6 +1927,7 @@ int iscsi_host_add(struct Scsi_Host *sho - if (!shost->can_queue) - shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX; - -+ shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out; - return scsi_add_host(shost, pdev); - } - EXPORT_SYMBOL_GPL(iscsi_host_add); -@@ -1949,7 +1950,6 @@ struct Scsi_Host *iscsi_host_alloc(struc - shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size); - if (!shost) - return NULL; -- shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out; - - if (qdepth > ISCSI_MAX_CMD_PER_LUN || qdepth < 1) { - if (qdepth != 0)