Skip to content
Permalink
Jerome-Pouille…
Switch branches/tags

Commits on Mar 15, 2021

  1. wfx: get out from the staging area

    The wfx driver is now mature enough to leave the staging area.
    
    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  2. wfx: remove from the staging area

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  3. wfx: add traces.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  4. wfx: add debug.c/debug.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  5. wfx: add scan.c/scan.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  6. wfx: add sta.c/sta.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  7. wfx: add data_tx.c/data_tx.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  8. wfx: add queue.c/queue.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  9. wfx: add data_rx.c/data_rx.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  10. wfx: add hif_rx.c/hif_rx.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  11. wfx: add key.c/key.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  12. wfx: add hif_tx*.c/hif_tx*.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  13. wfx: add hif_api_*.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  14. wfx: add bh.c/bh.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  15. wfx: add fwio.c/fwio.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  16. wfx: add hwio.c/hwio.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  17. wfx: add bus_sdio.c

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  18. wfx: add bus_spi.c

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  19. wfx: add bus.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  20. wfx: add main.c/main.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  21. wfx: add wfx.h

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  22. wfx: add Makefile/Kconfig

    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  23. dt-bindings: introduce silabs,wfx.yaml

    Prepare the inclusion of the wfx driver in the kernel.
    
    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  24. mmc: sdio: add SDIO IDs for Silabs WF200 chip

    Add Silabs SDIO ID to sdio_ids.h.
    
    Note that the values used by Silabs are uncommon. A driver cannot fully
    rely on the SDIO PnP. It should also check if the device is declared in
    the DT.
    
    Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
    jerome-pouiller authored and intel-lab-lkp committed Mar 15, 2021
  25. Merge 5.12-rc3 into staging-next

    We need the staging fixes in here as well.
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Mar 15, 2021

