If it helps, also, again with the caveat that I'm doing this partially
for my own education, the above also matches what I found in the git
tree from kernel.ubuntu.com:

bladernr@galactica:~/development/git/ubuntu-kernel-git$ git checkout tags/v4.19
Previous HEAD position was 35a7f35ad1b1 Linux 4.19-rc8
HEAD is now at 84df9525b0c2 Linux 4.19
bladernr@galactica:~/development/git/ubuntu-kernel-git$ for x in `cat commits`; 
do if git log | grep -q $x; then echo "Commit $x: FOUND"; else echo "Commit $x: 
NOT FOUND"; fi; done
Commit b0f9408b14838566b2a9b26434fab667c2afb0ea: FOUND
Commit 339faa8150fd56891105bc69fc18f5d51b8a63dd: FOUND
Commit 61c187e46ebb27f51b52bd0eb68b7f534a300184: FOUND
Commit 957c5ab108c7d98369b7524daea532c0ebbcf845: FOUND
Commit 26b390aba2a8f7b9dd5ce4e3ada9431de327da6d: FOUND
Commit 9f8d05fa98442de78d1ab30235b0cc656ed7aff0: FOUND
Commit dac12fbc7b0a433a160b89212a56e155c94f3a80: FOUND
Commit 4ae5e9d159f83392c98c4ed88dfc63f19745be38: FOUND
Commit f23f5bece686a76598335141a091934f7eb0998c: FOUND
Commit 6396bb221514d2876fd6dc0aa2a1f240d99b37bb: FOUND
Commit 6da2ec56059c3c7a7e5f729e6349e74ace1e5c57: FOUND

bladernr@galactica:~/development/git/ubuntu-kernel-git$ git checkout tags/v4.18
Checking out files: 100% (11699/11699), done.
Previous HEAD position was 84df9525b0c2 Linux 4.19
HEAD is now at 94710cac0ef4 Linux 4.18
bladernr@galactica:~/development/git/ubuntu-kernel-git$ for x in `cat commits`; 
do if git log | grep -q $x; then echo "Commit $x: FOUND"; else echo "Commit $x: 
NOT FOUND"; fi; done
Commit b0f9408b14838566b2a9b26434fab667c2afb0ea: FOUND
Commit 339faa8150fd56891105bc69fc18f5d51b8a63dd: FOUND
Commit 61c187e46ebb27f51b52bd0eb68b7f534a300184: FOUND
Commit 957c5ab108c7d98369b7524daea532c0ebbcf845: NOT FOUND
Commit 26b390aba2a8f7b9dd5ce4e3ada9431de327da6d: NOT FOUND
Commit 9f8d05fa98442de78d1ab30235b0cc656ed7aff0: NOT FOUND
Commit dac12fbc7b0a433a160b89212a56e155c94f3a80: NOT FOUND
Commit 4ae5e9d159f83392c98c4ed88dfc63f19745be38: NOT FOUND
Commit f23f5bece686a76598335141a091934f7eb0998c: FOUND
Commit 6396bb221514d2876fd6dc0aa2a1f240d99b37bb: FOUND
Commit 6da2ec56059c3c7a7e5f729e6349e74ace1e5c57: FOUND

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1798208

Title:
  smartpqi updates for ubuntu 18.04.2

Status in linux package in Ubuntu:
  Triaged

Bug description:
  This is a request to update the SmartPQI driver in Ubuntu kernel 18.04.2 by
  pulling the following patches from upstream kernel version 4.19-rc7.

  Microsemi would like added to Ubuntu 18.04.2 to bring the driver up to date 
with kernel.org and to 
  correct issues seen particularly on ARM systems.

  These patches cherry-pick cleanly from:
  git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git

  0001-scsi-smartpqi-add-in-new-supported-controllers.patch
       commit b0f9408b14838566b2a9b26434fab667c2afb0ea
       No functionality change.
       Add in more supported controllers.
  0002-scsi-smartpqi-workaround-fw-bug-for-oq-deletion.patch
       commit 339faa8150fd56891105bc69fc18f5d51b8a63dd
       Correct PQI operational queue deletion.
       Operational queues are deleted during resets.
  0003-scsi-smartpqi-update-driver-version.patch
       commit 61c187e46ebb27f51b52bd0eb68b7f534a300184
       No functionality change.
       Need context for the next version change patch below.
  0004-scsi-smartpqi-improve-handling-for-sync-requests.patch
       commit 957c5ab108c7d98369b7524daea532c0ebbcf845
       Correct driver active thread count when submitting internal commands.
  0005-scsi-smartpqi-improve-error-checking-for-sync-reques.patch
       commit 26b390aba2a8f7b9dd5ce4e3ada9431de327da6d
       Retry INQUIRY operations.
  0006-scsi-smartpqi-add-inspur-advantech-ids.patch
       commit 9f8d05fa98442de78d1ab30235b0cc656ed7aff0
       No functionality change.
       Add in more supported controllers.
  0007-scsi-smartpqi-fix-critical-ARM-issue-reading-PQI-ind.patch
       commit dac12fbc7b0a433a160b89212a56e155c94f3a80
       Critical bug fix for ARM.
       ARM does not handle volatile variables.
  0008-scsi-smartpqi-bump-driver-version-to-1.1.4-130.patch
       commit 4ae5e9d159f83392c98c4ed88dfc63f19745be38
       No functionality change.

  There are some other patches but they are kernel-wide patches that affect 
other modules:
  blk-mq-Allow-PCI-vector-offset-for-mapping-queues.patch
       commit f23f5bece686a76598335141a091934f7eb0998c
       This is a kernel-wide patch that affects multiple modules:
             block/blk-mq-pci.c
             drivers/nvme/host/pci.c
             drivers/scsi/qla2xxx/qla_os.c
             drivers/scsi/smartpqi/smartpqi_init.c
             include/linux/blk-mq-pci.h

  commit 6396bb221514d2876fd6dc0aa2a1f240d99b37bb
  Author: Kees Cook <keesc...@chromium.org>
  Date:   Tue Jun 12 14:03:40 2018 -0700

      treewide: kzalloc() -> kcalloc()

  
  commit 6da2ec56059c3c7a7e5f729e6349e74ace1e5c57
  Author: Kees Cook <keesc...@chromium.org>
  Date:   Tue Jun 12 13:55:00 2018 -0700

      treewide: kmalloc() -> kmalloc_array()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1798208/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to     : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp

Reply via email to