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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 24 Feb 2017 14:09:04 -0700
From:   Shuah Khan <shuahkh@....samsung.com>
To:     torvalds@...ux-foundation.org,
        Stephen Rothwell <sfr@...b.auug.org.au>
Cc:     linux-kselftest@...r.kernel.org,
        LKML <linux-kernel@...r.kernel.org>,
        "davem@...emloft.net" <davem@...emloft.net>,
        Shuah Khan <shuahkh@....samsung.com>
Subject: [GIT PULL] Kselftest update for 4.11-rc1

Hi Linus,

Please pull the Kselftest update for 4.11-rc1

This update consists of:

-- fixes to several existing tests from Stafford Horne
-- cpufreq tests from Viresh Kumar
-- Selftest build and install fixes from Bamvor Jian Zhang
   and Michael Ellerman
-- Fixes to protection-keys tests from Dave Hansen
-- Warning fixes from Shuah Khan

Stephen saw a conflict during kselftest merge with next

between commit:

  d498f8719a09 ("bpf: Rebuild bpf.o for any dependency update")

from the net-next tree and commit:

  88baa78d1f31 ("selftests: remove duplicated all and clean target")

Stephen fixed this up in linux-next and volunteered to carry forward
the fix - fix diff attached. Please let me know if this isn't
acceptable. Sorry for the inconvenience.

Diff for the update attached.

thanks,
-- Shuah

--------------------------------------------------------------------------------------------

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest tags/linux-kselftest-4.11-rc1

for you to fetch changes up to 68bd42d97c30d51217b8c3b2b22fede577d8371c:

  selftests/powerpc: Fix remaining fallout from recent changes (2017-02-14 08:02:27 -0700)

----------------------------------------------------------------
linux-kselftest-4.11-rc1

This update consists of:

-- fixes to several existing tests from Stafford Horne
-- cpufreq tests from Viresh Kumar
-- Selftest build and install fixes from Bamvor Jian Zhang
   and Michael Ellerman
-- Fixes to protection-keys tests from Dave Hansen
-- Warning fixes from Shuah Khan

----------------------------------------------------------------
Dave Hansen (2):
      selftests, x86, protection_keys: fix uninitialized variable warning
      selftests, x86, protection_keys: fix wrong offset in siginfo

Michael Ellerman (5):
      selftests: Fix selftests build to just build, not run tests
      selftests: Fix the .c linking rule
      selftests: Fix the .S and .S -> .o rules
      selftests/powerpc: Fix the clean rule since recent changes
      selftests/powerpc: Fix remaining fallout from recent changes

Shuah Khan (4):
      selftests: gpio add .gitignore for generated files
      selftests: ipc add missing generated file to .gitignore
      selftests: x86 protection_keys fix unused variable compile warnings
      selftests: x86 protection_keys remove dead code

Stafford Horne (6):
      selftests/futex: Add stdio used for logging
      selftests/futex: Add headers to makefile dependencies
      cpupower: Restore format of frequency-info limit
      selftests/intel_pstate: Fix warning on loop index overflow
      selftests/intel_pstate: Update makefile to match new style
      selftests: Add intel_pstate to TARGETS

Viresh Kumar (5):
      selftest: cpufreq: Add support for cpufreq tests
      selftest: cpufreq: Add suspend/resume/hibernate support
      selftest: cpufreq: Add support to test cpufreq modules
      selftest: cpufreq: Add special tests
      selftest: cpufreq: Update MAINTAINERS file

