1. 23 Sep, 2016 4 commits
  2. 22 Sep, 2016 11 commits
  3. 21 Sep, 2016 12 commits
  4. 20 Sep, 2016 11 commits
  5. 19 Sep, 2016 2 commits
    • Linus Torvalds's avatar
      Merge branch 'akpm' (patches from Andrew) · d2ffb010
      Linus Torvalds authored
      Merge fixes from Andrew Morton:
       "20 fixes"
      
      * emailed patches from Andrew Morton <akpm@linux-foundation.org>:
        rapidio/rio_cm: avoid GFP_KERNEL in atomic context
        Revert "ocfs2: bump up o2cb network protocol version"
        ocfs2: fix start offset to ocfs2_zero_range_for_truncate()
        cgroup: duplicate cgroup reference when cloning sockets
        mm: memcontrol: make per-cpu charge cache IRQ-safe for socket accounting
        ocfs2: fix double unlock in case retry after free truncate log
        fanotify: fix list corruption in fanotify_get_response()
        fsnotify: add a way to stop queueing events on group shutdown
        ocfs2: fix trans extend while free cached blocks
        ocfs2: fix trans extend while flush truncate log
        ipc/shm: fix crash if CONFIG_SHMEM is not set
        mm: fix the page_swap_info() BUG_ON check
        autofs: use dentry flags to block walks during expire
        MAINTAINERS: update email for VLYNQ bus entry
        mm: avoid endless recursion in dump_page()
        mm, thp: fix leaking mapped pte in __collapse_huge_page_swapin()
        khugepaged: fix use-after-free in collapse_huge_page()
        MAINTAINERS: Maik has moved
        ocfs2/dlm: fix race between convert and migration
        mem-hotplug: don't clear the only node in new_node_page()
      d2ffb010
    • Alexandre Bounine's avatar
      rapidio/rio_cm: avoid GFP_KERNEL in atomic context · b92ae139
      Alexandre Bounine authored
      As reported by Alexey Khoroshilov (https://lkml.org/lkml/2016/9/9/737):
      riocm_send_close() is called from rio_cm_shutdown() under
      spin_lock_bh(idr_lock), but riocm_send_close() uses a GFP_KERNEL
      allocation.
      
      Fix by taking riocm_send_close() outside of spinlock protected code.
      
      [akpm@linux-foundation.org: remove unneeded `if (!list_empty())']
      Link: http://lkml.kernel.org/r/20160915175402.10122-1-alexandre.bounine@idt.comSigned-off-by: default avatarAlexandre Bounine <alexandre.bounine@idt.com>
      Reported-by: default avatarAlexey Khoroshilov <khoroshilov@ispras.ru>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      b92ae139