-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/jejb/scsi Pull SCSI updates from James Bottomley: "This pull includes driver updates from the usual suspects (stex, hpsa, ncr5380, scsi_dh, qla2xxx, be2iscsi, hisi_sas, cxlflash, aacraid, mp3sas, megaraid_sas, ibmvscsi, ufs) plus an assortment of miscellaneous fixes. The major user visible change of this pull is that we've moved from monotonically increasing host number to an ida allocated one (meaning the numbers get re-used) because someone managed to wrap the count in an iscsi system. We don't believe there will be any adverse consequences of this" * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (230 commits) MAINTAINERS: use new email address for James Bottomley mpt3sas: Remove unnecessary synchronize_irq() before free_irq() sg: fix dxferp in from_to case cxlflash: Increase cmd_per_lun for better throughput cxlflash: Fix to avoid unnecessary scan with internal LUNs cxlflash: Reorder user context initialization cxlflash: Simplify attach path error cleanup cxlflash: Split out context initialization cxlflash: Unmap problem state area before detaching master context cxlflash: Simplify PCI registration scsi: storvsc: fix SRB_STATUS_ABORTED handling be2iscsi: set the boot_kset pointer to NULL in case of failure sd: Fix discard granularity when LBPRZ=1 be2iscsi: Remove unnecessary synchronize_irq() before free_irq() scsi_sysfs: call 'device_add' after attaching device handler scsi_dh_emc: update 'access_state' field scsi_dh_rdac: update 'access_state' field scsi_dh_alua: update 'access_state' field scsi_dh_alua: use common definitions for ALUA state scsi: Add 'access_state' and 'preferred_path' attribute ...
- Loading branch information
Showing
120 changed files
with
9,171 additions
and
3,159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ This file contains brief information about the SCSI tape driver. | |
The driver is currently maintained by Kai Mäkisara (email | ||
[email protected]) | ||
|
||
Last modified: Sun Aug 29 18:25:47 2010 by kai.makisara | ||
Last modified: Tue Feb 9 21:54:16 2016 by kai.makisara | ||
|
||
|
||
BASICS | ||
|
@@ -408,10 +408,15 @@ MTSETPART Moves the tape to the partition given by the argument at the | |
specified by MTSEEK. MTSETPART is inactive unless | ||
MT_ST_CAN_PARTITIONS set. | ||
MTMKPART Formats the tape with one partition (argument zero) or two | ||
partitions (the argument gives in megabytes the size of | ||
partition 1 that is physically the first partition of the | ||
tape). The drive has to support partitions with size specified | ||
by the initiator. Inactive unless MT_ST_CAN_PARTITIONS set. | ||
partitions (argument non-zero). If the argument is positive, | ||
it specifies the size of partition 1 in megabytes. For DDS | ||
drives and several early drives this is the physically first | ||
partition of the tape. If the argument is negative, its absolute | ||
value specifies the size of partition 0 in megabytes. This is | ||
the physically first partition of many later drives, like the | ||
LTO drives from LTO-5 upwards. The drive has to support partitions | ||
with size specified by the initiator. Inactive unless | ||
MT_ST_CAN_PARTITIONS set. | ||
MTSETDRVBUFFER | ||
Is used for several purposes. The command is obtained from count | ||
with mask MT_SET_OPTIONS, the low order bits are used as argument. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5007,9 +5007,9 @@ F: Documentation/blockdev/cpqarray.txt | |
F: drivers/block/cpqarray.* | ||
|
||
HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) | ||
M: Don Brace <don.brace@pmcs.com> | ||
M: Don Brace <don.brace@microsemi.com> | ||
L: [email protected] | ||
L: storagedev@pmcs.com | ||
L: esc.storagedev@microsemi.com | ||
L: [email protected] | ||
S: Supported | ||
F: Documentation/scsi/hpsa.txt | ||
|
@@ -6682,13 +6682,12 @@ S: Maintained | |
F: arch/arm/mach-lpc32xx/ | ||
|
||
LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) | ||
M: Nagalakshmi Nandigama <[email protected]> | ||
M: Praveen Krishnamoorthy <[email protected]> | ||
M: Sreekanth Reddy <[email protected]> | ||
M: Abhijit Mahajan <[email protected]> | ||
L: [email protected] | ||
M: Sathya Prakash <[email protected]> | ||
M: Chaitra P B <[email protected]> | ||
M: Suganath Prabu Subramani <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
W: http://www.lsilogic.com/support | ||
W: http://www.avagotech.com/support/ | ||
S: Supported | ||
F: drivers/message/fusion/ | ||
F: drivers/scsi/mpt2sas/ | ||
|
@@ -9691,7 +9690,7 @@ F: drivers/scsi/sg.c | |
F: include/scsi/sg.h | ||
|
||
SCSI SUBSYSTEM | ||
M: "James E.J. Bottomley" <JBottomley@odin.com> | ||
M: "James E.J. Bottomley" <[email protected].com> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git | ||
M: "Martin K. Petersen" <[email protected]> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.