[PATCH] iscsiadm : make iface.ipaddress optional in iface configs for transports that don't have a hard requirement on it.

2014-07-24 Thread Anish Bhatt
From: Anish Bhatt an...@chelsio.com Signed-off-by: Anish Bhatt an...@chelsio.com --- usr/initiator_common.c | 15 --- usr/transport.c| 8 usr/transport.h| 6 ++ 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/usr/initiator_common.c

RE: [PATCH] iscsiadm : make iface.ipaddress optional in iface configs for transports that don't have a hard requirement on it.

2014-07-24 Thread Anish Bhatt
I had actually sent this patch out quite some time ago, but it never got applied or followed up on. -Anish -- You received this message because you are subscribed to the Google Groups open-iscsi group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: connection1:0: detected conn error (1011)

2014-07-24 Thread 木木夕
Thank you, i have 6 eth ports on the initiator and 6 on the target. the IP of each eth port is 192.168.1.x,192.168.2.x,192.168.3.x.192.168.6.x and each port on the target links one corresponding port on the initiator does this matter? 在 2014年7月24日星期四UTC+8上午4时02分11秒,Mike Christie写道: Is this

RE: [PATCH] Fix infinite loop when conn bind fails

2014-07-24 Thread Ariel Nahum
Hi Mike I opened the bug issue in redmine bugzilla. It would be great if you could help with pushing it. https://bugzilla.redhat.com/show_bug.cgi?id=1121670 Thanks, Ariel Nahum -Original Message- From: Mike Christie [mailto:micha...@cs.wisc.edu] Sent: Wednesday, July 16, 2014 07:43

Re: Strange syslog message from iscsid

2014-07-24 Thread reedip14
Hi Everyone, Any information regarding the same? On Wednesday, 22 January 2014 05:00:49 UTC+9, reed...@gmail.com wrote: Hi All, Was the cause/solution identified? We also observed a similar message in syslog , while identifying disks from remote devices. *iscsi:* Regards, Reedip On

Re: [PATCH] iscsiadm: Initialize param_count in set_host_chap_info

2014-07-24 Thread Mike Christie
On 07/17/2014 04:27 AM, vikas.chaudh...@qlogic.com wrote: From: Manish Rangankar manish.rangan...@qlogic.com Signed-off-by: Manish Rangankar manish.rangan...@qlogic.com Signed-off-by: Vikas Chaudhary vikas.chaudh...@qlogic.com --- usr/iscsiadm.c |2 +- 1 files changed, 1

Re: [PATCH] iscsiadm : make iface.ipaddress optional in iface configs for transports that don't have a hard requirement on it.

2014-07-24 Thread Mike Christie
On 07/24/2014 01:14 AM, Anish Bhatt wrote: /* these type of drivers need the netdev upd */ diff --git a/usr/transport.c b/usr/transport.c index 2f38519..3b4199f 100644 --- a/usr/transport.c +++ b/usr/transport.c @@ -58,7 +58,7 @@ struct iscsi_transport_template iscsi_iser = {

Re: [PATCH] iscsiadm : make iface.ipaddress optional in iface configs for transports that don't have a hard requirement on it.

2014-07-24 Thread Mike Christie
On 07/24/2014 11:16 AM, Mike Christie wrote: On 07/24/2014 01:14 AM, Anish Bhatt wrote: /* these type of drivers need the netdev upd */ diff --git a/usr/transport.c b/usr/transport.c index 2f38519..3b4199f 100644 --- a/usr/transport.c +++ b/usr/transport.c @@ -58,7 +58,7 @@ struct

[PATCH] fix login_timeout timer handling when retrying connect/login

2014-07-24 Thread Mike Christie
Hey Roi, Vikas and Eddie, The attached patch fixes the issue Roi reported where the login_timer was not deleted and so we end up with a infinite loop. Roi, could you test your failure case? Vikas and Eddie, I ccd you guys because it modifies the bnx2i iscsiuio code. There was a issue where

Re: connection1:0: detected conn error (1011)

2014-07-24 Thread Mike Christie
If they are on the different subnets then it should be ok. It is common to hit network/iscsi setup issues when doing all ports on the same subnet. So send the /var/log/messages of the initiator system. Again, what target are you using? And a tcpdump/wireshark trace would be helpful probably. On

Re: Strange syslog message from iscsid

2014-07-24 Thread Mike Christie
No. It is due to some bug/crash, but I need more info. If you can hit the issue, then it would be helpful to get /var/log/messages, info on what you are doing at the time, if possible turn on extra iscsid logging, etc. Does iscsid crash and is there a coredump? On 07/24/2014 07:44 AM,

[PATCH trivial] iscsiadm : support using -I tcp or -I iscsi_tcp

2014-07-24 Thread Anish Bhatt
This came up as a scripting issue, iscsiadm currently does not support specifying tcp as a default iface when nothing else is available. Behaves exactly as if no -I option was used. Signed-off-by: Anish Bhatt an...@chelsio.com --- usr/iscsiadm.c | 4 1 file changed, 4 insertions(+) diff