mbox series

[Xenial,SRU] Xenial update to 4.4.149 stable release

Message ID 1536828577-24198-1-git-send-email-stefan.bader@canonical.com
State New
Headers show
Series [Xenial,SRU] Xenial update to 4.4.149 stable release | expand

Pull-request

git://git.launchpad.net/~smb/+git/linux-xenial stable-4.4

Message

Stefan Bader Sept. 13, 2018, 8:49 a.m. UTC
https://bugs.launchpad.net/ubuntu/xenial/+source/linux/+bug/1792310

All patches but "tcp: Fix missing range_truesize enlargement in
the backport" applied cleanly. And the one patch only failed
because we had a differently wrong backport of the original
"tcp: detect malicious patterns in tcp_collapse_ofo_queue()".
So I modified the fixup to correct both parts.

-Stefan

---

The following changes since commit d729489723be7d46722112b515568ee845402d50:

  Linux 4.4.148 (2018-09-12 21:57:19 +0200)

are available in the git repository at:

  git://git.launchpad.net/~smb/+git/linux-xenial stable-4.4

for you to fetch changes up to 28e5e96113b06008f459944bf82a32bb26cf9a91:

  Linux 4.4.149 (2018-09-13 10:14:48 +0200)

----------------------------------------------------------------
Andrey Konovalov (1):
      kasan: don't emit builtin calls when sanitization is off

Chintan Pandya (1):
      ioremap: Update pgtable free interfaces with addr

Eric Biggers (4):
      crypto: vmac - require a block cipher with 128-bit block size
      crypto: vmac - separate tfm and request context
      crypto: blkcipher - fix crash flushing dcache in error path
      crypto: ablkcipher - fix crash flushing dcache in error path

Greg Kroah-Hartman (1):
      Linux 4.4.149

Liwei Song (1):
      i2c: ismt: fix wrong device address when unmap the data buffer

Mark Salyzyn (1):
      Bluetooth: hidp: buffer overflow in hidp_process_report

Randy Dunlap (1):
      kbuild: verify that $DEPMOD is installed

Takashi Iwai (1):
      tcp: Fix missing range_truesize enlargement in the backport

Thierry Escande (1):
      ASoC: Intel: cht_bsw_max98090_ti: Fix jack initialization

Toshi Kani (2):
      x86/mm: Disable ioremap free page handling on x86-PAE
      x86/mm: Add TLB purge to free pmd/pte page interfaces

 Documentation/Changes                        |  17 +-
 Makefile                                     |   5 +-
 arch/arm64/mm/mmu.c                          |   4 +-
 arch/x86/mm/pgtable.c                        |  61 +++-
 crypto/ablkcipher.c                          |  57 ++--
 crypto/blkcipher.c                           |  54 ++--
 crypto/vmac.c                                | 412 ++++++++++++---------------
 drivers/i2c/busses/i2c-ismt.c                |   2 +-
 include/asm-generic/pgtable.h                |   8 +-
 include/crypto/vmac.h                        |  63 ----
 lib/ioremap.c                                |   4 +-
 net/bluetooth/hidp/core.c                    |   4 +-
 net/ipv4/tcp_input.c                         |   3 +-
 scripts/Makefile.kasan                       |   3 +
 scripts/Makefile.lib                         |   2 +-
 scripts/depmod.sh                            |   8 +-
 sound/soc/intel/boards/cht_bsw_max98090_ti.c |  45 ++-
 17 files changed, 354 insertions(+), 398 deletions(-)
 delete mode 100644 include/crypto/vmac.h

Comments

Kleber Sacilotto de Souza Oct. 1, 2018, 10:39 a.m. UTC | #1
On 09/13/18 10:49, Stefan Bader wrote:
> https://bugs.launchpad.net/ubuntu/xenial/+source/linux/+bug/1792310
> 
> All patches but "tcp: Fix missing range_truesize enlargement in
> the backport" applied cleanly. And the one patch only failed
> because we had a differently wrong backport of the original
> "tcp: detect malicious patterns in tcp_collapse_ofo_queue()".
> So I modified the fixup to correct both parts.
> 
> -Stefan
> 
> ---
> 
> The following changes since commit d729489723be7d46722112b515568ee845402d50:
> 
>   Linux 4.4.148 (2018-09-12 21:57:19 +0200)
> 
> are available in the git repository at:
> 
>   git://git.launchpad.net/~smb/+git/linux-xenial stable-4.4
> 
> for you to fetch changes up to 28e5e96113b06008f459944bf82a32bb26cf9a91:
> 
>   Linux 4.4.149 (2018-09-13 10:14:48 +0200)
> 
> ----------------------------------------------------------------
> Andrey Konovalov (1):
>       kasan: don't emit builtin calls when sanitization is off
> 
> Chintan Pandya (1):
>       ioremap: Update pgtable free interfaces with addr
> 
> Eric Biggers (4):
>       crypto: vmac - require a block cipher with 128-bit block size
>       crypto: vmac - separate tfm and request context
>       crypto: blkcipher - fix crash flushing dcache in error path
>       crypto: ablkcipher - fix crash flushing dcache in error path
> 
> Greg Kroah-Hartman (1):
>       Linux 4.4.149
> 
> Liwei Song (1):
>       i2c: ismt: fix wrong device address when unmap the data buffer
> 
> Mark Salyzyn (1):
>       Bluetooth: hidp: buffer overflow in hidp_process_report
> 
> Randy Dunlap (1):
>       kbuild: verify that $DEPMOD is installed
> 
> Takashi Iwai (1):
>       tcp: Fix missing range_truesize enlargement in the backport
> 
> Thierry Escande (1):
>       ASoC: Intel: cht_bsw_max98090_ti: Fix jack initialization
> 
> Toshi Kani (2):
>       x86/mm: Disable ioremap free page handling on x86-PAE
>       x86/mm: Add TLB purge to free pmd/pte page interfaces
> 
>  Documentation/Changes                        |  17 +-
>  Makefile                                     |   5 +-
>  arch/arm64/mm/mmu.c                          |   4 +-
>  arch/x86/mm/pgtable.c                        |  61 +++-
>  crypto/ablkcipher.c                          |  57 ++--
>  crypto/blkcipher.c                           |  54 ++--
>  crypto/vmac.c                                | 412 ++++++++++++---------------
>  drivers/i2c/busses/i2c-ismt.c                |   2 +-
>  include/asm-generic/pgtable.h                |   8 +-
>  include/crypto/vmac.h                        |  63 ----
>  lib/ioremap.c                                |   4 +-
>  net/bluetooth/hidp/core.c                    |   4 +-
>  net/ipv4/tcp_input.c                         |   3 +-
>  scripts/Makefile.kasan                       |   3 +
>  scripts/Makefile.lib                         |   2 +-
>  scripts/depmod.sh                            |   8 +-
>  sound/soc/intel/boards/cht_bsw_max98090_ti.c |  45 ++-
>  17 files changed, 354 insertions(+), 398 deletions(-)
>  delete mode 100644 include/crypto/vmac.h
> 

Applied to xenial/master-next branch.

Thanks,
Kleber