diff options
author | Joel Stanley <joel@jms.id.au> | 2015-10-25 14:33:50 +1030 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2015-10-25 14:33:50 +1030 |
commit | eb877af4b92732ce874606a0062725c234bbd3c3 (patch) | |
tree | 2fd0b5a070f6903b40f37fad829261b8fac811de /openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch | |
parent | dafa33600e73db308afdfecebb0a73c4f8f4ae4f (diff) | |
download | talos-op-build-eb877af4b92732ce874606a0062725c234bbd3c3.tar.gz talos-op-build-eb877af4b92732ce874606a0062725c234bbd3c3.zip |
linux: update to v4.2.4-openpower1
- Rebased on upstream stable release v4.2.4
- Upstream commit "8c24d6d7b09d usb: xhci: stop everything on the first
call to xhci_stop" means that our patch "xhci: do not halt the
secondary HCD" is no longer required
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch')
-rw-r--r-- | openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch b/openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch deleted file mode 100644 index 0c0ae0f2..00000000 --- a/openpower/linux/linux-0008-aacraid-Fix-for-LD-name-and-UID-not-exposed-to-OS.patch +++ /dev/null @@ -1,41 +0,0 @@ -From a4f608b4005ba460bf0f58297f3362b733a43424 Mon Sep 17 00:00:00 2001 -From: Mahesh Rajashekhara <Mahesh.Rajashekhara@pmcs.com> -Date: Fri, 28 Aug 2015 06:38:33 -0400 -Subject: [PATCH 08/18] aacraid: Fix for LD name and UID not exposed to OS - -Driver sends the right size of the response buffer. - -Reviewed-by: Tomas Henzl <thenzl@redhat.com> -Reviewed-by: Murthy Bhat <Murthy.Bhat@pmcs.com> -Reviewed-by: Karthikeya Sunkesula <Karthikeya.Sunkesula@pmcs.com> -Signed-off-by: Mahesh Rajashekhara <Mahesh.Rajashekhara@pmcs.com> -Signed-off-by: Joel Stanley <joel@jms.id.au> ---- - drivers/scsi/aacraid/aachba.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c -index 9b3dd6e..fe59b00 100644 ---- a/drivers/scsi/aacraid/aachba.c -+++ b/drivers/scsi/aacraid/aachba.c -@@ -570,7 +570,7 @@ static int aac_get_container_name(struct scsi_cmnd * scsicmd) - - status = aac_fib_send(ContainerCommand, - cmd_fibcontext, -- sizeof (struct aac_get_name), -+ sizeof(struct aac_get_name_resp), - FsaNormal, - 0, 1, - (fib_callback)get_container_name_callback, -@@ -1052,7 +1052,7 @@ static int aac_get_container_serial(struct scsi_cmnd * scsicmd) - - status = aac_fib_send(ContainerCommand, - cmd_fibcontext, -- sizeof (struct aac_get_serial), -+ sizeof(struct aac_get_serial_resp), - FsaNormal, - 0, 1, - (fib_callback) get_container_serial_callback, --- -2.5.0 - |