public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] iscsi-initiator-core 1.6.2.0-rc1 for 2.6.12-rc1
@ 2005-04-01 20:01 Nicholas A. Bellinger
  2005-04-24  2:49 ` James Bottomley
  0 siblings, 1 reply; 3+ messages in thread
From: Nicholas A. Bellinger @ 2005-04-01 20:01 UTC (permalink / raw)
  To: iscsi-initiator-core-announce, linux-scsi
  Cc: iscsi-initiator-core-devel, James Bottomley, Christoph Hellwig,
	Mike Christie

Greetings all,

http://www.kernel.org/pub/linux/kernel/people/nab/iscsi-initiator-core/iscsi-initiator-core-1.6.2.0-rc1-2.6.12-rc1.patch.bz2

A few minor fixes in this release, with the main feature addition being
support for persistent connection/session parameters as defined within 
/etc/sysconfig/initiator.  For example, it is now possible to define
specific connection/session parameters and have those values remain
throughout connection/session failures.  Also, the first run of tests
with dm-multipath have been compelted successful.  I am working on a
section within the documentation to describe how these two pieces work
together within linux 2.6.

Also an important milestone has been reached with v1.0 of the
iscsi-initiator-core.org howto located at:

http://iscsi-initiator-core.org/mediawiki/index.php/Howto

This is a work in progress as data is imported from the ASCII version
from iscsi-initiator-core-tools v2.3.

This release is now considered stable and no new features will be added
until 1.6.2.0-final is released.

Thanks!

-- 
Nicholas A. Bellinger <nick@pyxtechnologies.com>
Chief Architect, PyX Technologies, Inc.
http://www.iscsi-initiator-core.org


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANNOUNCE] iscsi-initiator-core 1.6.2.0-rc1 for 2.6.12-rc1
  2005-04-01 20:01 [ANNOUNCE] iscsi-initiator-core 1.6.2.0-rc1 for 2.6.12-rc1 Nicholas A. Bellinger
@ 2005-04-24  2:49 ` James Bottomley
  2005-04-26  0:00   ` Nicholas A. Bellinger
  0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2005-04-24  2:49 UTC (permalink / raw)
  To: Nicholas A. Bellinger
  Cc: iscsi-initiator-core-announce, linux-scsi,
	iscsi-initiator-core-devel, Christoph Hellwig, Mike Christie

On Fri, 2005-04-01 at 12:01 -0800, Nicholas A. Bellinger wrote:
> A few minor fixes in this release, with the main feature addition being
> support for persistent connection/session parameters as defined within 
> /etc/sysconfig/initiator.  For example, it is now possible to define
> specific connection/session parameters and have those values remain
> throughout connection/session failures.  Also, the first run of tests
> with dm-multipath have been compelted successful.  I am working on a
> section within the documentation to describe how these two pieces work
> together within linux 2.6.
> 
> Also an important milestone has been reached with v1.0 of the
> iscsi-initiator-core.org howto located at:
> 
> http://iscsi-initiator-core.org/mediawiki/index.php/Howto
> 
> This is a work in progress as data is imported from the ASCII version
> from iscsi-initiator-core-tools v2.3.
> 
> This release is now considered stable and no new features will be added
> until 1.6.2.0-final is released.

OK, I assessed this for inclusion.

The feedback I had based on my last review was

1) Use the iscsi transport class
2) get rid of MC/S in favour of dm-multipath
3) Don't try to subvert the SCSI error handler

Point 3) is much better, but still present in this:

+	/*
+	 * This is completion of a given struct scsi_cmnd after an
+	 * iSCSI exception occured.  Based upon iSCSI exceptions and/or
+	 * passed action parameter, struct scsi_cmnd->eh_timeout may have
+	 * been stopped, and needs to be rstarted before completion to
+	 * the SCSI stack.
+	 */
+	if (!(timer_pending(&sc->eh_timeout))) {
+		sc->eh_timeout.data = (unsigned long) sc;
+		sc->eh_timeout.expires = (jiffies + sc->timeout_per_command);
+		sc->eh_timeout.function = scsi_timeout_function;
+		add_timer(&sc->eh_timeout);

However the other two still have not been addressed, so this patch is
not suitable for inclusion.

James



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [ANNOUNCE] iscsi-initiator-core 1.6.2.0-rc1 for 2.6.12-rc1
  2005-04-24  2:49 ` James Bottomley
@ 2005-04-26  0:00   ` Nicholas A. Bellinger
  0 siblings, 0 replies; 3+ messages in thread
From: Nicholas A. Bellinger @ 2005-04-26  0:00 UTC (permalink / raw)
  To: James Bottomley
  Cc: iscsi-initiator-core-announce, linux-scsi,
	iscsi-initiator-core-devel, Christoph Hellwig, Mike Christie

On Sat, 2005-04-23 at 21:49 -0500, James Bottomley wrote:
> OK, I assessed this for inclusion.
> 
> The feedback I had based on my last review was
> 
> 1) Use the iscsi transport class.

Ok, this is something that I will work on against 2.6.12-rc3 tonight.
My primary concern is the parameters that are currently defined as
session wide when they are specific to only an connection context:

1) HeaderDigest & DataDigest
2) IP/Port
3) IFMarker, OFMarker, OFMarkInt and IFMarkInt.

My primary concern is that this will cause breakage between the current
linux-iscsi implementation and what correct parameter contexts that are
defined by RFC 3720.  These are used in the correct contexts in
drivers/scsi/iscsi_initiator_core/iscsi_initiator_sysfs.c, and I will
look into seeing how the correct map to what scsi_transport_iscsi.c
currently provides without breaking linux-iscsi, and without causing too
much changes within iscsi-initiator-core.

Aside from the parameter bits, is there anything else that can go into
scsi_transport_iscsi.c that can be shared?  What about
scsi_internal_device_block() and scsi_internal_device_unblock()?  Is
there anything else?

> 2) get rid of MC/S in favour of dm-multipath.

Is it acceptable to disable MC/S in the short term?  I am concerned that
removing something as basic as MC/S will cause other issues that can
potentially cause stability problems.  I have no issues with removing
this feature but would prefer it be done after this stable release.

> 3) Don't try to subvert the SCSI error handler
> 
> Point 3) is much better, but still present in this:
> 
> +	/*
> +	 * This is completion of a given struct scsi_cmnd after an
> +	 * iSCSI exception occured.  Based upon iSCSI exceptions and/or
> +	 * passed action parameter, struct scsi_cmnd->eh_timeout may have
> +	 * been stopped, and needs to be rstarted before completion to
> +	 * the SCSI stack.
> +	 */
> +	if (!(timer_pending(&sc->eh_timeout))) {
> +		sc->eh_timeout.data = (unsigned long) sc;
> +		sc->eh_timeout.expires = (jiffies + sc->timeout_per_command);
> +		sc->eh_timeout.function = scsi_timeout_function;
> +		add_timer(&sc->eh_timeout);
> 

Ok, I think I may have missed this one when I was removing the
eh_timeout bits.  I need to double check that there is no possibility of
the timer being expired at this point.

> However the other two still have not been addressed, so this patch is
> not suitable for inclusion.
> 

I will keep working towards your requests, thanks again your
consideration!


-- 
Nicholas A. Bellinger <nick@pyxtechnologies.com>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-04-26  0:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-01 20:01 [ANNOUNCE] iscsi-initiator-core 1.6.2.0-rc1 for 2.6.12-rc1 Nicholas A. Bellinger
2005-04-24  2:49 ` James Bottomley
2005-04-26  0:00   ` Nicholas A. Bellinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox