diff options
author | Dave Jones <davej@redhat.com> | 2011-10-24 18:10:26 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-10-30 14:06:58 +0400 |
commit | a63ec37629415848b5704eda5110fe8e750032ca (patch) | |
tree | c5d4ae7bd8bb6e0e592931540d62f521df1e1c94 | |
parent | fd2541893da50cbc1e547a9aaebf104bed859915 (diff) | |
download | linux-3.10-a63ec37629415848b5704eda5110fe8e750032ca.tar.gz linux-3.10-a63ec37629415848b5704eda5110fe8e750032ca.tar.bz2 linux-3.10-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>
-rw-r--r-- | drivers/scsi/pmcraid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index b86db84d6f3..5163edb925c 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"); |