Re: udev events for iscsi

2020-04-21 Thread robert
Wondering myself. > On Apr 21, 2020, at 2:31 AM, Gionatan Danti wrote: > >  > [reposting, as the previous one seems to be lost] > > Hi all, > I have a question regarding udev events when using iscsi disks. > > By using "udevadm monitor" I can see that events are generated when I login > and

Re: Who know more about this issue for iscsid?

2020-01-07 Thread Robert ECEO Townley
On Tue, Jan 7, 2020 at 2:20 AM can zhu wrote: > kernel: connection2:0: detected conn error (1020) > > iscsid: conn 0 login rejected: initiator failed authorization with target > > iscsid: Kernel reported iSCSI connection 2:0 error (1020 - > ISCSI_ERR_TCP_CONN_CLOSE: TCP connection closed) state

Re: reboot hangs with "Reached target shutdown", who can help me?

2019-12-13 Thread Robert ECEO Townley
If you enter the mount command at this point, what mount points are still mounted? Screenshot has some contradictions. On Thu, Dec 12, 2019 at 8:08 PM can zhu wrote: > > @The Lee-Man Thanks, In my environment, the default value of the > node.startup is automatic in config > > > > The

Re: [PATCH 0/7] Enable iSCSI offload drivers to use information from iface.

2017-07-24 Thread Robert LeBlanc
On Wed, Jun 14, 2017 at 10:47 AM, Robert LeBlanc <rob...@leblancnet.us> wrote: > On Wed, Jun 14, 2017 at 3:20 AM, Rangankar, Manish > <manish.rangan...@cavium.com> wrote: >> >> On 13/06/17 10:19 PM, "Robert LeBlanc" <rob...@leblancnet.us> wrote:

Re: [PATCH 0/7] Enable iSCSI offload drivers to use information from iface.

2017-06-13 Thread Robert LeBlanc
On Wed, Jun 7, 2017 at 12:30 PM, Robert LeBlanc <rob...@leblancnet.us> wrote: > On Wed, Jun 7, 2017 at 10:28 AM, Chris Leech <cle...@redhat.com> wrote: >> On Tue, Jun 06, 2017 at 12:07:10PM -0600, Robert LeBlanc wrote: >>> This patchset enables iSCSI offload drive

Re: [PATCH 0/7] Enable iSCSI offload drivers to use information from iface.

2017-06-07 Thread Robert LeBlanc
On Wed, Jun 7, 2017 at 10:28 AM, Chris Leech <cle...@redhat.com> wrote: > On Tue, Jun 06, 2017 at 12:07:10PM -0600, Robert LeBlanc wrote: >> This patchset enables iSCSI offload drivers to have access to the iface >> information provided by iscsid. This allows users to have m

[PATCH] Pass iface for connection

2017-06-06 Thread Robert LeBlanc
--- usr/netlink.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/usr/netlink.c b/usr/netlink.c index 1a0bf80..c474375 100644 --- a/usr/netlink.c +++ b/usr/netlink.c @@ -848,10 +848,13 @@ krecv_pdu_end(struct iscsi_conn *conn) int

[PATCH 4/7] scsi/be2iscsi: Update beiscsi_ep_connect to accept iface and sockaddr_storage.

2017-06-06 Thread Robert LeBlanc
Update Emulex BladeEngine driver to accept the session iface for creating the iSCSI connection. Also accept dst_addr as sockaddr_storage instead of sockaddr. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- drivers/scsi/be2iscsi/be_cmds.c | 1 + drivers/scsi/be2iscsi/be_iscsi

[PATCH 2/7] scsi/scsi_transport_iscsi: Update ep_connect to include iface.

2017-06-06 Thread Robert LeBlanc
Update the ep_connect function to include the iface in the parameters passed to the driver. Since we have to make a change, also change the dst_addr to sockaddr_storage so that it is future proof and a static size. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- driver

[PATCH 3/7] ib/iSER: Add binding to source IP address.

2017-06-06 Thread Robert LeBlanc
If the iface passed in has ip address set, then attept to create an RDMA connection using it as the source IP address. This allows iSER to use multiple ports on the same network or in more complex routing configurations. Also update to accepting sockaddr_storage. Signed-off-by: Robert LeBlanc

