diff mbox series

[2/2] scsi_debug: update documentation url and bump version

Message ID 20200712182927.72044-3-dgilbert@interlog.com (mailing list archive)
State Mainlined
Commit 30f67481a18b85abae6099ef3196294072994870
Headers show
Series scsi_debug: every_nth cleanup, url + version | expand

Commit Message

Douglas Gilbert July 12, 2020, 6:29 p.m. UTC
This driver maintains a version number which is cross-referenced
in the documentation (e.g. to indicate when features are added or
changed) and exposed through the responses to various SCSI
commands. For example the version number is use as the Product
Revision number in standard SCSI INQUIRY responses issued by this
driver. The version date string is placed in a vendor specific
area in each standard SCSI INQUIRY response. This patch bumps
both.

Update the driver documentation URL that appears at the top of
the driver source file.

Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>
---
 drivers/scsi/scsi_debug.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

James Bottomley July 12, 2020, 6:42 p.m. UTC | #1
On Sun, 2020-07-12 at 14:29 -0400, Douglas Gilbert wrote:
[...]
> - *  For documentation see http://sg.danny.cz/sg/sdebug26.html
> + *  For documentation see http://sg.danny.cz/sg/scsi_debug.html

If you're doing this, what about asking danny for a https URL to at
least prevent pointless churn around this file?

James
Douglas Gilbert July 12, 2020, 6:47 p.m. UTC | #2
On 2020-07-12 2:42 p.m., James Bottomley wrote:
> On Sun, 2020-07-12 at 14:29 -0400, Douglas Gilbert wrote:
> [...]
>> - *  For documentation see http://sg.danny.cz/sg/sdebug26.html
>> + *  For documentation see http://sg.danny.cz/sg/scsi_debug.html
> 
> If you're doing this, what about asking danny for a https URL to at
> least prevent pointless churn around this file?

James,
I have asked multiple times about that upgrade (i.e. http --> https).
Still waiting.

Doug Gilbert
diff mbox series

Patch

diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
index e37df710c623..01d40f6eec20 100644
--- a/drivers/scsi/scsi_debug.c
+++ b/drivers/scsi/scsi_debug.c
@@ -9,7 +9,7 @@ 
  *
  * Copyright (C) 2001 - 2020 Douglas Gilbert
  *
- *  For documentation see http://sg.danny.cz/sg/sdebug26.html
+ *  For documentation see http://sg.danny.cz/sg/scsi_debug.html
  */
 
 
@@ -60,8 +60,8 @@ 
 #include "scsi_logging.h"
 
 /* make sure inq_product_rev string corresponds to this version */
-#define SDEBUG_VERSION "0189"	/* format to fit INQUIRY revision field */
-static const char *sdebug_version_date = "20200421";
+#define SDEBUG_VERSION "0190"	/* format to fit INQUIRY revision field */
+static const char *sdebug_version_date = "20200710";
 
 #define MY_NAME "scsi_debug"