blob: 0137c0b6cb7fe9717ceaf88a3818ace233320888 [file] [log] [blame]
Joel Stanleyaaafb392015-10-28 15:52:12 +10301From 6e9462ff5c5a1a4acdea277a8a5ba5c82c287b62 Mon Sep 17 00:00:00 2001
Joel Stanleye4aa6fb2015-09-29 13:31:58 +09302From: Mahesh Rajashekhara <Mahesh.Rajashekhara@pmcs.com>
3Date: Fri, 28 Aug 2015 06:38:33 -0400
Joel Stanleyeb877af2015-10-25 14:33:50 +10304Subject: [PATCH 07/17] aacraid: Fix for LD name and UID not exposed to OS
Joel Stanleye4aa6fb2015-09-29 13:31:58 +09305
6Driver sends the right size of the response buffer.
7
8Reviewed-by: Tomas Henzl <thenzl@redhat.com>
9Reviewed-by: Murthy Bhat <Murthy.Bhat@pmcs.com>
10Reviewed-by: Karthikeya Sunkesula <Karthikeya.Sunkesula@pmcs.com>
11Signed-off-by: Mahesh Rajashekhara <Mahesh.Rajashekhara@pmcs.com>
12Signed-off-by: Joel Stanley <joel@jms.id.au>
13---
14 drivers/scsi/aacraid/aachba.c | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c
18index 9b3dd6e..fe59b00 100644
19--- a/drivers/scsi/aacraid/aachba.c
20+++ b/drivers/scsi/aacraid/aachba.c
21@@ -570,7 +570,7 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd)
22
23 status = aac_fib_send(ContainerCommand,
24 cmd_fibcontext,
25- sizeof (struct aac_get_name),
26+ sizeof(struct aac_get_name_resp),
27 FsaNormal,
28 0, 1,
29 (fib_callback)get_container_name_callback,
30@@ -1052,7 +1052,7 @@ static int aac_get_container_serial(struct scsi_cmnd * scsicmd)
31
32 status = aac_fib_send(ContainerCommand,
33 cmd_fibcontext,
34- sizeof (struct aac_get_serial),
35+ sizeof(struct aac_get_serial_resp),
36 FsaNormal,
37 0, 1,
38 (fib_callback) get_container_serial_callback,
39--
402.5.0
41