1. 07 May, 2018 3 commits
  2. 03 May, 2018 26 commits
  3. 30 Apr, 2018 1 commit
  4. 29 Apr, 2018 10 commits
    • Linus Torvalds's avatar
      Linux v4.17-rc3 · 6da6c0db
      Linus Torvalds authored
      6da6c0db
    • Linus Torvalds's avatar
      Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · c61a56ab
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "Another set of x86 related updates:
      
         - Fix the long broken x32 version of the IPC user space headers which
           was noticed by Arnd Bergman in course of his ongoing y2038 work.
           GLIBC seems to have non broken private copies of these headers so
           this went unnoticed.
      
         - Two microcode fixlets which address some more fallout from the
           recent modifications in that area:
      
            - Unconditionally save the microcode patch, which was only saved
              when CPU_HOTPLUG was enabled causing failures in the late
              loading mechanism
      
            - Make the later loader synchronization finally work under all
              circumstances. It was exiting early and causing timeout failures
              due to a missing synchronization point.
      
         - Do not use mwait_play_dead() on AMD systems to prevent excessive
           power consumption as the CPU cannot go into deep power states from
           there.
      
         - Address an annoying sparse warning due to lost type qualifiers of
           the vmemmap and vmalloc base address constants.
      
         - Prevent reserving crash kernel region on Xen PV as this leads to
           the wrong perception that crash kernels actually work there which
           is not the case. Xen PV has its own crash mechanism handled by the
           hypervisor.
      
         - Add missing TLB cpuid values to the table to make the printout on
           certain machines correct.
      
         - Enumerate the new CLDEMOTE instruction
      
         - Fix an incorrect SPDX identifier
      
         - Remove stale macros"
      
      * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/ipc: Fix x32 version of shmid64_ds and msqid64_ds
        x86/setup: Do not reserve a crash kernel region if booted on Xen PV
        x86/cpu/intel: Add missing TLB cpuid values
        x86/smpboot: Don't use mwait_play_dead() on AMD systems
        x86/mm: Make vmemmap and vmalloc base address constants unsigned long
        x86/vector: Remove the unused macro FPU_IRQ
        x86/vector: Remove the macro VECTOR_OFFSET_START
        x86/cpufeatures: Enumerate cldemote instruction
        x86/microcode: Do not exit early from __reload_late()
        x86/microcode/intel: Save microcode patch unconditionally
        x86/jailhouse: Fix incorrect SPDX identifier
      c61a56ab
    • Linus Torvalds's avatar
      Merge branch 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 65f4d6d0
      Linus Torvalds authored
      Pull x86 pti fixes from Thomas Gleixner:
       "A set of updates for the x86/pti related code:
      
         - Preserve r8-r11 in int $0x80. r8-r11 need to be preserved, but the
           int$80 entry code removed that quite some time ago. Make it correct
           again.
      
         - A set of fixes for the Global Bit work which went into 4.17 and
           caused a bunch of interesting regressions:
      
            - Triggering a BUG in the page attribute code due to a missing
              check for early boot stage
      
            - Warnings in the page attribute code about holes in the kernel
              text mapping which are caused by the freeing of the init code.
              Handle such holes gracefully.
      
            - Reduce the amount of kernel memory which is set global to the
              actual text and do not incidentally overlap with data.
      
            - Disable the global bit when RANDSTRUCT is enabled as it
              partially defeats the hardening.
      
            - Make the page protection setup correct for vma->page_prot
              population again. The adjustment of the protections fell through
              the crack during the Global bit rework and triggers warnings on
              machines which do not support certain features, e.g. NX"
      
      * 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/entry/64/compat: Preserve r8-r11 in int $0x80
        x86/pti: Filter at vma->vm_page_prot population
        x86/pti: Disallow global kernel text with RANDSTRUCT
        x86/pti: Reduce amount of kernel text allowed to be Global
        x86/pti: Fix boot warning from Global-bit setting
        x86/pti: Fix boot problems from Global-bit setting
      65f4d6d0
    • Linus Torvalds's avatar
      Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 810fb07a
      Linus Torvalds authored
      Pull timer fixes from Thomas Gleixner:
       "Two fixes from the timer departement:
      
         - Fix a long standing issue in the NOHZ tick code which causes RB
           tree corruption, delayed timers and other malfunctions. The cause
           for this is code which modifies the expiry time of an enqueued
           hrtimer.
      
         - Revert the CLOCK_MONOTONIC/CLOCK_BOOTTIME unification due to
           regression reports. Seems userspace _is_ relying on the documented
           behaviour despite our hope that it wont"
      
      * 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        Revert: Unify CLOCK_MONOTONIC and CLOCK_BOOTTIME
        tick/sched: Do not mess with an enqueued hrtimer
      810fb07a
    • Linus Torvalds's avatar
      Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 7d9e55fe
      Linus Torvalds authored
      Pull perf fixes from Thomas Gleixner:
       "The perf update contains the following bits:
      
        x86:
         - Prevent setting freeze_on_smi on PerfMon V1 CPUs to avoid #GP
      
        perf stat:
         - Keep the '/' event modifier separator in fallback, for example when
           fallbacking from 'cpu/cpu-cycles/' to user level only, where it
           should become 'cpu/cpu-cycles/u' and not 'cpu/cpu-cycles/:u' (Jiri
           Olsa)
      
         - Fix PMU events parsing rule, improving error reporting for invalid
           events (Jiri Olsa)
      
         - Disable write_backward and other event attributes for !group events
           in a group, fixing, for instance this group: '{cycles,msr/aperf/}:S'
           that has leader sampling (:S) and where just the 'cycles', the
           leader event, should have the write_backward attribute set, in this
           case it all fails because the PMU where 'msr/aperf/' lives doesn't
           accepts write_backward style sampling (Jiri Olsa)
      
         - Only fall back group read for leader (Kan Liang)
      
         - Fix core PMU alias list for x86 platform (Kan Liang)
      
         - Print out hint for mixed PMU group error (Kan Liang)
      
         - Fix duplicate PMU name for interval print (Kan Liang)
      
        Core:
         - Set main kernel end address properly when reading kernel and module
           maps (Namhyung Kim)
      
        perf mem:
         - Fix incorrect entries and add missing man options (Sangwon Hong)
      
        s/390:
         - Remove s390 specific strcmp_cpuid_cmp function (Thomas Richter)
      
         - Adapt 'perf test' case record+probe_libc_inet_pton.sh for s390
      
         - Fix s390 undefined record__auxtrace_init() return value in 'perf
           record' (Thomas Richter)"
      
      * 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        perf/x86/intel: Don't enable freeze-on-smi for PerfMon V1
        perf stat: Fix duplicate PMU name for interval print
        perf evsel: Only fall back group read for leader
        perf stat: Print out hint for mixed PMU group error
        perf pmu: Fix core PMU alias list for X86 platform
        perf record: Fix s390 undefined record__auxtrace_init() return value
        perf mem: Document incorrect and missing options
        perf evsel: Disable write_backward for leader sampling group events
        perf pmu: Fix pmu events parsing rule
        perf stat: Keep the / modifier separator in fallback
        perf test: Adapt test case record+probe_libc_inet_pton.sh for s390
        perf list: Remove s390 specific strcmp_cpuid_cmp function
        perf machine: Set main kernel end address properly
      7d9e55fe
    • Arvind Yadav's avatar
      staging: greybus: Use gpio_is_valid() · a2e63709
      Arvind Yadav authored
      Replace the manual validity checks for the GPIO with the
      gpio_is_valid().
      Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
      Reviewed-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      a2e63709
    • Kirill Marinushkin's avatar
      staging: bcm2835-audio: Disconnect and free vchi_instance on module_exit() · 3ea74d38
      Kirill Marinushkin authored
      In the current implementation, vchi_instance is inited during the first
      call of bcm2835_audio_open_connection(), and is never freed. It causes a
      memory leak when the module `snd_bcm2835` is removed.
      
      Here is how this commit fixes it:
      
      * the VCHI context (including vchi_instance) is created once in the
        platform's devres
      * the VCHI context is allocated and connected once during module_init()
      * all created bcm2835_chips have a pointer to this VCHI context
      * bcm2835_audio_open_connection() can access the VCHI context through the
        associated bcm2835_chip
      * the VCHI context is disconnected and freed once during module_exit()
      
      After this commit is applied, I don't see other issues with the module's
      init/exit, so I also remove the associated TODO task.
      
      Steps to reproduce the memory leak before this commit:
      
      ~~~~
      root@raspberrypi:/home/pi# aplay test0.wav
      Playing WAVE 'test0.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Ster
      ^CAborted by signal Interrupt...
      root@raspberrypi:/home/pi# rmmod snd_bcm2835
      root@raspberrypi:/home/pi# modprobe snd_bcm2835
      root@raspberrypi:/home/pi# aplay test0.wav
      Playing WAVE 'test0.wav' : Signed 16 bit Little Endian, Rate 44100 Hz, Ster
      ^CAborted by signal Interrupt...
      root@raspberrypi:/home/pi# echo scan > /sys/kernel/debug/kmemleak
      root@raspberrypi:/home/pi# cat /sys/kernel/debug/kmemleak
      unreferenced object 0xb6794c00 (size 128):
        comm "aplay", pid 406, jiffies 36870 (age 116.650s)
        hex dump (first 32 bytes):
          08 a5 82 81 01 00 00 00 08 4c 79 b6 08 4c 79 b6  .........Ly..Ly.
          00 00 00 00 00 00 00 00 ad 4e ad de ff ff ff ff  .........N......
        backtrace:
          [<802af5e0>] kmem_cache_alloc_trace+0x294/0x3d0
          [<806ce620>] vchiq_initialise+0x98/0x1b0
          [<806d0b34>] vchi_initialise+0x24/0x34
          [<7f1311ec>] 0x7f1311ec
          [<7f1303bc>] 0x7f1303bc
          [<7f130590>] 0x7f130590
          [<7f111fd8>] snd_pcm_open_substream+0x68/0xc4 [snd_pcm]
          [<7f112108>] snd_pcm_open+0xd4/0x248 [snd_pcm]
          [<7f112334>] snd_pcm_playback_open+0x4c/0x6c [snd_pcm]
          [<7f0e250c>] snd_open+0xa8/0x14c [snd]
          [<802ce590>] chrdev_open+0xac/0x188
          [<802c57b4>] do_dentry_open+0x10c/0x314
          [<802c6ba8>] vfs_open+0x5c/0x88
          [<802d9a68>] path_openat+0x368/0x944
          [<802dacd4>] do_filp_open+0x70/0xc4
          [<802c6f70>] do_sys_open+0x110/0x1d4
      ~~~~
      Signed-off-by: default avatarKirill Marinushkin <k.marinushkin@gmail.com>
      Cc: Eric Anholt <eric@anholt.net>
      Cc: Stefan Wahren <stefan.wahren@i2se.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Florian Fainelli <f.fainelli@gmail.com>
      Cc: Ray Jui <rjui@broadcom.com>
      Cc: Scott Branden <sbranden@broadcom.com>
      Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
      Cc: Dan Carpenter <dan.carpenter@oracle.com>
      Cc: bcm-kernel-feedback-list@broadcom.com
      Cc: linux-rpi-kernel@lists.infradead.org
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: devel@driverdev.osuosl.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      3ea74d38
    • Dan Carpenter's avatar
      staging: fsl-mc/dpio: Fix the error handling in probe() · 50307552
      Dan Carpenter authored
      First of all devm_memremap() function returns an error pointer, it
      doesn't return NULL.  And second we need to set the error code on these
      paths.
      Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      50307552
    • Yangbo Lu's avatar
      staging: fsl-dpaa2/rtc: support phc_index of ethtool_ts_info · 3c2b8df0
      Yangbo Lu authored
      This patch is to support phc_index of ethtool_ts_info.
      Also make the rtc drvier depend on FSL_DPAA2_ETH because
      this driver is only useful when PTP programs are getting
      hardware time stamps on the PTP Ethernet packets using the
      SO_TIMESTAMPING API.
      Signed-off-by: default avatarYangbo Lu <yangbo.lu@nxp.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      3c2b8df0
    • Yangbo Lu's avatar
      staging: fsl-dpaa2/eth: add the get_ts_info interface for ethtool · 8c03fa03
      Yangbo Lu authored
      Since hardware timestmaping has been supported in driver, this
      patch is to add the get_ts_info interface for ethtool to show
      timestamping capability.
      Signed-off-by: default avatarYangbo Lu <yangbo.lu@nxp.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      8c03fa03