mbox series

[GIT,PULL] RISC-V Fixes for 5.0-rc5

Message ID mhng-e49bbf7a-76b1-4eda-a715-f5791b80197f@palmer-si-x1c4 (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] RISC-V Fixes for 5.0-rc5 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-5.0-rc5

Message

Palmer Dabbelt Feb. 2, 2019, 9:43 a.m. UTC
The following changes since commit 49a57857aeea06ca831043acbb0fa5e0f50602fd:

  Linux 5.0-rc3 (2019-01-21 13:14:44 +1300)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-5.0-rc5

for you to fetch changes up to ae662eec8a515ab550524e04c793b5ddf1aae3a1:

  riscv: Adjust mmap base address at a third of task size (2019-01-25 10:50:53 -0800)

----------------------------------------------------------------
RISC-V Fixes for 5.0-rc5

This patch set contains a handful of mostly-independent patches:

* A patch that causes our port to respect TIF_NEED_RESCHED, which fixes
  CONFIG_PREEMPT=y kernels.
* A fix to avoid double-put on OF nodes.
* Fix a misspelling of target in our Kconfig.
* Generic PCIe is enabled in our defconfig.
* A fix to our SBI early console to properly handle line endings.
* A fix such that max_low_pfn is counted in PFNs.
* A change to TASK_UNMAPPED_BASE to match what other arches do.

This has passed by standard "boot Fedora" flow.

----------------------------------------------------------------
Alexandre Ghiti (1):
      riscv: Adjust mmap base address at a third of task size

Alistair Francis (1):
      RISC-V: defconfig: Enable Generic PCIE by default

Andreas Schwab (2):
      RISC-V: fix bad use of of_node_put
      tty/serial: use uart_console_write in the RISC-V SBL early console

Antony Pavlov (2):
      RISC-V: asm/page.h: fix spelling mistake "CONFIG_64BITS" -> "CONFIG_64BIT"
      RISC-V: Kconfig: fix spelling mistake "traget" -> "target"

Guo Ren (1):
      riscv: fixup max_low_pfn with PFN_DOWN.

Palmer Dabbelt (2):
      RISC-V: defconfig: Move CONFIG_PCI{,E_XILINX}
      RISC-V: defconfig: Add CRYPTO_DEV_VIRTIO=y

Vincent Chen (1):
      RISC-V: Add _TIF_NEED_RESCHED check for kernel thread when CONFIG_PREEMPT=y

 arch/riscv/Kconfig                      |  2 +-
 arch/riscv/configs/defconfig            |  8 +++++---
 arch/riscv/include/asm/page.h           |  2 +-
 arch/riscv/include/asm/processor.h      |  2 +-
 arch/riscv/kernel/asm-offsets.c         |  1 +
 arch/riscv/kernel/entry.S               | 18 +++++++++++++++++-
 arch/riscv/kernel/setup.c               |  2 +-
 arch/riscv/kernel/smpboot.c             |  6 +-----
 arch/riscv/mm/init.c                    |  3 ++-
 drivers/tty/serial/earlycon-riscv-sbi.c | 13 ++++++++-----
 10 files changed, 38 insertions(+), 19 deletions(-)

Comments

Linus Torvalds Feb. 2, 2019, 6:48 p.m. UTC | #1
On Sat, Feb 2, 2019 at 1:43 AM Palmer Dabbelt <palmer@sifive.com> wrote:
>
> RISC-V Fixes for 5.0-rc5

Just a note: your pull requests don't get the automated pr-tracker-bot
emails about having been pulled, because you only cc the linux-riscv
mailing list.

If you want notification when I've pulled and pushed out, you should
consider just cc'ing lkml too, and then the automation will pick up
your pull requests, and do the "it has been merged" email thing when
it notices.

                   Linus
Palmer Dabbelt Feb. 5, 2019, 6:47 p.m. UTC | #2
On Sat, 02 Feb 2019 10:48:56 PST (-0800), Linus Torvalds wrote:
> On Sat, Feb 2, 2019 at 1:43 AM Palmer Dabbelt <palmer@sifive.com> wrote:
>>
>> RISC-V Fixes for 5.0-rc5
>
> Just a note: your pull requests don't get the automated pr-tracker-bot
> emails about having been pulled, because you only cc the linux-riscv
> mailing list.
>
> If you want notification when I've pulled and pushed out, you should
> consider just cc'ing lkml too, and then the automation will pick up
> your pull requests, and do the "it has been merged" email thing when
> it notices.

Thanks, I'll do that.  In fact, I think I remember to do it about half the time 
as I've seen these messages in the past.