diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-03-02 14:42:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-03-02 14:42:16 -0500 |
commit | 426d266c12e9116497e3055212f823a56e1a6914 (patch) | |
tree | c65828dd2f7aca6da8267f2a405ba39789eb6581 /drivers/scsi/osd | |
parent | 20e6926dcbafa1b361f1c29d967688be14b6ca4b (diff) | |
parent | 3e34c1fc2b51f117045e4a2472572f14ac91df6e (diff) |
Merge tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull SCSI updates from James Bottomley:
"This is an assorted set of stragglers into the merge window with
driver updates for qla2xxx, megaraid_sas, storvsc and ufs.
It also includes pulls of the uapi tree (all the remaining SCSI
pieces) and the fcoe tree (updates to fcoe and libfc)"
* tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (81 commits)
[SCSI] ufs: Separate PCI code into glue driver
[SCSI] ufs: Segregate PCI Specific Code
[SCSI] scsi: fix lpfc build when wmb() is defined as mb()
[SCSI] storvsc: Handle dynamic resizing of the device
[SCSI] storvsc: Restructure error handling code on command completion
[SCSI] storvsc: avoid usage of WRITE_SAME
[SCSI] aacraid: suppress two GCC warnings
[SCSI] hpsa: check for dma_mapping_error in hpsa_passthru ioctls
[SCSI] hpsa: reorganize error handling in hpsa_passthru_ioctl
[SCSI] hpsa: check for dma_mapping_error in hpsa_map_sg_chain_block
[SCSI] hpsa: Check for dma_mapping_error for all code paths using fill_cmd
[SCSI] hpsa: Check for dma_mapping_error in hpsa_map_one
[SCSI] dc395x: uninitialized variable in device_alloc()
[SCSI] Fix range check in scsi_host_dif_capable()
[SCSI] storvsc: Initialize the sglist
[SCSI] mpt2sas: Add support for OEM specific controller
[SCSI] ipr: Fix oops while resetting an ipr adapter
[SCSI] fnic: Fnic Trace Utility
[SCSI] fnic: New debug flags and debug log messages
[SCSI] fnic: fnic driver may hit BUG_ON on device reset
...
Diffstat (limited to 'drivers/scsi/osd')
-rw-r--r-- | drivers/scsi/osd/osd_initiator.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/scsi/osd/osd_initiator.c b/drivers/scsi/osd/osd_initiator.c index c06b8e5aa2cf..d8293f25ca33 100644 --- a/drivers/scsi/osd/osd_initiator.c +++ b/drivers/scsi/osd/osd_initiator.c | |||
@@ -144,6 +144,10 @@ static int _osd_get_print_system_info(struct osd_dev *od, | |||
144 | odi->osdname_len = get_attrs[a].len; | 144 | odi->osdname_len = get_attrs[a].len; |
145 | /* Avoid NULL for memcmp optimization 0-length is good enough */ | 145 | /* Avoid NULL for memcmp optimization 0-length is good enough */ |
146 | odi->osdname = kzalloc(odi->osdname_len + 1, GFP_KERNEL); | 146 | odi->osdname = kzalloc(odi->osdname_len + 1, GFP_KERNEL); |
147 | if (!odi->osdname) { | ||
148 | ret = -ENOMEM; | ||
149 | goto out; | ||
150 | } | ||
147 | if (odi->osdname_len) | 151 | if (odi->osdname_len) |
148 | memcpy(odi->osdname, get_attrs[a].val_ptr, odi->osdname_len); | 152 | memcpy(odi->osdname, get_attrs[a].val_ptr, odi->osdname_len); |
149 | OSD_INFO("OSD_NAME [%s]\n", odi->osdname); | 153 | OSD_INFO("OSD_NAME [%s]\n", odi->osdname); |