[PATCH 5/7] scsi/bnx2i: Update bnx2i_ep_connect to accept iface and sockaddr_storage.

2017-06-06 Thread Robert LeBlanc
Update QLogic NetXtreme II driver to accept the session iface for creating the iSCSI connection. Also accept dst_addr as sockaddr_storage instead of sockaddr. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- drivers/scsi/bnx2i/bnx2i_hwi.c | 1 + drivers/scsi/bnx2i/bnx2i_iscsi.

[PATCH 7/7] scsi/qla4xxx: Update qla4xxx_ep_connect to accept iface and sockaddr_storage.

2017-06-06 Thread Robert LeBlanc
Update QLogic ISP4XXX and ISP82XX drivers to accept the session iface for creating the iSCSI connection. Also accept dst_addr as sockaddr_storage instead of sockaddr. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- drivers/scsi/qla4xxx/ql4_os.c | 15 --- 1 file chan

[PATCH 6/7] scsi/cxgbi: Update cxgbi_ep_connect to accept iface and sockaddr_storage.

2017-06-06 Thread Robert LeBlanc
Update Chelsio iSCSI driver to accept the session iface for creating the iSCSI connection. Also accept dst_addr as sockaddr_storage instead of sockaddr. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- drivers/scsi/cxgbi/libcxgbi.c | 15 --- drivers/scsi/cxgbi/libcxgbi.

[PATCH 1/7] scsi/scsi_transport_iscsi: Add iface struct to kernel.

2017-06-06 Thread Robert LeBlanc
Allow the userspace iscsiadm to pass the iface struct of the connection so that the underlying driver can use what is most appropriate to create the iSCSI connection. Signed-off-by: Robert LeBlanc <rob...@leblancnet.us> --- include/scsi/scsi_transport_iscsi.

[PATCH 0/7] Enable iSCSI offload drivers to use information from iface.

2017-06-06 Thread Robert LeBlanc
. This is dependent on updates to Open-iSCSI. Robert LeBlanc (7): scsi/scsi_transport_iscsi: Add iface struct to kernel. scsi/scsi_transport_iscsi: Update ep_connect to include iface. ib/iSER: Add binding to source IP address. scsi/be2iscsi: Update beiscsi_ep_connect to accept iface

Re: [RFC] Add source address binding to iSER

2017-06-02 Thread Robert LeBlanc
The error that I was getting was due to the distro version of iscsid running. Once I stopped that and ran iscsid from the patched source, it logged in just fine. Robert LeBlanc PGP Fingerprint 79A2 9CA4 6CC4 45DD A904 C70E E654 3BB2 FA62 B9F1 On Fri, Jun 2, 2017 at 2:29 PM

Re: [RFC] Add source address binding to iSER

2017-06-02 Thread Robert LeBlanc
Attaching patches in case they are mangled. Robert LeBlanc PGP Fingerprint 79A2 9CA4 6CC4 45DD A904 C70E E654 3BB2 FA62 B9F1 On Fri, Jun 2, 2017 at 1:13 PM, Robert LeBlanc <rob...@leblancnet.us> wrote: > First off, I've never done anything this complicated, please

[RFC] Add source address binding to iSER

2017-06-02 Thread Robert LeBlanc
* TODO: we may have to make this bigger and interconnect + * specific for infiniband + */ +charhwaddress[ISCSI_HWADDRESS_BUF_SIZE]; +char transport_name[ISCSI_TRANSPORT_NAME_MAXLEN]; +/* + * This is only used for boot now, but the iser guys +

Revisit: [iscsi ifaces / multipathing / etc] thread from 2010

2017-05-25 Thread Robert LeBlanc
ntf(iser_conn->name, "%pISp", dst_addr); iser_info("connecting to: %s\n", iser_conn->name); + iser_err("connecting from: %p\n", src_addr); /* the device is known only --after-- address resolution */ ib_conn->device = NULL; --

iSCSI and SNMP

2013-10-09 Thread Robert Fisher
Any chance to get SNMP integrated into open-iSCSI? I am using the IETF proposed iSCSI MIB but it doesn't seem to be working. If by any chance that it is supposed to work, does anyone have decent documentation on how to install it? -- You received this message because you are subscribed to