From: <vl...@us...> - 2006-12-04 10:53:26
|
Revision: 39 http://svn.sourceforge.net/scst/?rev=39&view=rev Author: vlnb Date: 2006-12-04 02:53:25 -0800 (Mon, 04 Dec 2006) Log Message: ----------- Updated version to 0.9.6 and Makefiles to bring the debug options back Modified Paths: -------------- trunk/qla2x00t/qla2x00-target/ChangeLog trunk/qla2x00t/qla2x00-target/Makefile trunk/qla2x00t/qla2x00-target/README trunk/qla2x00t/qla2x00-target/qla2x00t.h trunk/scst/README trunk/scst/include/scsi_tgt.h trunk/scst/src/Makefile trunk/scst/src/dev_handlers/Makefile Modified: trunk/qla2x00t/qla2x00-target/ChangeLog =================================================================== --- trunk/qla2x00t/qla2x00-target/ChangeLog 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/qla2x00t/qla2x00-target/ChangeLog 2006-12-04 10:53:25 UTC (rev 39) @@ -1,3 +1,8 @@ +Summary of changes between versions 0.9.5 and 0.9.6 +--------------------------------------------------- + + + Summary of changes between versions 0.9.3.8 and 0.9.5 ----------------------------------------------------- Modified: trunk/qla2x00t/qla2x00-target/Makefile =================================================================== --- trunk/qla2x00t/qla2x00-target/Makefile 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/qla2x00t/qla2x00-target/Makefile 2006-12-04 10:53:25 UTC (rev 39) @@ -26,17 +26,17 @@ # - install and uninstall must be made as root # -SCST_INC_DIR := /usr/local/include/scst -#SCST_INC_DIR := $(SUBDIRS)/../../scst/include -#SCST_DIR := $(shell pwd)/../../scst/src -SCST_DIR := $(shell pwd)/../../scst-0.9.5/src +#SCST_INC_DIR := /usr/local/include/scst +SCST_INC_DIR := $(SUBDIRS)/../../scst/include +SCST_DIR := $(shell pwd)/../../scst/src +#SCST_DIR := $(shell pwd)/../../scst-0.9.5/src EXTRA_CFLAGS += -I$(SCST_INC_DIR) -DFC_TARGET_SUPPORT INSTALL_DIR := /lib/modules/$(shell uname -r)/extra EXTRA_CFLAGS += -DEXTRACHECKS -EXTRA_CFLAGS += -DTRACING -#EXTRA_CFLAGS += -DDEBUG_TGT +#EXTRA_CFLAGS += -DTRACING +EXTRA_CFLAGS += -DDEBUG_TGT #EXTRA_CFLAGS += -DDEBUG_WORK_IN_THREAD ifeq ($(KVER),) Modified: trunk/qla2x00t/qla2x00-target/README =================================================================== --- trunk/qla2x00t/qla2x00-target/README 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/qla2x00t/qla2x00-target/README 2006-12-04 10:53:25 UTC (rev 39) @@ -1,7 +1,7 @@ Target driver for Qlogic 2200/2300 Fibre Channel cards ====================================================== -Version 0.9.5, 01 Dec 2006 +Version 0.9.6, XX XXX 200X -------------------------- This driver has all required features and looks to be quite stable (for Modified: trunk/qla2x00t/qla2x00-target/qla2x00t.h =================================================================== --- trunk/qla2x00t/qla2x00-target/qla2x00t.h 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/qla2x00t/qla2x00-target/qla2x00t.h 2006-12-04 10:53:25 UTC (rev 39) @@ -31,7 +31,7 @@ /* Version numbers, the same as for the kernel */ #define Q2T_VERSION(a,b,c,d) (((a) << 030) + ((b) << 020) + (c) << 010 + (d)) #define Q2T_VERSION_CODE Q2T_VERSION(0,9,5,0) -#define Q2T_VERSION_STRING "0.9.5" +#define Q2T_VERSION_STRING "0.9.6-pre1" #define Q2T_MAX_CDB_LEN 16 #define Q2T_TIMEOUT 10 /* in seconds */ Modified: trunk/scst/README =================================================================== --- trunk/scst/README 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/scst/README 2006-12-04 10:53:25 UTC (rev 39) @@ -1,7 +1,7 @@ Generic SCSI target mid-level for Linux (SCST) ============================================== -Version 0.9.5, 01 Dec 2006 +Version 0.9.6, XX XXX 200X -------------------------- SCST is designed to provide unified, consistent interface between SCSI Modified: trunk/scst/include/scsi_tgt.h =================================================================== --- trunk/scst/include/scsi_tgt.h 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/scst/include/scsi_tgt.h 2006-12-04 10:53:25 UTC (rev 39) @@ -30,9 +30,9 @@ #include <../drivers/scsi/scsi.h> /* Version numbers, the same as for the kernel */ -#define SCST_VERSION_CODE 0x000905 +#define SCST_VERSION_CODE 0x000906 #define SCST_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) -#define SCST_VERSION_STRING "0.9.5" +#define SCST_VERSION_STRING "0.9.6-pre1" /************************************************************* ** States of command processing state machine Modified: trunk/scst/src/Makefile =================================================================== --- trunk/scst/src/Makefile 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/scst/src/Makefile 2006-12-04 10:53:25 UTC (rev 39) @@ -76,13 +76,13 @@ #EXTRA_CFLAGS += -DSTRICT_SERIALIZING EXTRA_CFLAGS += -DEXTRACHECKS -EXTRA_CFLAGS += -DFILEIO_ONLY +#EXTRA_CFLAGS += -DFILEIO_ONLY #EXTRA_CFLAGS += -fno-inline -EXTRA_CFLAGS += -DTRACING +#EXTRA_CFLAGS += -DTRACING -#EXTRA_CFLAGS += -DDEBUG +EXTRA_CFLAGS += -DDEBUG #EXTRA_CFLAGS += -DDEBUG_TM -DTM_DBG_GO_OFFLINE=0 #EXTRA_CFLAGS += -DDEBUG_RETRY #EXTRA_CFLAGS += -DDEBUG_OOM Modified: trunk/scst/src/dev_handlers/Makefile =================================================================== --- trunk/scst/src/dev_handlers/Makefile 2006-12-01 19:01:35 UTC (rev 38) +++ trunk/scst/src/dev_handlers/Makefile 2006-12-04 10:53:25 UTC (rev 39) @@ -51,9 +51,9 @@ EXTRA_CFLAGS += -I$(SUBDIRS) -I$(SUBDIRS)/../include #EXTRA_CFLAGS += -I$(SUBDIRS) -I$(SUBDIRS)/../../include -I$(SUBDIRS)/.. -EXTRA_CFLAGS += -DTRACING +#EXTRA_CFLAGS += -DTRACING -#EXTRA_CFLAGS += -DDEBUG +EXTRA_CFLAGS += -DDEBUG clean: rm -f *.o *.ko .*.cmd *.mod.c .*.d .depend Modules.symvers Module.symvers This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |