1. 27 Jul, 2020 25 commits
  2. 15 Jul, 2020 9 commits
  3. 08 Jul, 2020 3 commits
    • Randy Dunlap's avatar
      Documentation: update for gcc 4.9 requirement · 0bddd227
      Randy Dunlap authored
      Update Documentation for the gcc v4.9 upgrade requirement.
      
      Fixes: 5429ef62 ("compiler/gcc: Raise minimum GCC version for kernel builds to 4.8")
      Fixes: 6ec4476a ("Raise gcc version requirement to 4.9")
      Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Acked-by: default avatarJonathan Corbet <corbet@lwn.net>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      0bddd227
    • Linus Torvalds's avatar
      Merge tag 'sound-5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound · 63e1968a
      Linus Torvalds authored
      Pull sound fixes from Takashi Iwai:
       "A collection of small, mostly device-specific fixes.
      
        The significant one is the regression fix for USB-audio implicit
        feedback devices due to the incorrect frame size calculation, which
        landed in 5.8 and stable trees.
      
        In addition, a few usual HD-audio and USB-audio quirks, Intel HDMI
        fixes, ASoC fsl and rt5682 fixes, as well as the fix in
        compress-offload partial drain operation"
      
      * tag 'sound-5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:
        ALSA: compress: fix partial_drain completion state
        ALSA: usb-audio: Add implicit feedback quirk for RTX6001
        ALSA: usb-audio: add quirk for MacroSilicon MS2109
        ALSA: hda/realtek: Enable headset mic of Acer Veriton N4660G with ALC269VC
        ALSA: hda/realtek: Enable headset mic of Acer C20-820 with ALC269VC
        ALSA: hda/realtek - Enable audio jacks of Acer vCopperbox with ALC269VC
        ALSA: hda/realtek - Fix Lenovo Thinkpad X1 Carbon 7th quirk subdevice id
        ALSA: hda/hdmi: improve debug traces for stream lookups
        ALSA: hda/hdmi: fix failures at PCM open on Intel ICL and later
        ALSA: opl3: fix infoleak in opl3
        ALSA: usb-audio: Replace s/frame/packet/ where appropriate
        ALSA: usb-audio: Fix packet size calculation
        AsoC: amd: add missing snd- module prefix to the acp3x-rn driver kernel module
        ALSA: hda - let hs_mic be picked ahead of hp_mic
        ASoC: rt5682: fix the pop noise while OMTP type headset plugin
        ASoC: fsl_mqs: Fix unchecked return value for clk_prepare_enable
        ASoC: fsl_mqs: Don't check clock is NULL before calling clk API
      63e1968a
    • Linus Torvalds's avatar
      Raise gcc version requirement to 4.9 · 6ec4476a
      Linus Torvalds authored
      I realize that we fairly recently raised it to 4.8, but the fact is, 4.9
      is a much better minimum version to target.
      
      We have a number of workarounds for actual bugs in pre-4.9 gcc versions
      (including things like internal compiler errors on ARM), but we also
      have some syntactic workarounds for lacking features.
      
      In particular, raising the minimum to 4.9 means that we can now just
      assume _Generic() exists, which is likely the much better replacement
      for a lot of very convoluted built-time magic with conditionals on
      sizeof and/or __builtin_choose_expr() with same_type() etc.
      
      Using _Generic also means that you will need to have a very recent
      version of 'sparse', but thats easy to build yourself, and much less of
      a hassle than some old gcc version can be.
      
      The latest (in a long string) of reasons for minimum compiler version
      upgrades was commit 5435f73d ("efi/x86: Fix build with gcc 4").
      
      Ard points out that RHEL 7 uses gcc-4.8, but the people who stay back on
      old RHEL versions persumably also don't build their own kernels anyway.
      And maybe they should cross-built or just have a little side affair with
      a newer compiler?
      Acked-by: default avatarArd Biesheuvel <ardb@kernel.org>
      Acked-by: default avatarPeter Zijlstra <peterz@infradead.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      6ec4476a
  4. 07 Jul, 2020 3 commits
    • Linus Torvalds's avatar
      Merge tag 'perf-tools-fixes-2020-07-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux · dcde237b
      Linus Torvalds authored
      Pull perf tooling fixes from Arnaldo Carvalho de Melo:
      
       - Intel PT fixes for PEBS-via-PT with registers
      
       - Fixes for Intel PT python based GUI
      
       - Avoid duplicated sideband events with Intel PT in system wide tracing
      
       - Remove needless 'dummy' event from TUI menu, used when synthesizing
         meta data events for pre-existing processes
      
       - Fix corner case segfault when pressing enter in a screen without
         entries in the TUI for report/top
      
       - Fixes for time stamp handling in libtraceevent
      
       - Explicitly set utf-8 encoding in perf flamegraph
      
       - Update arch/x86/lib/memcpy_64.S copy used in 'perf bench mem memcpy',
         silencing perf build warning
      
      * tag 'perf-tools-fixes-2020-07-07' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux:
        perf report TUI: Remove needless 'dummy' event from menu
        perf intel-pt: Fix PEBS sample for XMM registers
        perf intel-pt: Fix displaying PEBS-via-PT with registers
        perf intel-pt: Fix recording PEBS-via-PT with registers
        perf report TUI: Fix segmentation fault in perf_evsel__hists_browse()
        tools lib traceevent: Add proper KBUFFER_TYPE_TIME_STAMP handling
        tools lib traceevent: Add API to read time information from kbuffer
        perf scripts python: exported-sql-viewer.py: Fix time chart call tree
        perf scripts python: exported-sql-viewer.py: Fix zero id in call tree 'Find' result
        perf scripts python: exported-sql-viewer.py: Fix zero id in call graph 'Find' result
        perf scripts python: exported-sql-viewer.py: Fix unexpanded 'Find' result
        perf record: Fix duplicated sideband events with Intel PT system wide tracing
        perf scripts python: export-to-postgresql.py: Fix struct.pack() int argument
        tools arch: Update arch/x86/lib/memcpy_64.S copy used in 'perf bench mem memcpy'
        perf flamegraph: Explicitly set utf-8 encoding
      dcde237b
    • Linus Torvalds's avatar
      Merge tag 'mtd/fixes-for-5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux · 6d12075d
      Linus Torvalds authored
      Pull MTD fixes from Miquel Raynal:
       "MTD:
         - Set a missing master partition panic write flag
      
        Raw NAND:
         - Fix build issue in the xway driver
         - Fix a wrong return code"
      
      * tag 'mtd/fixes-for-5.8-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux:
        mtd: rawnand: xway: Fix build issue
        mtd: set master partition panic write flag
        nandsim: Fix return code testing of ns_find_operation()
      6d12075d
    • Linus Torvalds's avatar
      Merge tag 'for-5.8-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux · aa27b32b
      Linus Torvalds authored
      Pull btrfs fixes from David Sterba:
      
       - regression fix of a leak in global block reserve accounting
      
       - fix a (hard to hit) race of readahead vs releasepage that could lead
         to crash
      
       - convert all remaining uses of comment fall through annotations to the
         pseudo keyword
      
       - fix crash when mounting a fuzzed image with -o recovery
      
      * tag 'for-5.8-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
        btrfs: reset tree root pointer after error in init_tree_roots
        btrfs: fix reclaim_size counter leak after stealing from global reserve
        btrfs: fix fatal extent_buffer readahead vs releasepage race
        btrfs: convert comments to fallthrough annotations
      aa27b32b