bamvor.zhangjian@...wei.com (6):
      selftests: remove duplicated all and clean target
      selftests: remove useless TEST_DIRS
      selftests: add default rules for c source file
      selftests: remove CROSS_COMPILE in dedicated Makefile
      selftests: add EXTRA_CLEAN for clean target
      selftests: enable O and KBUILD_OUTPUT

 Documentation/kselftest.txt                        |  12 +
 MAINTAINERS                                        |   1 +
 tools/power/cpupower/utils/cpufreq-info.c          |  21 +-
 tools/testing/selftests/Makefile                   |  38 +++-
 tools/testing/selftests/bpf/Makefile               |  10 +-
 tools/testing/selftests/breakpoints/Makefile       |  10 +-
 tools/testing/selftests/capabilities/Makefile      |  11 +-
 tools/testing/selftests/cpufreq/Makefile           |   8 +
 tools/testing/selftests/cpufreq/cpu.sh             |  84 +++++++
 tools/testing/selftests/cpufreq/cpufreq.sh         | 241 ++++++++++++++++++++
 tools/testing/selftests/cpufreq/governor.sh        | 153 +++++++++++++
 tools/testing/selftests/cpufreq/main.sh            | 194 ++++++++++++++++
 tools/testing/selftests/cpufreq/module.sh          | 243 +++++++++++++++++++++
 tools/testing/selftests/cpufreq/special-tests.sh   | 115 ++++++++++
 tools/testing/selftests/efivarfs/Makefile          |   8 +-
 tools/testing/selftests/exec/Makefile              |  32 ++-
 tools/testing/selftests/ftrace/Makefile            |   6 +-
 tools/testing/selftests/futex/Makefile             |  21 +-
 tools/testing/selftests/futex/functional/Makefile  |  17 +-
 tools/testing/selftests/futex/include/logging.h    |   1 +
 tools/testing/selftests/gpio/.gitignore            |   1 +
 tools/testing/selftests/intel_pstate/Makefile      |  13 +-
 tools/testing/selftests/intel_pstate/aperf.c       |   2 +-
 tools/testing/selftests/ipc/.gitignore             |   1 +
 tools/testing/selftests/ipc/Makefile               |   7 +-
 tools/testing/selftests/kcmp/Makefile              |   6 +-
 tools/testing/selftests/lib.mk                     |  36 ++-
 tools/testing/selftests/membarrier/Makefile        |   6 +-
 tools/testing/selftests/memfd/Makefile             |  15 +-
 tools/testing/selftests/mount/Makefile             |   7 +-
 tools/testing/selftests/mqueue/Makefile            |   6 +-
 tools/testing/selftests/net/Makefile               |  15 +-
 tools/testing/selftests/nsfs/Makefile              |   9 +-
 tools/testing/selftests/powerpc/Makefile           |  14 +-
 tools/testing/selftests/powerpc/alignment/Makefile |   9 +-
 .../testing/selftests/powerpc/benchmarks/Makefile  |  17 +-
 .../selftests/powerpc/context_switch/Makefile      |   9 +-
 tools/testing/selftests/powerpc/copyloops/Makefile |  19 +-
 tools/testing/selftests/powerpc/dscr/Makefile      |  13 +-
 tools/testing/selftests/powerpc/math/Makefile      |  29 +--
 tools/testing/selftests/powerpc/mm/Makefile        |  18 +-
 tools/testing/selftests/powerpc/pmu/Makefile       |  26 +--
 tools/testing/selftests/powerpc/pmu/ebb/Makefile   |  15 +-
 .../testing/selftests/powerpc/primitives/Makefile  |   9 +-
 .../testing/selftests/powerpc/stringloops/Makefile |   9 +-
 .../selftests/powerpc/switch_endian/Makefile       |  17 +-
 tools/testing/selftests/powerpc/syscalls/Makefile  |   9 +-
 tools/testing/selftests/powerpc/tm/Makefile        |  18 +-
 tools/testing/selftests/powerpc/vphn/Makefile      |  10 +-
 tools/testing/selftests/pstore/Makefile            |   4 +-
 tools/testing/selftests/ptrace/Makefile            |   8 +-
 tools/testing/selftests/seccomp/Makefile           |   6 +-
 tools/testing/selftests/sigaltstack/Makefile       |   5 +-
 tools/testing/selftests/size/Makefile              |  10 +-
 tools/testing/selftests/timers/Makefile            |  10 +-
 tools/testing/selftests/vm/Makefile                |  41 ++--
 tools/testing/selftests/x86/Makefile               |  17 +-
 tools/testing/selftests/x86/protection_keys.c      |  19 +-
 tools/testing/selftests/zram/Makefile              |   3 +-
 59 files changed, 1318 insertions(+), 396 deletions(-)
 create mode 100644 tools/testing/selftests/cpufreq/Makefile
 create mode 100755 tools/testing/selftests/cpufreq/cpu.sh
 create mode 100755 tools/testing/selftests/cpufreq/cpufreq.sh
 create mode 100755 tools/testing/selftests/cpufreq/governor.sh
 create mode 100755 tools/testing/selftests/cpufreq/main.sh
 create mode 100755 tools/testing/selftests/cpufreq/module.sh
 create mode 100755 tools/testing/selftests/cpufreq/special-tests.sh
 create mode 100644 tools/testing/selftests/gpio/.gitignore

------------------------------------------------------------------------------------------
-- 
Shuah Khan
Sr. Linux Kernel Developer
Open Source Innovation Group
Samsung Research America (Silicon Valley)
shuahkh@....samsung.com

View attachment "linux-kselftest-4.11-rc1.diff" of type "text/x-patch" (67035 bytes)

View attachment "fix.diff" of type "text/x-patch" (957 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