Revision 812ad49d88b51fab551acb3c2d9c7d054bc69423 authored by Linus Torvalds on 04 October 2019, 20:02:47 UTC, committed by Linus Torvalds on 04 October 2019, 20:02:47 UTC
Pull RISC-V fixes from Paul Walmsley:

 - Ensure that exclusive-load reservations are terminated after system
   call or exception handling. This primarily affects QEMU, which does
   not expire load reservations.

 - Fix an issue primarily affecting RV32 platforms that can cause the DT
   header to be corrupted, causing boot failures.

* tag 'riscv/for-v5.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux:
  riscv: Fix memblock reservation for device tree blob
  RISC-V: Clear load reservations while restoring hart contexts
2 parent s a4ad51e + 922b037
Raw File
Makefile
# SPDX-License-Identifier: GPL-2.0

obj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o
libaes-y := aes.o

obj-$(CONFIG_CRYPTO_LIB_ARC4) += libarc4.o
libarc4-y := arc4.o

obj-$(CONFIG_CRYPTO_LIB_DES) += libdes.o
libdes-y := des.o

obj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o
libsha256-y := sha256.o
back to top