SCSI misc on 20221222
Mostly small bug fixes and small updates. The only things of note is a qla2xxx fix for crash on hotplug and timeout and the addition of a user exposed abstraction layer for persistent reservation error return handling (which necessitates the conversion of nvme.c as well as SCSI). Signed-off-by: James E.J. Bottomley <jejb@linux.ibm.com> -----BEGIN PGP SIGNATURE----- iJwEABMIAEQWIQTnYEDbdso9F2cI+arnQslM7pishQUCY6SZISYcamFtZXMuYm90 dG9tbGV5QGhhbnNlbnBhcnRuZXJzaGlwLmNvbQAKCRDnQslM7pishQkdAP9Juri0 ihkyA9tVx1ZslVOp8V8mWK3P2VROA4ArvcMRVwD/Qxf2REP8Fx2GIgC0sNaRedg3 +ncveg3EpZ1n/NXXeDw= =q+XO -----END PGP SIGNATURE----- Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi Pull more SCSI updates from James Bottomley: "Mostly small bug fixes and small updates. The only things of note is a qla2xxx fix for crash on hotplug and timeout and the addition of a user exposed abstraction layer for persistent reservation error return handling (which necessitates the conversion of nvme.c as well as SCSI)" * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: scsi: qla2xxx: Fix crash when I/O abort times out nvme: Convert NVMe errors to PR errors scsi: sd: Convert SCSI errors to PR errors scsi: core: Rename status_byte to sg_status_byte block: Add error codes for common PR failures scsi: sd: sd_zbc: Trace zone append emulation scsi: libfc: Include the correct header
This commit is contained in:
commit
8395ae05cb
11 changed files with 187 additions and 11 deletions
|
|
@ -4,6 +4,23 @@
|
|||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum pr_status {
|
||||
PR_STS_SUCCESS = 0x0,
|
||||
/*
|
||||
* The following error codes are based on SCSI, because the interface
|
||||
* was originally created for it and has existing users.
|
||||
*/
|
||||
/* Generic device failure. */
|
||||
PR_STS_IOERR = 0x2,
|
||||
PR_STS_RESERVATION_CONFLICT = 0x18,
|
||||
/* Temporary path failure that can be retried. */
|
||||
PR_STS_RETRY_PATH_FAILURE = 0xe0000,
|
||||
/* The request was failed due to a fast failure timer. */
|
||||
PR_STS_PATH_FAST_FAILED = 0xf0000,
|
||||
/* The path cannot be reached and has been marked as failed. */
|
||||
PR_STS_PATH_FAILED = 0x10000,
|
||||
};
|
||||
|
||||
enum pr_type {
|
||||
PR_WRITE_EXCLUSIVE = 1,
|
||||
PR_EXCLUSIVE_ACCESS = 2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue