linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] RISC-V Fixes for 5.0-rc5
@ 2019-02-02  9:43 Palmer Dabbelt
  2019-02-02 18:48 ` Linus Torvalds
  0 siblings, 1 reply; 3+ messages in thread
From: Palmer Dabbelt @ 2019-02-02  9:43 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-riscv

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(-)

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] RISC-V Fixes for 5.0-rc5
  2019-02-02  9:43 [GIT PULL] RISC-V Fixes for 5.0-rc5 Palmer Dabbelt
@ 2019-02-02 18:48 ` Linus Torvalds
  2019-02-05 18:47   ` Palmer Dabbelt
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2019-02-02 18:48 UTC (permalink / raw)
  To: Palmer Dabbelt; +Cc: linux-riscv

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

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] RISC-V Fixes for 5.0-rc5
  2019-02-02 18:48 ` Linus Torvalds
@ 2019-02-05 18:47   ` Palmer Dabbelt
  0 siblings, 0 replies; 3+ messages in thread
From: Palmer Dabbelt @ 2019-02-05 18:47 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-riscv

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.

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-05 18:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-02  9:43 [GIT PULL] RISC-V Fixes for 5.0-rc5 Palmer Dabbelt
2019-02-02 18:48 ` Linus Torvalds
2019-02-05 18:47   ` Palmer Dabbelt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).