Commits on Mar 14, 2021

  1. Linux 5.12-rc3

    torvalds committed Mar 14, 2021
  2. prctl: fix PR_SET_MM_AUXV kernel stack leak

    Doing a
    
    	prctl(PR_SET_MM, PR_SET_MM_AUXV, addr, 1);
    
    will copy 1 byte from userspace to (quite big) on-stack array
    and then stash everything to mm->saved_auxv.
    AT_NULL terminator will be inserted at the very end.
    
    /proc/*/auxv handler will find that AT_NULL terminator
    and copy original stack contents to userspace.
    
    This devious scheme requires CAP_SYS_RESOURCE.
    
    Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Alexey Dobriyan authored and torvalds committed Mar 14, 2021
  3. Merge tag 'irq-urgent-2021-03-14' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull irq fixes from Thomas Gleixner:
     "A set of irqchip updates:
    
       - Make the GENERIC_IRQ_MULTI_HANDLER configuration correct
    
       - Add a missing DT compatible string for the Ingenic driver
    
       - Remove the pointless debugfs_file pointer from struct irqdomain"
    
    * tag 'irq-urgent-2021-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      irqchip/ingenic: Add support for the JZ4760
      dt-bindings/irq: Add compatible string for the JZ4760B
      irqchip: Do not blindly select CONFIG_GENERIC_IRQ_MULTI_HANDLER
      ARM: ep93xx: Select GENERIC_IRQ_MULTI_HANDLER directly
      irqdomain: Remove debugfs_file from struct irq_domain
    torvalds committed Mar 14, 2021
  4. Merge tag 'timers-urgent-2021-03-14' of git://git.kernel.org/pub/scm/…

    …linux/kernel/git/tip/tip
    
    Pull timer fix from Thomas Gleixner:
     "A single fix in for hrtimers to prevent an interrupt storm caused by
      the lack of reevaluation of the timers which expire in softirq context
      under certain circumstances, e.g. when the clock was set"
    
    * tag 'timers-urgent-2021-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      hrtimer: Update softirq_expires_next correctly after __hrtimer_get_next_event()
    torvalds committed Mar 14, 2021
  5. Merge tag 'sched-urgent-2021-03-14' of git://git.kernel.org/pub/scm/l…

    …inux/kernel/git/tip/tip
    
    Pull scheduler fixes from Thomas Gleixner:
     "A set of scheduler updates:
    
       - Prevent a NULL pointer dereference in the migration_stop_cpu()
         mechanims
    
       - Prevent self concurrency of affine_move_task()
    
       - Small fixes and cleanups related to task migration/affinity setting
    
       - Ensure that sync_runqueues_membarrier_state() is invoked on the
         current CPU when it is in the cpu mask"
    
    * tag 'sched-urgent-2021-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      sched/membarrier: fix missing local execution of ipi_sync_rq_state()
      sched: Simplify set_affinity_pending refcounts
      sched: Fix affine_move_task() self-concurrency
      sched: Optimize migration_cpu_stop()
      sched: Collate affine_move_task() stoppers
      sched: Simplify migration_cpu_stop()
      sched: Fix migration_cpu_stop() requeueing
    torvalds committed Mar 14, 2021
  6. Merge tag 'objtool-urgent-2021-03-14' of git://git.kernel.org/pub/scm…

    …/linux/kernel/git/tip/tip
    
    Pull objtool fix from Thomas Gleixner:
     "A single objtool fix to handle the PUSHF/POPF validation correctly for
      the paravirt changes which modified arch_local_irq_restore not to use
      popf"
    
    * tag 'objtool-urgent-2021-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      objtool,x86: Fix uaccess PUSHF/POPF validation
    torvalds committed Mar 14, 2021
  7. Merge tag 'locking-urgent-2021-03-14' of git://git.kernel.org/pub/scm…

    …/linux/kernel/git/tip/tip
    
    Pull locking fixes from Thomas Gleixner:
     "A couple of locking fixes:
    
       - A fix for the static_call mechanism so it handles unaligned
         addresses correctly.
    
       - Make u64_stats_init() a macro so every instance gets a seperate
         lockdep key.
    
       - Make seqcount_latch_init() a macro as well to preserve the static
         variable which is used for the lockdep key"
    
    * tag 'locking-urgent-2021-03-14' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      seqlock,lockdep: Fix seqcount_latch_init()
      u64_stats,lockdep: Fix u64_stats_init() vs lockdep
      static_call: Fix the module key fixup
    torvalds committed Mar 14, 2021
  8. Merge tag 'perf_urgent_for_v5.12-rc3' of git://git.kernel.org/pub/scm…

    …/linux/kernel/git/tip/tip
    
    Pull perf fixes from Borislav Petkov:
    
     - Make sure PMU internal buffers are flushed for per-CPU events too and
       properly handle PID/TID for large PEBS.
    
     - Handle the case properly when there's no PMU and therefore return an
       empty list of perf MSRs for VMX to switch instead of reading random
       garbage from the stack.
    
    * tag 'perf_urgent_for_v5.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      x86/perf: Use RET0 as default for guest_get_msrs to handle "no PMU" case
      perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR
      perf/core: Flush PMU internal buffers for per-CPU events
    torvalds committed Mar 14, 2021
  9. Merge tag 'efi-urgent-for-v5.12-rc2' of git://git.kernel.org/pub/scm/…

    …linux/kernel/git/tip/tip
    
    Pull EFI fix from Ard Biesheuvel via Borislav Petkov:
     "Fix an oversight in the handling of EFI_RT_PROPERTIES_TABLE, which was
      added v5.10, but failed to take the SetVirtualAddressMap() RT service
      into account"
    
    * tag 'efi-urgent-for-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      efi: stub: omit SetVirtualAddressMap() if marked unsupported in RT_PROP table
    torvalds committed Mar 14, 2021
  10. Merge tag 'x86_urgent_for_v5.12_rc3' of git://git.kernel.org/pub/scm/…

    …linux/kernel/git/tip/tip
    
    Pull x86 fixes from Borislav Petkov:
    
     - A couple of SEV-ES fixes and robustifications: verify usermode stack
       pointer in NMI is not coming from the syscall gap, correctly track
       IRQ states in the #VC handler and access user insn bytes atomically
       in same handler as latter cannot sleep.
    
     - Balance 32-bit fast syscall exit path to do the proper work on exit
       and thus not confuse audit and ptrace frameworks.
    
     - Two fixes for the ORC unwinder going "off the rails" into KASAN
       redzones and when ORC data is missing.
    
    * tag 'x86_urgent_for_v5.12_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      x86/sev-es: Use __copy_from_user_inatomic()
      x86/sev-es: Correctly track IRQ states in runtime #VC handler
      x86/sev-es: Check regs->sp is trusted before adjusting #VC IST stack
      x86/sev-es: Introduce ip_within_syscall_gap() helper
      x86/entry: Fix entry/exit mismatch on failed fast 32-bit syscalls
      x86/unwind/orc: Silence warnings caused by missing ORC data
      x86/unwind/orc: Disable KASAN checking in the ORC unwinder, part 2
    torvalds committed Mar 14, 2021
Older