Skip to content
  1. Feb 25, 2017
  2. Feb 14, 2017
  3. Feb 04, 2017
  4. Feb 03, 2017
  5. Jan 30, 2017
    • Linus Torvalds's avatar
      Linux 4.10-rc6 · 566cf877
      Linus Torvalds authored
      566cf877
    • Linus Torvalds's avatar
      drm/i915: Check for NULL i915_vma in intel_unpin_fb_obj() · 39cb2c9a
      Linus Torvalds authored
      
      
      I've seen this trigger twice now, where the i915_gem_object_to_ggtt()
      call in intel_unpin_fb_obj() returns NULL, resulting in an oops
      immediately afterwards as the (inlined) call to i915_vma_unpin_fence()
      tries to dereference it.
      
      It seems to be some race condition where the object is going away at
      shutdown time, since both times happened when shutting down the X
      server.  The call chains were different:
      
       - VT ioctl(KDSETMODE, KD_TEXT):
      
          intel_cleanup_plane_fb+0x5b/0xa0 [i915]
          drm_atomic_helper_cleanup_planes+0x6f/0x90 [drm_kms_helper]
          intel_atomic_commit_tail+0x749/0xfe0 [i915]
          intel_atomic_commit+0x3cb/0x4f0 [i915]
          drm_atomic_commit+0x4b/0x50 [drm]
          restore_fbdev_mode+0x14c/0x2a0 [drm_kms_helper]
          drm_fb_helper_restore_fbdev_mode_unlocked+0x34/0x80 [drm_kms_helper]
          drm_fb_helper_set_par+0x2d/0x60 [drm_kms_helper]
          intel_fbdev_set_par+0x18/0x70 [i915]
          fb_set_var+0x236/0x460
          fbcon_blank+0x30f/0x350
          do_unblank_screen+0xd2/0x1a0
          vt_ioctl+0x507/0x12a0
          tty_ioctl+0x355/0xc30
          do_vfs_ioctl+0xa3/0x5e0
          SyS_ioctl+0x79/0x90
          entry_SYSCALL_64_fastpath+0x13/0x94
      
       - i915 unpin_work workqueue:
      
          intel_unpin_work_fn+0x58/0x140 [i915]
          process_one_work+0x1f1/0x480
          worker_thread+0x48/0x4d0
          kthread+0x101/0x140
      
      and this patch purely papers over the issue by adding a NULL pointer
      check and a WARN_ON_ONCE() to avoid the oops that would then generally
      make the machine unresponsive.
      
      Other callers of i915_gem_object_to_ggtt() seem to also check for the
      returned pointer being NULL and warn about it, so this clearly has
      happened before in other places.
      
      [ Reported it originally to the i915 developers on Jan 8, applying the
        ugly workaround on my own now after triggering the problem for the
        second time with no feedback.
      
        This is likely to be the same bug reported as
      
           https://bugs.freedesktop.org/show_bug.cgi?id=98829
           https://bugs.freedesktop.org/show_bug.cgi?id=99134
      
        which has a patch for the underlying problem, but it hasn't gotten to
        me, so I'm applying the workaround. ]
      
      Cc: Daniel Vetter <daniel.vetter@intel.com>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
      Cc: Chris Wilson <chris@chris-wilson.co.uk>
      Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
      Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
      Cc: Imre Deak <imre.deak@intel.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      39cb2c9a
    • Linus Torvalds's avatar
      Merge branch 'parisc-4.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux · 2c5d9555
      Linus Torvalds authored
      Pull two parisc fixes from Helge Deller:
       "One fix to avoid usage of BITS_PER_LONG in user-space exported swab.h
        header which breaks compiling qemu, and one trivial fix for printk
        continuation in the parisc parport driver"
      
      * 'parisc-4.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux:
        parisc: Don't use BITS_PER_LONG in userspace-exported swab.h header
        parisc, parport_gsc: Fixes for printk continuation lines
      2c5d9555
  6. Jan 29, 2017
    • Linus Torvalds's avatar
      Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · 53cd1ad1
      Linus Torvalds authored
      Pull i2c fixes from Wolfram Sang:
       "Two I2C driver bugfixes.
      
        The 'VLLS mode support' patch should have been entitled 'reconfigure
        pinctrl after suspend' to make the bugfix more clear. Sorry, I missed
        that, yet didn't want to rebase"
      
      * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
        i2c: imx-lpi2c: add VLLS mode support
        i2c: i2c-cadence: Initialize configuration before probing devices
      53cd1ad1
    • Helge Deller's avatar
      parisc: Don't use BITS_PER_LONG in userspace-exported swab.h header · 2ad5d52d
      Helge Deller authored
      
      
      In swab.h the "#if BITS_PER_LONG > 32" breaks compiling userspace programs if
      BITS_PER_LONG is #defined by userspace with the sizeof() compiler builtin.
      
      Solve this problem by using __BITS_PER_LONG instead.  Since we now
      #include asm/bitsperlong.h avoid further potential userspace pollution
      by moving the #define of SHIFT_PER_LONG to bitops.h which is not
      exported to userspace.
      
      This patch unbreaks compiling qemu on hppa/parisc.
      
      Signed-off-by: default avatarHelge Deller <deller@gmx.de>
      Cc: <stable@vger.kernel.org>
      2ad5d52d
    • Helge Deller's avatar
      83b5d1e3
    • Linus Torvalds's avatar
      Merge tag 'nfs-for-4.10-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs · d56a5ca3
      Linus Torvalds authored
      Pull NFS client bugfixes from Trond Myklebust:
       "Stable patches:
         - NFSv4.1: Fix a deadlock in layoutget
         - NFSv4 must not bump sequence ids on NFS4ERR_MOVED errors
         - NFSv4 Fix a regression with OPEN EXCLUSIVE4 mode
         - Fix a memory leak when removing the SUNRPC module
      
        Bugfixes:
         - Fix a reference leak in _pnfs_return_layout"
      
      * tag 'nfs-for-4.10-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs:
        pNFS: Fix a reference leak in _pnfs_return_layout
        nfs: Fix "Don't increment lock sequence ID after NFS4ERR_MOVED"
        SUNRPC: cleanup ida information when removing sunrpc module
        NFSv4.0: always send mode in SETATTR after EXCLUSIVE4
        nfs: Don't increment lock sequence ID after NFS4ERR_MOVED
        NFSv4.1: Fix a deadlock in layoutget
      d56a5ca3
    • Linus Torvalds's avatar
      Merge tag 'md/4.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md · dd553962
      Linus Torvalds authored
      Pull MD fixes from Shaohua Li:
       "This fixes several corner cases for raid5 cache, which is merged into
        this cycle"
      
      * tag 'md/4.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md:
        md/r5cache: disable write back for degraded array
        md/r5cache: shift complex rmw from read path to write path
        md/r5cache: flush data only stripes in r5l_recovery_log()
        md/raid5: move comment of fetch_block to right location
        md/r5cache: read data into orig_page for prexor of cached data
        md/raid5-cache: delete meaningless code
      dd553962
    • Linus Torvalds's avatar
      Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux · 64a172d2
      Linus Torvalds authored
      Pull arm64 fix from Catalin Marinas:
       "Fix kernel panic on ACPI-based systems where CPU capacity description
        is not currently handled"
      
      * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
        arm64: skip register_cpufreq_notifier on ACPI-based systems
      64a172d2
    • Linus Torvalds's avatar
      Merge tag 'arc-4.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc · ef1dce99
      Linus Torvalds authored
      Pull ARC fixes from Vineet Gupta:
       "Hopefully last set of changes for ARC for 4.10:
      
         - fix for unaligned access emulation corner case
      
         - fix for udelay loop inline asm regression
      
         - fix irq affinity finally for AXS103 board [Yuriy]
      
         - final fixes for setting IO-coherency sanely in SMP"
      
      * tag 'arc-4.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc:
        ARC: [arcompact] handle unaligned access delay slot corner case
        ARCv2: smp-boot: wake_flag polling by non-Masters needs to be uncached
        ARC: smp-boot: Decouple Non masters waiting API from jump to entry point
        ARCv2: MCIP: update the BCR per current changes
        ARC: udelay: fix inline assembler by adding LP_COUNT to clobber list
        ARCv2: MCIP: Deprecate setting of affinity in Device Tree
      ef1dce99