linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PULL RFC] RISC-V Patches for 4.20-rc4
@ 2018-11-20 18:10 Palmer Dabbelt
  2018-11-20 18:10 ` Palmer Dabbelt
  2018-11-21  5:09 ` Bin Meng
  0 siblings, 2 replies; 4+ messages in thread
From: Palmer Dabbelt @ 2018-11-20 18:10 UTC (permalink / raw)
  To: linux-riscv

The following changes since commit 9ff01193a20d391e8dbce4403dd5ef87c7eaaca6:

  Linux 4.20-rc3 (2018-11-18 13:33:44 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.20-rc4

for you to fetch changes up to 5d8f81ba1da55210123b9595e87b913c79579d02:

  RISC-V: recognize S/U mode bits in print_isa (2018-11-20 05:19:28 -0800)

----------------------------------------------------------------
RISC-V Patches for 4.20-rc4

This week is a bit bigger than I expected.  That's my fault, as I missed
a few patches while I was at Plumbers last week.  We have:

* A fix to a quite embarassing issue where raw_copy_to_user() was
  implemented with asm_copy_from_user() (and vice versa).
* Improvements to our makefile to allow flat binaries to be generated.
* A build fix that predeclares "struct module" at the top of
  <asm/module.h>, which triggers warnings later in that header.
* The addition of our own <uapi/asm/unistd> header, which is necessary
  to align our stat ABI on 32-bit systems.
* A fix to avoid printing a warning when the S or U bits are set in
  print_isa().

I already have one patch in the queue for next week.

----------------------------------------------------------------
Anup Patel (1):
      RISC-V: Build flat and compressed kernel images

David Abdurachmanov (2):
      riscv: fix warning in arch/riscv/include/asm/module.h
      riscv: add asm/unistd.h UAPI header

Olof Johansson (1):
      RISC-V: Fix raw_copy_{to,from}_user()

Patrick St??hlin (1):
      RISC-V: recognize S/U mode bits in print_isa

 arch/riscv/Makefile                                | 15 +++++-
 arch/riscv/boot/.gitignore                         |  2 +
 arch/riscv/boot/Makefile                           | 33 ++++++++++++
 arch/riscv/boot/install.sh                         | 60 ++++++++++++++++++++++
 arch/riscv/include/asm/module.h                    |  1 +
 arch/riscv/include/asm/uaccess.h                   |  4 +-
 arch/riscv/include/asm/unistd.h                    |  5 +-
 .../include/uapi/asm/{syscalls.h => unistd.h}      | 26 +++++++---
 arch/riscv/kernel/cpu.c                            |  9 ++--
 arch/riscv/kernel/head.S                           | 10 ++++
 arch/riscv/kernel/vmlinux.lds.S                    |  2 +-
 11 files changed, 150 insertions(+), 17 deletions(-)
 create mode 100644 arch/riscv/boot/.gitignore
 create mode 100644 arch/riscv/boot/Makefile
 create mode 100644 arch/riscv/boot/install.sh
 rename arch/riscv/include/uapi/asm/{syscalls.h => unistd.h} (53%)

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

* [PULL RFC] RISC-V Patches for 4.20-rc4
  2018-11-20 18:10 [PULL RFC] RISC-V Patches for 4.20-rc4 Palmer Dabbelt
@ 2018-11-20 18:10 ` Palmer Dabbelt
  2018-11-21  5:09 ` Bin Meng
  1 sibling, 0 replies; 4+ messages in thread
From: Palmer Dabbelt @ 2018-11-20 18:10 UTC (permalink / raw)
  To: linux-riscv

[-- Attachment #1: Type: text/plain, Size: 2584 bytes --]

The following changes since commit 9ff01193a20d391e8dbce4403dd5ef87c7eaaca6:

  Linux 4.20-rc3 (2018-11-18 13:33:44 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.20-rc4

for you to fetch changes up to 5d8f81ba1da55210123b9595e87b913c79579d02:

  RISC-V: recognize S/U mode bits in print_isa (2018-11-20 05:19:28 -0800)

----------------------------------------------------------------
RISC-V Patches for 4.20-rc4

This week is a bit bigger than I expected.  That's my fault, as I missed
a few patches while I was at Plumbers last week.  We have:

* A fix to a quite embarassing issue where raw_copy_to_user() was
  implemented with asm_copy_from_user() (and vice versa).
* Improvements to our makefile to allow flat binaries to be generated.
* A build fix that predeclares "struct module" at the top of
  <asm/module.h>, which triggers warnings later in that header.
* The addition of our own <uapi/asm/unistd> header, which is necessary
  to align our stat ABI on 32-bit systems.
* A fix to avoid printing a warning when the S or U bits are set in
  print_isa().

I already have one patch in the queue for next week.

----------------------------------------------------------------
Anup Patel (1):
      RISC-V: Build flat and compressed kernel images

David Abdurachmanov (2):
      riscv: fix warning in arch/riscv/include/asm/module.h
      riscv: add asm/unistd.h UAPI header

Olof Johansson (1):
      RISC-V: Fix raw_copy_{to,from}_user()

Patrick Stählin (1):
      RISC-V: recognize S/U mode bits in print_isa

 arch/riscv/Makefile                                | 15 +++++-
 arch/riscv/boot/.gitignore                         |  2 +
 arch/riscv/boot/Makefile                           | 33 ++++++++++++
 arch/riscv/boot/install.sh                         | 60 ++++++++++++++++++++++
 arch/riscv/include/asm/module.h                    |  1 +
 arch/riscv/include/asm/uaccess.h                   |  4 +-
 arch/riscv/include/asm/unistd.h                    |  5 +-
 .../include/uapi/asm/{syscalls.h => unistd.h}      | 26 +++++++---
 arch/riscv/kernel/cpu.c                            |  9 ++--
 arch/riscv/kernel/head.S                           | 10 ++++
 arch/riscv/kernel/vmlinux.lds.S                    |  2 +-
 11 files changed, 150 insertions(+), 17 deletions(-)
 create mode 100644 arch/riscv/boot/.gitignore
 create mode 100644 arch/riscv/boot/Makefile
 create mode 100644 arch/riscv/boot/install.sh
 rename arch/riscv/include/uapi/asm/{syscalls.h => unistd.h} (53%)


[-- Attachment #2: Type: text/plain, Size: 161 bytes --]

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

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

* [PULL RFC] RISC-V Patches for 4.20-rc4
  2018-11-20 18:10 [PULL RFC] RISC-V Patches for 4.20-rc4 Palmer Dabbelt
  2018-11-20 18:10 ` Palmer Dabbelt
@ 2018-11-21  5:09 ` Bin Meng
  2018-11-21  5:09   ` Bin Meng
  1 sibling, 1 reply; 4+ messages in thread
From: Bin Meng @ 2018-11-21  5:09 UTC (permalink / raw)
  To: linux-riscv

Hi Palmer,

On Wed, Nov 21, 2018 at 2:13 AM Palmer Dabbelt <palmer@sifive.com> wrote:
>
> The following changes since commit 9ff01193a20d391e8dbce4403dd5ef87c7eaaca6:
>
>   Linux 4.20-rc3 (2018-11-18 13:33:44 -0800)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.20-rc4
>
> for you to fetch changes up to 5d8f81ba1da55210123b9595e87b913c79579d02:
>
>   RISC-V: recognize S/U mode bits in print_isa (2018-11-20 05:19:28 -0800)
>
> ----------------------------------------------------------------
> RISC-V Patches for 4.20-rc4
>
> This week is a bit bigger than I expected.  That's my fault, as I missed
> a few patches while I was at Plumbers last week.  We have:
>
> * A fix to a quite embarassing issue where raw_copy_to_user() was
>   implemented with asm_copy_from_user() (and vice versa).
> * Improvements to our makefile to allow flat binaries to be generated.
> * A build fix that predeclares "struct module" at the top of
>   <asm/module.h>, which triggers warnings later in that header.
> * The addition of our own <uapi/asm/unistd> header, which is necessary
>   to align our stat ABI on 32-bit systems.
> * A fix to avoid printing a warning when the S or U bits are set in
>   print_isa().
>
> I already have one patch in the queue for next week.
>
> ----------------------------------------------------------------
> Anup Patel (1):
>       RISC-V: Build flat and compressed kernel images
>

This one need a minor tweak in the commit message.
See http://lists.infradead.org/pipermail/linux-riscv/2018-November/002327.html

Feel free to include my RB/TB tags when you touch it.

> David Abdurachmanov (2):
>       riscv: fix warning in arch/riscv/include/asm/module.h
>       riscv: add asm/unistd.h UAPI header
>
> Olof Johansson (1):
>       RISC-V: Fix raw_copy_{to,from}_user()
>
> Patrick St?hlin (1):
>       RISC-V: recognize S/U mode bits in print_isa
>

Regards,
Bin

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

* Re: [PULL RFC] RISC-V Patches for 4.20-rc4
  2018-11-21  5:09 ` Bin Meng
@ 2018-11-21  5:09   ` Bin Meng
  0 siblings, 0 replies; 4+ messages in thread
From: Bin Meng @ 2018-11-21  5:09 UTC (permalink / raw)
  To: palmer; +Cc: linux-riscv

Hi Palmer,

On Wed, Nov 21, 2018 at 2:13 AM Palmer Dabbelt <palmer@sifive.com> wrote:
>
> The following changes since commit 9ff01193a20d391e8dbce4403dd5ef87c7eaaca6:
>
>   Linux 4.20-rc3 (2018-11-18 13:33:44 -0800)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git tags/riscv-for-linus-4.20-rc4
>
> for you to fetch changes up to 5d8f81ba1da55210123b9595e87b913c79579d02:
>
>   RISC-V: recognize S/U mode bits in print_isa (2018-11-20 05:19:28 -0800)
>
> ----------------------------------------------------------------
> RISC-V Patches for 4.20-rc4
>
> This week is a bit bigger than I expected.  That's my fault, as I missed
> a few patches while I was at Plumbers last week.  We have:
>
> * A fix to a quite embarassing issue where raw_copy_to_user() was
>   implemented with asm_copy_from_user() (and vice versa).
> * Improvements to our makefile to allow flat binaries to be generated.
> * A build fix that predeclares "struct module" at the top of
>   <asm/module.h>, which triggers warnings later in that header.
> * The addition of our own <uapi/asm/unistd> header, which is necessary
>   to align our stat ABI on 32-bit systems.
> * A fix to avoid printing a warning when the S or U bits are set in
>   print_isa().
>
> I already have one patch in the queue for next week.
>
> ----------------------------------------------------------------
> Anup Patel (1):
>       RISC-V: Build flat and compressed kernel images
>

This one need a minor tweak in the commit message.
See http://lists.infradead.org/pipermail/linux-riscv/2018-November/002327.html

Feel free to include my RB/TB tags when you touch it.

> David Abdurachmanov (2):
>       riscv: fix warning in arch/riscv/include/asm/module.h
>       riscv: add asm/unistd.h UAPI header
>
> Olof Johansson (1):
>       RISC-V: Fix raw_copy_{to,from}_user()
>
> Patrick Stählin (1):
>       RISC-V: recognize S/U mode bits in print_isa
>

Regards,
Bin

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

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

end of thread, other threads:[~2018-11-21  5:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-20 18:10 [PULL RFC] RISC-V Patches for 4.20-rc4 Palmer Dabbelt
2018-11-20 18:10 ` Palmer Dabbelt
2018-11-21  5:09 ` Bin Meng
2018-11-21  5:09   ` Bin Meng

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