aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-10-24 18:10:26 -0400
committerJames Bottomley <JBottomley@Parallels.com>2011-10-30 14:06:58 +0400
commita63ec37629415848b5704eda5110fe8e750032ca (patch)
treec5d4ae7bd8bb6e0e592931540d62f521df1e1c94 /drivers/scsi
parent[SCSI] bnx2fc: Bumped version to 1.0.9 (diff)
downloadlinux-dev-a63ec37629415848b5704eda5110fe8e750032ca.tar.xz
linux-dev-a63ec37629415848b5704eda5110fe8e750032ca.zip
[SCSI] pmcraid: pmcraid_chr_ioctl uses incorrect argument order to kmalloc()
Size is 1st arg, not second. Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/pmcraid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c
index b86db84d6f32..5163edb925cb 100644
--- a/drivers/scsi/pmcraid.c
+++ b/drivers/scsi/pmcraid.c
@@ -4102,7 +4102,7 @@ static long pmcraid_chr_ioctl(
struct pmcraid_ioctl_header *hdr = NULL;
int retval = -ENOTTY;
- hdr = kmalloc(GFP_KERNEL, sizeof(struct pmcraid_ioctl_header));
+ hdr = kmalloc(sizeof(struct pmcraid_ioctl_header), GFP_KERNEL);
if (!hdr) {
pmcraid_err("faile to allocate memory for ioctl header\n");