lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 20 Oct 2020 01:57:21 +0000
From:   Vineet Gupta <Vineet.Gupta1@...opsys.com>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
CC:     lkml <linux-kernel@...r.kernel.org>,
        arcml <linux-snps-arc@...ts.infradead.org>,
        Gilad Ben-Yossef <gilad@...yossef.com>,
        "Ofer Levi(SW)" <oferle@...dia.com>,
        Mike Rapoport <rppt@...nel.org>,
        Necip Fazil Yildiran <fazilyildiran@...il.com>,
        Randy Dunlap <rdunlap@...radead.org>,
        Zhen Lei <thunder.leizhen@...wei.com>,
        Noam Camus <noamikong@...il.com>
Subject: [GIT PULL] ARC changes for 5.10-rc1

Hi Linus,

The bulk of ARC pull request is removal of EZChip NPS platform which was suffering
from constant bitrot. In recent years EZChip has gone though multiple successive
acquisitions and I guess things and people move on. I would like to take this
opportunity to recognize and thank all those good folks (Gilad, Noam, Ofer...) for
contributing major bits to ARC port (SMP, Big Endian)

Please pull.

Thx,
-Vineet
----------------->
The following changes since commit 549738f15da0e5a00275977623be199fbbf7df50:

  Linux 5.9-rc8 (2020-10-04 16:04:34 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git/ tags/arc-5.10-rc1

for you to fetch changes up to 6364d1b41cc382db3b03cf33c57b6007ee8f09cf:

  arc: include/asm: fix typos of "themselves" (2020-10-05 21:02:29 -0700)

----------------------------------------------------------------
ARC changes for 5.10

 - Drop support for EZChip NPS platform

 - miscll other fixes

----------------------------------------------------------------
Mike Rapoport (1):
      ARC: SMP: fix typo and use "come up" instead of "comeup"

Necip Fazil Yildiran (1):
      arc: plat-hsdk: fix kconfig dependency warning when !RESET_CONTROLLER

Randy Dunlap (1):
      arc: include/asm: fix typos of "themselves"

Vineet Gupta (1):
      ARC: [plat-eznps]: Drop support for EZChip NPS platform

Zhen Lei (1):
      ARC: [dts] fix the errors detected by dtbs_check

 MAINTAINERS                             |   7 --
 arch/arc/Kconfig                        |   2 -
 arch/arc/Makefile                       |   5 -
 arch/arc/boot/dts/axc001.dtsi           |   2 +-
 arch/arc/boot/dts/axc003.dtsi           |   2 +-
 arch/arc/boot/dts/axc003_idu.dtsi       |   2 +-
 arch/arc/boot/dts/eznps.dts             |  84 -------------
 arch/arc/boot/dts/vdk_axc003.dtsi       |   2 +-
 arch/arc/boot/dts/vdk_axc003_idu.dtsi   |   2 +-
 arch/arc/configs/nps_defconfig          |  80 ------------
 arch/arc/include/asm/atomic.h           | 108 +----------------
 arch/arc/include/asm/barrier.h          |   9 +-
 arch/arc/include/asm/bitops.h           |  58 +--------
 arch/arc/include/asm/cmpxchg.h          |  72 +----------
 arch/arc/include/asm/entry-compact.h    |  27 -----
 arch/arc/include/asm/processor.h        |  37 ------
 arch/arc/include/asm/ptrace.h           |   5 -
 arch/arc/include/asm/setup.h            |   4 -
 arch/arc/include/asm/spinlock.h         |   6 -
 arch/arc/include/asm/switch_to.h        |   9 --
 arch/arc/kernel/ctx_sw.c                |  13 --
 arch/arc/kernel/devtree.c               |   2 -
 arch/arc/kernel/process.c               |  15 ---
 arch/arc/kernel/smp.c                   |   2 +-
 arch/arc/mm/tlbex.S                     |   7 --
 arch/arc/plat-eznps/Kconfig             |  58 ---------
 arch/arc/plat-eznps/Makefile            |   8 --
 arch/arc/plat-eznps/ctop.c              |  21 ----
 arch/arc/plat-eznps/entry.S             |  60 ---------
 arch/arc/plat-eznps/include/plat/ctop.h | 208 --------------------------------
 arch/arc/plat-eznps/include/plat/mtm.h  |  49 --------
 arch/arc/plat-eznps/include/plat/smp.h  |  15 ---
 arch/arc/plat-eznps/mtm.c               | 166 -------------------------
 arch/arc/plat-eznps/platform.c          |  91 --------------
 arch/arc/plat-eznps/smp.c               | 138 ---------------------
 arch/arc/plat-hsdk/Kconfig              |   1 +
 36 files changed, 15 insertions(+), 1362 deletions(-)
 delete mode 100644 arch/arc/boot/dts/eznps.dts
 delete mode 100644 arch/arc/configs/nps_defconfig
 delete mode 100644 arch/arc/plat-eznps/Kconfig
 delete mode 100644 arch/arc/plat-eznps/Makefile
 delete mode 100644 arch/arc/plat-eznps/ctop.c
 delete mode 100644 arch/arc/plat-eznps/entry.S
 delete mode 100644 arch/arc/plat-eznps/include/plat/ctop.h
 delete mode 100644 arch/arc/plat-eznps/include/plat/mtm.h
 delete mode 100644 arch/arc/plat-eznps/include/plat/smp.h
 delete mode 100644 arch/arc/plat-eznps/mtm.c
 delete mode 100644 arch/arc/plat-eznps/platform.c
 delete mode 100644 arch/arc/plat-eznps/smp.c

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