1. 18 Sep, 2019 5 commits
    • Linus Torvalds's avatar
      Merge tag 'dmaengine-5.4-rc1' of git://git.infradead.org/users/vkoul/slave-dma · 04cbfba6
      Linus Torvalds authored
      Pull dmaengine updates from Vinod Koul:
      
       - Move Dmaengine DT bindings to YAML and convert Allwinner to schema.
      
       - FSL dma device_synchronize implementation
      
       - DW split acpi and of helpers and updates to driver and support for
         Elkhart Lake
      
       - Move filter fn as private for omap-dma and edma drivers and
         improvements to these drivers
      
       - Mark expected switch fall-through in couple of drivers
      
       - Renames of shdma and nbpfaxi binding document
      
       - Minor updates to bunch of drivers
      
      * tag 'dmaengine-5.4-rc1' of git://git.infradead.org/users/vkoul/slave-dma: (55 commits)
        dmaengine: ti: edma: Use bitmap_set() instead of open coded edma_set_bits()
        dmaengine: ti: edma: Only reset region0 access registers
        dmaengine: ti: edma: Do not reset reserved paRAM slots
        dmaengine: iop-adma.c: fix printk format warning
        dmaengine: stm32-dma: Use struct_size() helper
        dt-bindings: dmaengine: dma-common: Fix the dma-channel-mask property
        dmanegine: ioat/dca: Use struct_size() helper
        dmaengine: iop-adma: remove set but not used variable 'slots_per_op'
        dmaengine: dmatest: Add support for completion polling
        dmaengine: ti: omap-dma: Remove variable override in omap_dma_tx_status()
        dmaengine: ti: omap-dma: Remove 'Assignment in if condition'
        dmaengine: ti: edma: Remove 'Assignment in if condition'
        dmaengine: dw: platform: Split OF helpers to separate module
        dmaengine: dw: platform: Split ACPI helpers to separate module
        dmaengine: dw: platform: Move handle check to dw_dma_acpi_controller_register()
        dmaengine: dw: platform: Switch to acpi_dma_controller_register()
        dmaengine: dw: platform: Use devm_platform_ioremap_resource()
        dmaengine: dw: platform: Enable iDMA 32-bit on Intel Elkhart Lake
        dmaengine: dw: platform: Use struct dw_dma_chip_pdata
        dmaengine: dw: Export struct dw_dma_chip_pdata for wider use
        ...
      04cbfba6
    • Linus Torvalds's avatar
      Merge tag 'leds-for-5.4-rc1' of... · 4feaab05
      Linus Torvalds authored
      Merge tag 'leds-for-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds
      
      Pull LED updates from Jacek Anaszewski:
       "In this cycle we've finally managed to contribute the patch set
        sorting out LED naming issues. Besides that there are many changes
        scattered among various LED class drivers and triggers.
      
        LED naming related improvements:
      
         - add new 'function' and 'color' fwnode properties and deprecate
           'label' property which has been frequently abused for conveying
           vendor specific names that have been available in sysfs anyway
      
         - introduce a set of standard LED_FUNCTION* definitions
      
         - introduce a set of standard LED_COLOR_ID* definitions
      
         - add a new {devm_}led_classdev_register_ext() API with the
           capability of automatic LED name composition basing on the
           properties available in the passed fwnode; the function is
           backwards compatible in a sense that it uses 'label' data, if
           present in the fwnode, for creating LED name
      
         - add tools/leds/get_led_device_info.sh script for retrieving LED
           vendor, product and bus names, if applicable; it also performs
           basic validation of an LED name
      
         - update following drivers and their DT bindings to use the new LED
           registration API:
      
              - leds-an30259a, leds-gpio, leds-as3645a, leds-aat1290, leds-cr0014114,
                leds-lm3601x, leds-lm3692x, leds-lp8860, leds-lt3593, leds-sc27xx-blt
      
        Other LED class improvements:
      
         - replace {devm_}led_classdev_register() macros with inlines
      
         - allow to call led_classdev_unregister() unconditionally
      
         - switch to use fwnode instead of be stuck with OF one
      
        LED triggers improvements:
      
         - led-triggers:
              - fix dereferencing of null pointer
              - fix a memory leak bug
      
         - ledtrig-gpio:
              - GPIO 0 is valid
      
        Drop superseeded apu2/3 support from leds-apu since for apu2+ a newer,
        more complete driver exists, based on a generic driver for the AMD
        SOCs gpio-controller, supporting LEDs as well other devices:
      
         - drop profile field from priv data
      
         - drop iosize field from priv data
      
         - drop enum_apu_led_platform_types
      
         - drop superseeded apu2/3 led support
      
         - add pr_fmt prefix for better log output
      
         - fix error message on probing failure
      
        Other misc fixes and improvements to existing LED class drivers:
      
         - leds-ns2, leds-max77650:
              - add of_node_put() before return
      
         - leds-pwm, leds-is31fl32xx:
              - use struct_size() helper
      
         - leds-lm3697, leds-lm36274, leds-lm3532:
              - switch to use fwnode_property_count_uXX()
      
         - leds-lm3532:
              - fix brightness control for i2c mode
              - change the define for the fs current register
              - fixes for the driver for stability
              - add full scale current configuration
              - dt: Add property for full scale current.
              - avoid potentially unpaired regulator calls
              - move static keyword to the front of declarations
              - fix optional led-max-microamp prop error handling
      
         - leds-max77650:
              - add of_node_put() before return
              - add MODULE_ALIAS()
              - Switch to fwnode property API
      
         - leds-as3645a:
              - fix misuse of strlcpy
      
         - leds-netxbig:
              - add of_node_put() in netxbig_leds_get_of_pdata()
              - remove legacy board-file support
      
         - leds-is31fl319x:
              - simplify getting the adapter of a client
      
         - leds-ti-lmu-common:
              - fix coccinelle issue
              - move static keyword to the front of declaration
      
         - leds-syscon:
              - use resource managed variant of device register
      
         - leds-ktd2692:
              - fix a typo in the name of a constant
      
         - leds-lp5562:
              - allow firmware files up to the maximum length
      
         - leds-an30259a:
              - fix typo
      
         - leds-pca953x:
              - include the right header"
      
      * tag 'leds-for-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds: (72 commits)
        leds: lm3532: Fix optional led-max-microamp prop error handling
        led: triggers: Fix dereferencing of null pointer
        leds: ti-lmu-common: Move static keyword to the front of declaration
        leds: lm3532: Move static keyword to the front of declarations
        leds: trigger: gpio: GPIO 0 is valid
        leds: pwm: Use struct_size() helper
        leds: is31fl32xx: Use struct_size() helper
        leds: ti-lmu-common: Fix coccinelle issue in TI LMU
        leds: lm3532: Avoid potentially unpaired regulator calls
        leds: syscon: Use resource managed variant of device register
        leds: Replace {devm_}led_classdev_register() macros with inlines
        leds: Allow to call led_classdev_unregister() unconditionally
        leds: lm3532: Add full scale current configuration
        dt: lm3532: Add property for full scale current.
        leds: lm3532: Fixes for the driver for stability
        leds: lm3532: Change the define for the fs current register
        leds: lm3532: Fix brightness control for i2c mode
        leds: Switch to use fwnode instead of be stuck with OF one
        leds: max77650: Switch to fwnode property API
        led: triggers: Fix a memory leak bug
        ...
      4feaab05
    • Linus Torvalds's avatar
      Merge tag 'media/v5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media · e7345f92
      Linus Torvalds authored
      Pull media updates from Mauro Carvalho Chehab:
      
       - a new sensor driver for ov5675
      
       - a new platform driver for Allwinner A10 sensor interface
      
       - some new remote controller keymaps
      
       - some cosmetic changes at V4L2 core in order to avoid #ifdefs and to
         merge two core modules into one
      
       - removal of bcm2048 radio driver from staging
      
       - removal of davinci_vpfe video driver from staging
      
       - regression fix since Kernel 5.1 at the legacy VideoBuffer version 1
         core
      
       - added some documentation for remote controller protocols
      
       - pixel format documentation was split on two files
      
       - lots of other driver improvements and cleanups
      
      * tag 'media/v5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (321 commits)
        media: videobuf-core.c: poll_wait needs a non-NULL buf pointer
        media: sun4i: Make sun4i_csi_formats static
        media: imx: remove unused including <linux/version.h>
        media: stm32-dcmi: Delete an unnecessary of_node_put() call in dcmi_probe()
        media: pvrusb2: qctrl.flag will be uninitlaized if cx2341x_ctrl_query() returns error code
        media: em28xx: Fix exception handling in em28xx_alloc_urbs()
        media: don't do a 31 bit shift on a signed int
        media: use the BIT() macro
        media: ov9650: add a sanity check
        media: aspeed-video: address a protential usage of an unitialized var
        media: vicodec: make life easier for static analyzers
        media: remove include stdarg.h from some drivers
        v4l2-core: fix coding style for the two new c files
        media: v4l2-core: Remove BUG() from i2c and spi helpers
        media: v4l2-core: introduce a helper to unregister a i2c subdev
        media: v4l2-core: introduce a helper to unregister a spi subdev
        media: v4l2-core: move i2c helpers out of v4l2-common.c
        media: v4l2-core: move spi helpers out of v4l2-common.c
        media: v4l2-core: Module re-organization
        media: usbvision: Remove dead code
        ...
      e7345f92
    • Linus Torvalds's avatar
      Merge tag 'sound-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound · 6ab8ad31
      Linus Torvalds authored
      Pull sound updates from Takashi Iwai:
       "As shown in diffstat and logs, it was again a busy development cycle
        at this time, too. The most significant changes are still on-going
        refactoring / modernization works for ASoC core and drivers, but there
        are lots of other changes as well. Here we go, some highlights below:
      
        ASoC:
      
         - Quite a lot of cleanup / refactoring of ASoC core and APIs; most of
           them are systematic, but also including cleanups and modernization
      
         - A bulk of updates for some ASoC platforms, Freescale, sunxi and
           Intel SST/SOF
      
         - Initial support for Sound Open Firmware on i.MX8
      
         - Removal of deprecated w90x900 and nuc900 drivers
      
         - New support for Cirrus Logic CS47L15 and CS47L92, Freescale i.MX
           7ULP and 8MQ, Meson G12A and NXP UDA1334
      
        USB-audio:
      
         - More validations of descriptor units for hardening against bugs
           reported by fuzzers
      
         - PCM device assignment workaround for a past call-order change
      
         - Scarlett Gen2 mixer interface, a few more more quirks
      
        HD-audio:
      
         - Support for audio component with AMD/ATI and Nvidia HDMI codecs
      
         - Clean up HD-audio core and remove indirect access ops for Intel SOF
      
         - DMIC detection at probe; it would make systems automatically
           falling back to SST/SOF driver on devices that need DMIC handling.
           Needs a new Kconfig to set, and beware that it's still new and a
           bit experimental
      
        FireWire:
      
         - Lots of code refactoring and cleanups"
      
      * tag 'sound-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (521 commits)
        ASoC: sdm845: remove unneeded semicolon
        ASoC: fsl_sai: Implement set_bclk_ratio
        ASoC: dmaengine: Replace strncpy() with strscpy_pad() for pcm->name
        ASoC: wcd9335: remove redundant use of ret variable
        ALSA: firewire-tascam: check intermediate state of clock status and retry
        ALSA: firewire-tascam: handle error code when getting current source of clock
        ASoC: hdmi-codec: Add an op to set callback function for plug event
        ASoC: rt5677: keep analog power register at SND_SOC_BIAS_OFF
        ASoC: rt5677: Remove magic number register writes
        ASoC: soc-core: self contained soc_unbind_aux_dev()
        ASoC: soc-core: add soc_unbind_aux_dev()
        ASoC: soc-core: self contained soc_bind_aux_dev()
        ASoC: soc-core: move soc_probe_link_dais() next to soc_remove_link_dais()
        ASoC: soc-core: self contained soc_probe_link_dais()
        ASoC: soc-core: add new soc_link_init()
        ASoC: soc-core: move soc_probe_dai() next to soc_remove_dai()
        ASoC: soc-core: self contained soc_remove_link_dais()
        ASoC: soc-core: self contained soc_remove_link_components()
        ASoC: soc-core: self contained soc_probe_link_components()
        ASoC: rt1308: make array pd static const, makes object smaller
        ...
      6ab8ad31
    • Linus Torvalds's avatar
      Merge tag 'mmc-v5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc · ea982ba7
      Linus Torvalds authored
      Pull MMC updates from Ulf Hansson:
       "MMC core:
         - Fixup processing of SDIO IRQs during system suspend/resume
         - Add helper function to indicate if SDIO IRQs is enabled
      
        MMC host:
         - bcm2835: Take SWIOTLB memory size limitation into account
         - dw_mmc: Improve SDIO IRQs support
         - mtk-sd: Various improvements
         - mtk-sd: Improve SDIO IRQs support
         - sdhci-iproc: Add support for emmc2 of the BCM2711
         - sdhci-of-arasan: Add Support for Intel LGM eMMC
         - sdhci-of-aspeed: Add support for the ASPEED SD controller
         - sdhci-of-esdhc: Deal with erratum A011334 support in ls1028a 1.0 SoC
         - sdhci-pci: Prepare to add support of Genesys Logic GL975x
         - sdhci-pci: Add another Id for Intel CML
         - sdhci-pci-o2micro: Fix O2 Host data read/write DLL Lock phase shift issue
         - sunxi: Add support for H5 compatibles"
      
      * tag 'mmc-v5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc: (59 commits)
        ms_block: fix spelling mistake "randomally" -> "randomly"
        mmc: dw_mmc: hi3798cv200: make array degrees static const, makes object smaller
        mmc: sdhci: Convert to use sdio_irq_claimed()
        mmc: sdhci: Drop redundant code for SDIO IRQs
        mmc: sdhci: Drop redundant check in sdhci_ack_sdio_irq()
        mmc: core: Fixup processing of SDIO IRQs during system suspend/resume
        mmc: core: WARN if SDIO IRQs are enabled for non-powered card in suspend
        mmc: core: Clarify that the ->ack_sdio_irq() callback is mandatory
        mmc: core: Clarify sdio_irq_pending flag for MMC_CAP2_SDIO_IRQ_NOTHREAD
        mmc: core: Move code to get pending SDIO IRQs to a function
        mmc: mtk-sd: Re-store SDIO IRQs mask at system resume
        mmc: dw_mmc: Re-store SDIO IRQs mask at system resume
        mmc: core: Add helper function to indicate if SDIO IRQs is enabled
        mmc: sdhci-pci-o2micro: Fix O2 Host data read/write DLL Lock phase shift issue
        mmc: sdhci-pci-o2micro: Move functions in preparation to fix DLL lock phase shift issue
        mmc: sdhci-pci-o2micro: Change O2 Host PLL and DLL register name
        mmc: sdhci: Fix incorrect switch to HS mode
        mmc: sdhci-of-aspeed: Depend on CONFIG_OF_ADDRESS
        mmc: sdhci-of-aspeed: Allow max-frequency limitation of SDCLK
        mmc: sdhci-of-aspeed: Uphold clocks-on post-condition of set_clock()
        ...
      ea982ba7
  2. 17 Sep, 2019 30 commits
    • Linus Torvalds's avatar
      Merge tag 'for-5.4/block-2019-09-16' of git://git.kernel.dk/linux-block · 7ad67ca5
      Linus Torvalds authored
      Pull block updates from Jens Axboe:
      
       - Two NVMe pull requests:
           - ana log parse fix from Anton
           - nvme quirks support for Apple devices from Ben
           - fix missing bio completion tracing for multipath stack devices
             from Hannes and Mikhail
           - IP TOS settings for nvme rdma and tcp transports from Israel
           - rq_dma_dir cleanups from Israel
           - tracing for Get LBA Status command from Minwoo
           - Some nvme-tcp cleanups from Minwoo, Potnuri and Myself
           - Some consolidation between the fabrics transports for handling
             the CAP register
           - reset race with ns scanning fix for fabrics (move fabrics
             commands to a dedicated request queue with a different lifetime
             from the admin request queue)."
           - controller reset and namespace scan races fixes
           - nvme discovery log change uevent support
           - naming improvements from Keith
           - multiple discovery controllers reject fix from James
           - some regular cleanups from various people
      
       - Series fixing (and re-fixing) null_blk debug printing and nr_devices
         checks (André)
      
       - A few pull requests from Song, with fixes from Andy, Guoqing,
         Guilherme, Neil, Nigel, and Yufen.
      
       - REQ_OP_ZONE_RESET_ALL support (Chaitanya)
      
       - Bio merge handling unification (Christoph)
      
       - Pick default elevator correctly for devices with special needs
         (Damien)
      
       - Block stats fixes (Hou)
      
       - Timeout and support devices nbd fixes (Mike)
      
       - Series fixing races around elevator switching and device add/remove
         (Ming)
      
       - sed-opal cleanups (Revanth)
      
       - Per device weight support for BFQ (Fam)
      
       - Support for blk-iocost, a new model that can properly account cost of
         IO workloads. (Tejun)
      
       - blk-cgroup writeback fixes (Tejun)
      
       - paride queue init fixes (zhengbin)
      
       - blk_set_runtime_active() cleanup (Stanley)
      
       - Block segment mapping optimizations (Bart)
      
       - lightnvm fixes (Hans/Minwoo/YueHaibing)
      
       - Various little fixes and cleanups
      
      * tag 'for-5.4/block-2019-09-16' of git://git.kernel.dk/linux-block: (186 commits)
        null_blk: format pr_* logs with pr_fmt
        null_blk: match the type of parameter nr_devices
        null_blk: do not fail the module load with zero devices
        block: also check RQF_STATS in blk_mq_need_time_stamp()
        block: make rq sector size accessible for block stats
        bfq: Fix bfq linkage error
        raid5: use bio_end_sector in r5_next_bio
        raid5: remove STRIPE_OPS_REQ_PENDING
        md: add feature flag MD_FEATURE_RAID0_LAYOUT
        md/raid0: avoid RAID0 data corruption due to layout confusion.
        raid5: don't set STRIPE_HANDLE to stripe which is in batch list
        raid5: don't increment read_errors on EILSEQ return
        nvmet: fix a wrong error status returned in error log page
        nvme: send discovery log page change events to userspace
        nvme: add uevent variables for controller devices
        nvme: enable aen regardless of the presence of I/O queues
        nvme-fabrics: allow discovery subsystems accept a kato
        nvmet: Use PTR_ERR_OR_ZERO() in nvmet_init_discovery()
        nvme: Remove redundant assignment of cq vector
        nvme: Assign subsys instance from first ctrl
        ...
      7ad67ca5
    • Linus Torvalds's avatar
      Merge tag 'for-5.4/libata-2019-09-15' of git://git.kernel.dk/linux-block · 5260c2b8
      Linus Torvalds authored
      Pull libata updates from Jens Axboe:
      
       - Kill unused export (Andy)
      
       - Use dma_set_mask_and_coherent() throughout (Christoph)
      
       - Drop PCS quirk on Denverton, which has different register layout
         (Dan)
      
       - Support non-boot time detection for pata_buddha (Max)
      
      * tag 'for-5.4/libata-2019-09-15' of git://git.kernel.dk/linux-block:
        libata/ahci: Drop PCS quirk for Denverton and beyond
        ahci: Do not export local variable ahci_em_messages
        libata: switch remaining drivers to use dma_set_mask_and_coherent
        sata_sil24: use dma_set_mask_and_coherent
        sata_qstor: use dma_set_mask_and_coherent
        sata_nv: use dma_set_mask_and_coherent
        sata_mv: use dma_set_mask_and_coherent
        pdc_adma: use dma_set_mask_and_coherent
        ahci: use dma_set_mask_and_coherent
        acard_ahci: use dma_set_mask_and_coherent
        ata/pata_buddha: Probe via modalias instead of initcall
      5260c2b8
    • Linus Torvalds's avatar
      Merge tag 'for-5.4/io_uring-2019-09-15' of git://git.kernel.dk/linux-block · 1e6fa3a3
      Linus Torvalds authored
      Pull io_uring updates from Jens Axboe:
      
       - Allocate SQ/CQ ring together, more efficient. Expose this through a
         feature flag as well, so we can reduce the number of mmaps by 1
         (Hristo and me)
      
       - Fix for sequence logic with SQ thread (Jackie).
      
       - Add support for links with drain commands (Jackie).
      
       - Improved async merging (me)
      
       - Improved buffered async write performance (me)
      
       - Support SQ poll wakeup + event get in single io_uring_enter() (me)
      
       - Support larger SQ ring size. For epoll conversions, the 4k limit was
         too small for some prod workloads (Daniel).
      
       - put_user_page() usage (John)
      
      * tag 'for-5.4/io_uring-2019-09-15' of git://git.kernel.dk/linux-block:
        io_uring: increase IORING_MAX_ENTRIES to 32K
        io_uring: make sqpoll wakeup possible with getevents
        io_uring: extend async work merging
        io_uring: limit parallelism of buffered writes
        io_uring: add io_queue_async_work() helper
        io_uring: optimize submit_and_wait API
        io_uring: add support for link with drain
        io_uring: fix wrong sequence setting logic
        io_uring: expose single mmap capability
        io_uring: allocate the two rings together
        fs/io_uring.c: convert put_page() to put_user_page*()
      1e6fa3a3
    • Linus Torvalds's avatar
      Merge tag 'docs-5.4' of git://git.lwn.net/linux · 7c672abc
      Linus Torvalds authored
      Pull documentation updates from Jonathan Corbet:
       "It's a somewhat calmer cycle for docs this time, as the churn of the
        mass RST conversion is happily mostly behind us.
      
         - A new document on reproducible builds.
      
         - We finally got around to zapping the documentation for hardware
           support that was removed in 2004; one doesn't want to rush these
           things.
      
         - The usual assortment of fixes, typo corrections, etc"
      
      * tag 'docs-5.4' of git://git.lwn.net/linux: (67 commits)
        Documentation: kbuild: Add document about reproducible builds
        docs: printk-formats: Stop encouraging use of unnecessary %h[xudi] and %hh[xudi]
        Documentation: Add "earlycon=sbi" to the admin guide
        doc:lock: remove reference to clever use of read-write lock
        devices.txt: improve entry for comedi (char major 98)
        docs: mtd: Update spi nor reference driver
        doc: arm64: fix grammar dtb placed in no attributes region
        Documentation: sysrq: don't recommend 'S' 'U' before 'B'
        mailmap: Update email address for Quentin Perret
        docs: ftrace: clarify when tracing is disabled by the trace file
        docs: process: fix broken link
        Documentation/arm/samsung-s3c24xx: Remove stray U+FEFF character to fix title
        Documentation/arm/sa1100/assabet: Fix 'make assabet_defconfig' command
        Documentation/arm/sa1100: Remove some obsolete documentation
        docs/zh_CN: update Chinese howto.rst for latexdocs making
        Documentation: virt: Fix broken reference to virt tree's index
        docs: Fix typo on pull requests guide
        kernel-doc: Allow anonymous enum
        Documentation: sphinx: Don't parse socket() as identifier reference
        Documentation: sphinx: Add missing comma to list of strings
        ...
      7c672abc
    • Linus Torvalds's avatar
      Merge branch 'for-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu · 19023141
      Linus Torvalds authored
      Pull percpu updates from Dennis Zhou:
       "A couple of updates to clean up the code with no change in behavior"
      
      * 'for-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu:
        percpu: Use struct_size() helper
        percpu: fix typo in pcpu_setup_first_chunk() comment
        percpu: Make pcpu_setup_first_chunk() void function
      19023141
    • Linus Torvalds's avatar
      Merge branch 'for-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup · 3ee8d6c5
      Linus Torvalds authored
      Pull cgroup updates from Tejun Heo:
       "Three minor cleanup patches"
      
      * 'for-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
        Use kvmalloc in cgroups-v1
        cgroup: minor tweak for logic to get cgroup css
        cgroup: Replace a seq_printf() call by seq_puts() in cgroup_print_ss_mask()
      3ee8d6c5
    • Linus Torvalds's avatar
      Merge tag 'asm-generic-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic · b8456f94
      Linus Torvalds authored
      Pull asm-generic updates from Arnd Bergmann:
       "Here are three small cleanup patches for the include/asm-generic
        directory.
      
        Christoph removes the __ioremap as part of a cleanup, Nico improves
        the constant do_div() optimization, and Denis changes BUG_ON() to be
        consistent with other implementations"
      
      * tag 'asm-generic-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic:
        asm-generic: add unlikely to default BUG_ON(x)
        __div64_const32(): improve the generic C version
        asm-generic: don't provide __ioremap
      b8456f94
    • Linus Torvalds's avatar
      Merge tag 'xtensa-20190917' of git://github.com/jcmvbkbc/linux-xtensa · 6dec8c15
      Linus Torvalds authored
      Pull Xtensa updates from Max Filippov:
      
       - add support for xtensa call0 ABI in userspace
      
       - update xtensa virt board DTS for PCI root complex in KIO range
      
       - remove free_initrd_mem
      
      * tag 'xtensa-20190917' of git://github.com/jcmvbkbc/linux-xtensa:
        xtensa: virt: move PCI root complex to KIO range
        xtensa: add support for call0 ABI in userspace
        xtensa: clean up PS_WOE_BIT usage
        xtensa: remove free_initrd_mem
      6dec8c15
    • Linus Torvalds's avatar
      Merge tag 's390-5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux · d5902844
      Linus Torvalds authored
      Pull s390 updates from Vasily Gorbik:
      
       - Add support for IBM z15 machines.
      
       - Add SHA3 and CCA AES cipher key support in zcrypt and pkey
         refactoring.
      
       - Move to arch_stack_walk infrastructure for the stack unwinder.
      
       - Various kasan fixes and improvements.
      
       - Various command line parsing fixes.
      
       - Improve decompressor phase debuggability.
      
       - Lift no bss usage restriction for the early code.
      
       - Use refcount_t for reference counters for couple of places in mm
         code.
      
       - Logging improvements and return code fix in vfio-ccw code.
      
       - Couple of zpci fixes and minor refactoring.
      
       - Remove some outdated documentation.
      
       - Fix secure boot detection.
      
       - Other various minor code clean ups.
      
      * tag 's390-5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: (48 commits)
        s390: remove pointless drivers-y in drivers/s390/Makefile
        s390/cpum_sf: Fix line length and format string
        s390/pci: fix MSI message data
        s390: add support for IBM z15 machines
        s390/crypto: Support for SHA3 via CPACF (MSA6)
        s390/startup: add pgm check info printing
        s390/crypto: xts-aes-s390 fix extra run-time crypto self tests finding
        vfio-ccw: fix error return code in vfio_ccw_sch_init()
        s390: vfio-ap: fix warning reset not completed
        s390/base: remove unused s390_base_mcck_handler
        s390/sclp: Fix bit checked for has_sipl
        s390/zcrypt: fix wrong handling of cca cipher keygenflags
        s390/kasan: add kdump support
        s390/setup: avoid using strncmp with hardcoded length
        s390/sclp: avoid using strncmp with hardcoded length
        s390/module: avoid using strncmp with hardcoded length
        s390/pci: avoid using strncmp with hardcoded length
        s390/kaslr: reserve memory for kasan usage
        s390/mem_detect: provide single get_mem_detect_end
        s390/cmma: reuse kstrtobool for option value parsing
        ...
      d5902844
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://github.com/openrisc/linux · 1e24aaab
      Linus Torvalds authored
      Pull OpenRISC updates from Stafford Horne:
       "Few small things for 5.4:
      
         - Fixup ethoc ethernet device tree descriptors which were previously
           broken, now ethernet works on FPGAs running OpenRISC!
      
         - Switch ioremap to use uncached semantics - from Christoph Hellwig"
      
      * tag 'for-linus' of git://github.com/openrisc/linux:
        openrisc: map as uncached in ioremap
        or1k: dts: Add ethoc device to SMP devicetree
        or1k: dts: Fix ethoc network configuration in or1ksim devicetree
      1e24aaab
    • Linus Torvalds's avatar
      Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu · 16da0961
      Linus Torvalds authored
      Pull m68knommu fix from Greg Ungerer:
       "Only a single change, fix up header include in ColdFire specific GPIO
        handling code"
      
      * 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
        m68k: coldfire: Include the GPIO driver header
      16da0961
    • Linus Torvalds's avatar
      Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 7f2444d3
      Linus Torvalds authored
      Pull core timer updates from Thomas Gleixner:
       "Timers and timekeeping updates:
      
         - A large overhaul of the posix CPU timer code which is a preparation
           for moving the CPU timer expiry out into task work so it can be
           properly accounted on the task/process.
      
           An update to the bogus permission checks will come later during the
           merge window as feedback was not complete before heading of for
           travel.
      
         - Switch the timerqueue code to use cached rbtrees and get rid of the
           homebrewn caching of the leftmost node.
      
         - Consolidate hrtimer_init() + hrtimer_init_sleeper() calls into a
           single function
      
         - Implement the separation of hrtimers to be forced to expire in hard
           interrupt context even when PREEMPT_RT is enabled and mark the
           affected timers accordingly.
      
         - Implement a mechanism for hrtimers and the timer wheel to protect
           RT against priority inversion and live lock issues when a (hr)timer
           which should be canceled is currently executing the callback.
           Instead of infinitely spinning, the task which tries to cancel the
           timer blocks on a per cpu base expiry lock which is held and
           released by the (hr)timer expiry code.
      
         - Enable the Hyper-V TSC page based sched_clock for Hyper-V guests
           resulting in faster access to timekeeping functions.
      
         - Updates to various clocksource/clockevent drivers and their device
           tree bindings.
      
         - The usual small improvements all over the place"
      
      * 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (101 commits)
        posix-cpu-timers: Fix permission check regression
        posix-cpu-timers: Always clear head pointer on dequeue
        hrtimer: Add a missing bracket and hide `migration_base' on !SMP
        posix-cpu-timers: Make expiry_active check actually work correctly
        posix-timers: Unbreak CONFIG_POSIX_TIMERS=n build
        tick: Mark sched_timer to expire in hard interrupt context
        hrtimer: Add kernel doc annotation for HRTIMER_MODE_HARD
        x86/hyperv: Hide pv_ops access for CONFIG_PARAVIRT=n
        posix-cpu-timers: Utilize timerqueue for storage
        posix-cpu-timers: Move state tracking to struct posix_cputimers
        posix-cpu-timers: Deduplicate rlimit handling
        posix-cpu-timers: Remove pointless comparisons
        posix-cpu-timers: Get rid of 64bit divisions
        posix-cpu-timers: Consolidate timer expiry further
        posix-cpu-timers: Get rid of zero checks
        rlimit: Rewrite non-sensical RLIMIT_CPU comment
        posix-cpu-timers: Respect INFINITY for hard RTTIME limit
        posix-cpu-timers: Switch thread group sampling to array
        posix-cpu-timers: Restructure expiry array
        posix-cpu-timers: Remove cputime_expires
        ...
      7f2444d3
    • Linus Torvalds's avatar
      Merge branch 'x86-apic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · c5f12fdb
      Linus Torvalds authored
      Pull x86 apic updates from Thomas Gleixner:
      
       - Cleanup the apic IPI implementation by removing duplicated code and
         consolidating the functions into the APIC core.
      
       - Implement a safe variant of the IPI broadcast mode. Contrary to
         earlier attempts this uses the core tracking of which CPUs have been
         brought online at least once so that a broadcast does not end up in
         some dead end in BIOS/SMM code when the CPU is still waiting for
         init. Once all CPUs have been brought up once, IPI broadcasting is
         enabled. Before that regular one by one IPIs are issued.
      
       - Drop the paravirt CR8 related functions as they have no user anymore
      
       - Initialize the APIC TPR to block interrupt 16-31 as they are reserved
         for CPU exceptions and should never be raised by any well behaving
         device.
      
       - Emit a warning when vector space exhaustion breaks the admin set
         affinity of an interrupt.
      
       - Make sure to use the NMI fallback when shutdown via reboot vector IPI
         fails. The original code had conditions which prevent the code path
         to be reached.
      
       - Annotate various APIC config variables as RO after init.
      
      [ The ipi broadcase change came in earlier through the cpu hotplug
        branch, but I left the explanation in the commit message since it was
        shared between the two different branches    - Linus ]
      
      * 'x86-apic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (28 commits)
        x86/apic/vector: Warn when vector space exhaustion breaks affinity
        x86/apic: Annotate global config variables as "read-only after init"
        x86/apic/x2apic: Implement IPI shorthands support
        x86/apic/flat64: Remove the IPI shorthand decision logic
        x86/apic: Share common IPI helpers
        x86/apic: Remove the shorthand decision logic
        x86/smp: Enhance native_send_call_func_ipi()
        x86/smp: Move smp_function_call implementations into IPI code
        x86/apic: Provide and use helper for send_IPI_allbutself()
        x86/apic: Add static key to Control IPI shorthands
        x86/apic: Move no_ipi_broadcast() out of 32bit
        x86/apic: Add NMI_VECTOR wait to IPI shorthand
        x86/apic: Remove dest argument from __default_send_IPI_shortcut()
        x86/hotplug: Silence APIC and NMI when CPU is dead
        x86/cpu: Move arch_smt_update() to a neutral place
        x86/apic/uv: Make x2apic_extra_bits static
        x86/apic: Consolidate the apic local headers
        x86/apic: Move apic_flat_64 header into apic directory
        x86/apic: Move ipi header into apic directory
        x86/apic: Cleanup the include maze
        ...
      c5f12fdb
    • Linus Torvalds's avatar
      Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · a572ba63
      Linus Torvalds authored
      Pull core irq updates from Thomas Gleixner:
       "Updates from the irq departement:
      
         - Update the interrupt spreading code so it handles numa node with
           different CPU counts properly.
      
         - A large overhaul of the ARM GiCv3 driver to support new PPI and SPI
           ranges.
      
         - Conversion of all alloc_fwnode() users to use physical addresses
           instead of virtual addresses so the virtual addresses are not
           leaked. The physical address is sufficient to identify the
           associated interrupt chip.
      
         - Add support for Marvel MMP3, Amlogic Meson SM1 interrupt chips.
      
         - Enforce interrupt threading at compile time if RT is enabled.
      
         - Small updates and improvements all over the place"
      
      * 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (37 commits)
        irqchip/gic-v3-its: Fix LPI release for Multi-MSI devices
        irqchip/uniphier-aidet: Use devm_platform_ioremap_resource()
        irqdomain: Add the missing assignment of domain->fwnode for named fwnode
        irqchip/mmp: Coexist with GIC root IRQ controller
        irqchip/mmp: Mask off interrupts from other cores
        irqchip/mmp: Add missing chained_irq_{enter,exit}()
        irqchip/mmp: Do not use of_address_to_resource() to get mux regs
        irqchip/meson-gpio: Add support for meson sm1 SoCs
        dt-bindings: interrupt-controller: New binding for the meson sm1 SoCs
        genirq/affinity: Remove const qualifier from node_to_cpumask argument
        genirq/affinity: Spread vectors on node according to nr_cpu ratio
        genirq/affinity: Improve __irq_build_affinity_masks()
        irqchip: Remove dev_err() usage after platform_get_irq()
        irqchip: Add include guard to irq-partition-percpu.h
        irqchip/mmp: Do not call irq_set_default_host() on DT platforms
        irqchip/gic-v3-its: Remove the redundant set_bit for lpi_map
        irqchip/gic-v3: Add quirks for HIP06/07 invalid GICD_TYPER erratum 161010803
        irqchip/gic: Skip DT quirks when evaluating IIDR-based quirks
        irqchip/gic-v3: Warn about inconsistent implementations of extended ranges
        irqchip/gic-v3: Add EPPI range support
        ...
      a572ba63
    • Linus Torvalds's avatar
      Merge branch 'x86-irq-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 258b16ec
      Linus Torvalds authored
      Pull x86 interrupt updates from Thomas Gleixner:
       "A small set of changes to simplify and improve the interrupt handling
        in do_IRQ() by moving the common case into common code and thereby
        cleaning it up"
      
      * 'x86-irq-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/irq: Check for VECTOR_UNUSED directly
        x86/irq: Move IS_ERR_OR_NULL() check into common do_IRQ() code
        x86/irq: Improve definition of VECTOR_SHUTDOWN et al
      258b16ec
    • Linus Torvalds's avatar
      Merge branch 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 3fb7f3a6
      Linus Torvalds authored
      Pull x86 pti updates from Thomas Gleixner:
       "Two small PTI updates:
      
         - Handle unaligned addresses gracefully in pti_clone_pagetable(). Not
           an issue with current callers, but a correctness problem. Adds a
           warning so any caller which hands in an unaligned address gets
           pointed out clearly.
      
         - Prevent PTI functions from being invoked when PTI is disabled at
           boottime. While this does not cause any harm today, it's pointless
           code executed and prone to cause subtle issues if the PTI
           implementation changes internally over time"
      
      * 'x86-pti-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/mm/pti: Do not invoke PTI functions when PTI is disabled
        x86/mm/pti: Handle unaligned address gracefully in pti_clone_pagetable()
      3fb7f3a6
    • Linus Torvalds's avatar
      Merge branch 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 3cd04622
      Linus Torvalds authored
      Pull CPU hotplug updates from Thomas Gleixner:
       "A small update for the SMP hotplug code code:
      
         - Track "booted once" CPUs in a cpumask so the x86 APIC code has an
           easy way to decide whether broadcast IPIs are safe to use or not.
      
         - Implement a cpumask_or_equal() helper for the IPI broadcast
           evaluation.
      
           The above two changes have been also pulled into the x86/apic
           branch for implementing the conditional IPI broadcast feature.
      
         - Cache the number of online CPUs instead of reevaluating it over and
           over. num_online_cpus() is an unreliable snapshot anyway except
           when it is used outside a cpu hotplug locked region. The cached
           access is not changing this, but it's definitely faster than
           calculating the bitmap wheight especially in hot paths"
      
      * 'smp-hotplug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        cpu/hotplug: Cache number of online CPUs
        cpumask: Implement cpumask_or_equal()
        smp/hotplug: Track booted once CPUs in a cpumask
      3cd04622
    • Linus Torvalds's avatar
      Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 16208cd6
      Linus Torvalds authored
      Pull timer fix from Thomas Gleixner:
       "A single fix to prevent the alarm timer code from returning ENOTSUPP
        to user space.
      
        ENOTSUPP is a purely kernel internal error code related to NFSv3 and
        should never be handed back to user space. The risk for ABI breakage
        is low as the number of systems which do not have a working RTC is
        very limited"
      
      * 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        alarmtimer: Use EOPNOTSUPP instead of ENOTSUPP
      16208cd6
    • Linus Torvalds's avatar
      Merge tag 'platform-drivers-x86-v5.4-1' of git://git.infradead.org/linux-platform-drivers-x86 · ad062195
      Linus Torvalds authored
      Pull x86 platform-drivers updates from Andy Shevchenko:
      
       - ASUS WMI driver got a couple of updates, i.e. support of FAN is fixed
         for recent products and the charge threshold support has been added
      
       - Two uknown key events for Dell laptops are being ignored now to avoid
         spamming users with harmless messages
      
       - HP ZBook 17 G5 and ASUS Zenbook UX430UNR got accelerometer support.
      
       - Intel CherryTrail platforms had a regression with wake up. Now it's
         fixed
      
       - Intel PMC driver got fixed in order to work nicely in Xen
         environment
      
       - Intel Speed Select driver provides bucket vs core count relationship.
         Besides that the tools has been updated for better output
      
       - The PrivacyGuard is enabled on Lenovo ThinkPad laptops
      
       - Three tablets - Trekstor Primebook C11B 2-in-1, Irbis TW90 and Chuwi
         Surbook Mini - got touchscreen support
      
      * tag 'platform-drivers-x86-v5.4-1' of git://git.infradead.org/linux-platform-drivers-x86: (53 commits)
        MAINTAINERS: Switch PDx86 subsystem status to Odd Fixes
        platform/x86: asus-wmi: Refactor charge threshold to use the battery hooking API
        platform/x86: asus-wmi: Rename CHARGE_THRESHOLD to RSOC
        platform/x86: asus-wmi: Reorder ASUS_WMI_CHARGE_THRESHOLD
        tools/power/x86/intel-speed-select: Display core count for bucket
        platform/x86: ISST: Allow additional TRL MSRs
        tools/power/x86/intel-speed-select: Fix memory leak
        tools/power/x86/intel-speed-select: Output success/failed for command output
        tools/power/x86/intel-speed-select: Output human readable CPU list
        tools/power/x86/intel-speed-select: Change turbo ratio output to maximum turbo frequency
        tools/power/x86/intel-speed-select: Switch output to MHz
        tools/power/x86/intel-speed-select: Simplify output for turbo-freq and base-freq
        tools/power/x86/intel-speed-select: Fix cpu-count output
        tools/power/x86/intel-speed-select: Fix help option typo
        tools/power/x86/intel-speed-select: Fix package typo
        tools/power/x86/intel-speed-select: Fix a read overflow in isst_set_tdp_level_msr()
        platform/x86: intel_int0002_vgpio: Use device_init_wakeup
        platform/x86: intel_int0002_vgpio: Fix wakeups not working on Cherry Trail
        platform/x86: compal-laptop: Initialize "value" in ec_read_u8()
        platform/x86: touchscreen_dmi: Add info for the Trekstor Primebook C11B 2-in-1
        ...
      ad062195
    • Linus Torvalds's avatar
      Merge branch 'x86-vmware-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 7ac63f6b
      Linus Torvalds authored
      Pull x86 vmware updates from Ingo Molnar:
       "This updates the VMWARE guest driver with support for VMCALL/VMMCALL
        based hypercalls"
      
      * 'x86-vmware-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        input/vmmouse: Update the backdoor call with support for new instructions
        drm/vmwgfx: Update the backdoor call with support for new instructions
        x86/vmware: Add a header file for hypercall definitions
        x86/vmware: Update platform detection code for VMCALL/VMMCALL hypercalls
      7ac63f6b
    • Linus Torvalds's avatar
      Merge branch 'x86-hyperv-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · e2bddc20
      Linus Torvalds authored
      Pull x86 hyperv updates from Ingo Molnar:
       "Misc updates related to page size abstractions within the HyperV code,
        in preparation for future features"
      
      * 'x86-hyperv-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        drivers: hv: vmbus: Replace page definition with Hyper-V specific one
        x86/hyperv: Add functions to allocate/deallocate page for Hyper-V
        x86/hyperv: Create and use Hyper-V page definitions
      e2bddc20
    • Linus Torvalds's avatar
      Merge branch 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 6f246714
      Linus Torvalds authored
      Pull x86 platform update from Ingo Molnar:
       "The biggest change is the rework of the intel/iosf_mbi locking code
        which used a few non-standard locking patterns, to make it work under
        lockdep"
      
      * 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/platform/uv: Fix kmalloc() NULL check routine
        x86/platform/intel/iosf_mbi Rewrite locking
      6f246714
    • Linus Torvalds's avatar
      Merge branch 'x86-mm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · ac51667b
      Linus Torvalds authored
      Pull x86 mm updates from Ingo Molnar:
      
       - Make cpumask_of_node() more robust against invalid node IDs
      
       - Simplify and speed up load_mm_cr4()
      
       - Unexport and remove various unused set_memory_*() APIs
      
       - Misc cleanups
      
      * 'x86-mm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/mm: Fix cpumask_of_node() error condition
        x86/mm: Remove the unused set_memory_wt() function
        x86/mm: Remove set_pages_x() and set_pages_nx()
        x86/mm: Remove the unused set_memory_array_*() functions
        x86/mm: Unexport set_memory_x() and set_memory_nx()
        x86/fixmap: Cleanup outdated comments
        x86/kconfig: Remove X86_DIRECT_GBPAGES dependency on !DEBUG_PAGEALLOC
        x86/mm: Avoid redundant interrupt disable in load_mm_cr4()
      ac51667b
    • Linus Torvalds's avatar
      Merge branch 'x86-entry-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · e0d60a1e
      Linus Torvalds authored
      Pull x86 entry updates from Ingo Molnar:
       "This contains x32 and compat syscall improvements, the biggest one of
        which splits x32 syscalls into their own table, which allows new
        syscalls to share the x32 and x86-64 number - which turns the
        512-547 special syscall numbers range into a legacy wart that won't be
        extended going forward"
      
      * 'x86-entry-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/syscalls: Split the x32 syscalls into their own table
        x86/syscalls: Disallow compat entries for all types of 64-bit syscalls
        x86/syscalls: Use the compat versions of rt_sigsuspend() and rt_sigprocmask()
        x86/syscalls: Make __X32_SYSCALL_BIT be unsigned long
      e0d60a1e
    • Linus Torvalds's avatar
      Merge branch 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 22331f89
      Linus Torvalds authored
      Pull x86 cpu-feature updates from Ingo Molnar:
      
       - Rework the Intel model names symbols/macros, which were decades of
         ad-hoc extensions and added random noise. It's now a coherent, easy
         to follow nomenclature.
      
       - Add new Intel CPU model IDs:
          - "Tiger Lake" desktop and mobile models
          - "Elkhart Lake" model ID
          - and the "Lightning Mountain" variant of Airmont, plus support code
      
       - Add the new AVX512_VP2INTERSECT instruction to cpufeatures
      
       - Remove Intel MPX user-visible APIs and the self-tests, because the
         toolchain (gcc) is not supporting it going forward. This is the
         first, lowest-risk phase of MPX removal.
      
       - Remove X86_FEATURE_MFENCE_RDTSC
      
       - Various smaller cleanups and fixes
      
      * 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (25 commits)
        x86/cpu: Update init data for new Airmont CPU model
        x86/cpu: Add new Airmont variant to Intel family
        x86/cpu: Add Elkhart Lake to Intel family
        x86/cpu: Add Tiger Lake to Intel family
        x86: Correct misc typos
        x86/intel: Add common OPTDIFFs
        x86/intel: Aggregate microserver naming
        x86/intel: Aggregate big core graphics naming
        x86/intel: Aggregate big core mobile naming
        x86/intel: Aggregate big core client naming
        x86/cpufeature: Explain the macro duplication
        x86/ftrace: Remove mcount() declaration
        x86/PCI: Remove superfluous returns from void functions
        x86/msr-index: Move AMD MSRs where they belong
        x86/cpu: Use constant definitions for CPU models
        lib: Remove redundant ftrace flag removal
        x86/crash: Remove unnecessary comparison
        x86/bitops: Use __builtin_constant_p() directly instead of IS_IMMEDIATE()
        x86: Remove X86_FEATURE_MFENCE_RDTSC
        x86/mpx: Remove MPX APIs
        ...
      22331f89
    • Linus Torvalds's avatar
      Merge branch 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · fc6fd139
      Linus Torvalds authored
      Pull x86 build cleanup from Ingo Molnar:
       "A single change that removes unnecessary asm-generic wrappers"
      
      * 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/build: Remove unneeded uapi asm-generic wrappers
      fc6fd139
    • Linus Torvalds's avatar
      Merge branch 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 49a21e52
      Linus Torvalds authored
      Pull x86 boot code cleanup from Ingo Molnar:
       "Clean up the BUILD_BUG_ON() definition which can cause build warnings"
      
      * 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/boot: Use common BUILD_BUG_ON
      49a21e52
    • Linus Torvalds's avatar
      Merge branch 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · df4c0b18
      Linus Torvalds authored
      Pull x86 asm updates from Ingo Molnar:
      
       - Add UMIP emulation/spoofing for 64-bit processes as well, because of
         Wine based gaming.
      
       - Clean up symbols/labels in low level asm code
      
       - Add an assembly optimized mul_u64_u32_div() implementation on x86-64.
      
      * 'x86-asm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/umip: Add emulation (spoofing) for UMIP covered instructions in 64-bit processes as well
        x86/asm: Make some functions local labels
        x86/asm/suspend: Get rid of bogus_64_magic
        x86/math64: Provide a sane mul_u64_u32_div() implementation for x86_64
      df4c0b18
    • Linus Torvalds's avatar
      Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 7e67a859
      Linus Torvalds authored
      Pull scheduler updates from Ingo Molnar:
      
       - MAINTAINERS: Add Mark Rutland as perf submaintainer, Juri Lelli and
         Vincent Guittot as scheduler submaintainers. Add Dietmar Eggemann,
         Steven Rostedt, Ben Segall and Mel Gorman as scheduler reviewers.
      
         As perf and the scheduler is getting bigger and more complex,
         document the status quo of current responsibilities and interests,
         and spread the review pain^H^H^H^H fun via an increase in the Cc:
         linecount generated by scripts/get_maintainer.pl. :-)
      
       - Add another series of patches that brings the -rt (PREEMPT_RT) tree
         closer to mainline: split the monolithic CONFIG_PREEMPT dependencies
         into a new CONFIG_PREEMPTION category that will allow the eventual
         introduction of CONFIG_PREEMPT_RT. Still a few more hundred patches
         to go though.
      
       - Extend the CPU cgroup controller with uclamp.min and uclamp.max to
         allow the finer shaping of CPU bandwidth usage.
      
       - Micro-optimize energy-aware wake-ups from O(CPUS^2) to O(CPUS).
      
       - Improve the behavior of high CPU count, high thread count
         applications running under cpu.cfs_quota_us constraints.
      
       - Improve balancing with SCHED_IDLE (SCHED_BATCH) tasks present.
      
       - Improve CPU isolation housekeeping CPU allocation NUMA locality.
      
       - Fix deadline scheduler bandwidth calculations and logic when cpusets
         rebuilds the topology, or when it gets deadline-throttled while it's
         being offlined.
      
       - Convert the cpuset_mutex to percpu_rwsem, to allow it to be used from
         setscheduler() system calls without creating global serialization.
         Add new synchronization between cpuset topology-changing events and
         the deadline acceptance tests in setscheduler(), which were broken
         before.
      
       - Rework the active_mm state machine to be less confusing and more
         optimal.
      
       - Rework (simplify) the pick_next_task() slowpath.
      
       - Improve load-balancing on AMD EPYC systems.
      
       - ... and misc cleanups, smaller fixes and improvements - please see
         the Git log for more details.
      
      * 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (53 commits)
        sched/psi: Correct overly pessimistic size calculation
        sched/fair: Speed-up energy-aware wake-ups
        sched/uclamp: Always use 'enum uclamp_id' for clamp_id values
        sched/uclamp: Update CPU's refcount on TG's clamp changes
        sched/uclamp: Use TG's clamps to restrict TASK's clamps
        sched/uclamp: Propagate system defaults to the root group
        sched/uclamp: Propagate parent clamps
        sched/uclamp: Extend CPU's cgroup controller
        sched/topology: Improve load balancing on AMD EPYC systems
        arch, ia64: Make NUMA select SMP
        sched, perf: MAINTAINERS update, add submaintainers and reviewers
        sched/fair: Use rq_lock/unlock in online_fair_sched_group
        cpufreq: schedutil: fix equation in comment
        sched: Rework pick_next_task() slow-path
        sched: Allow put_prev_task() to drop rq->lock
        sched/fair: Expose newidle_balance()
        sched: Add task_struct pointer to sched_class::set_curr_task
        sched: Rework CPU hotplug task selection
        sched/{rt,deadline}: Fix set_next_task vs pick_next_task
        sched: Fix kerneldoc comment for ia64_set_curr_task
        ...
      7e67a859
    • Linus Torvalds's avatar
      Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 772c1d06
      Linus Torvalds authored
      Pull perf updates from Ingo Molnar:
       "Kernel side changes:
      
         - Improved kbprobes robustness
      
         - Intel PEBS support for PT hardware tracing
      
         - Other Intel PT improvements: high order pages memory footprint
           reduction and various related cleanups
      
         - Misc cleanups
      
        The perf tooling side has been very busy in this cycle, with over 300
        commits. This is an incomplete high-level summary of the many
        improvements done by over 30 developers:
      
         - Lots of updates to the following tools:
      
            'perf c2c'
            'perf config'
            'perf record'
            'perf report'
            'perf script'
            'perf test'
            'perf top'
            'perf trace'
      
         - Updates to libperf and libtraceevent, and a consolidation of the
           proliferation of x86 instruction decoder libraries.
      
         - Vendor event updates for Intel and PowerPC CPUs,
      
         - Updates to hardware tracing tooling for ARM and Intel CPUs,
      
         - ... and lots of other changes and cleanups - see the shortlog and
           Git log for details"
      
      * 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (322 commits)
        kprobes: Prohibit probing on BUG() and WARN() address
        perf/x86: Make more stuff static
        x86, perf: Fix the dependency of the x86 insn decoder selftest
        objtool: Ignore intentional differences for the x86 insn decoder
        objtool: Update sync-check.sh from perf's check-headers.sh
        perf build: Ignore intentional differences for the x86 insn decoder
        perf intel-pt: Use shared x86 insn decoder
        perf intel-pt: Remove inat.c from build dependency list
        perf: Update .gitignore file
        objtool: Move x86 insn decoder to a common location
        perf metricgroup: Support multiple events for metricgroup
        perf metricgroup: Scale the metric result
        perf pmu: Change convert_scale from static to global
        perf symbols: Move mem_info and branch_info out of symbol.h
        perf auxtrace: Uninline functions that touch perf_session
        perf tools: Remove needless evlist.h include directives
        perf tools: Remove needless evlist.h include directives
        perf tools: Remove needless thread_map.h include directives
        perf tools: Remove needless thread.h include directives
        perf tools: Remove needless map.h include directives
        ...
      772c1d06
  3. 16 Sep, 2019 5 commits
    • Linus Torvalds's avatar
      Merge branch 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · c7eba51c
      Linus Torvalds authored
      Pull locking updates from Ingo Molnar:
      
       - improve rwsem scalability
      
       - add uninitialized rwsem debugging check
      
       - reduce lockdep's stacktrace memory usage and add diagnostics
      
       - misc cleanups, code consolidation and constification
      
      * 'locking-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        mutex: Fix up mutex_waiter usage
        locking/mutex: Use mutex flags macro instead of hard code
        locking/mutex: Make __mutex_owner static to mutex.c
        locking/qspinlock,x86: Clarify virt_spin_lock_key
        locking/rwsem: Check for operations on an uninitialized rwsem
        locking/rwsem: Make handoff writer optimistically spin on owner
        locking/lockdep: Report more stack trace statistics
        locking/lockdep: Reduce space occupied by stack traces
        stacktrace: Constify 'entries' arguments
        locking/lockdep: Make it clear that what lock_class::key points at is not modified
      c7eba51c
    • Linus Torvalds's avatar
      Merge branch 'efi-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · cc9b499a
      Linus Torvalds authored
      Pull EFI updates from Ingo Molnar:
      
       - refactor the EFI config table handling across architectures
      
       - add support for the Dell EMC OEM config table
      
       - include AER diagnostic output to CPER handling of fatal PCIe errors
      
      * 'efi-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        efi: cper: print AER info of PCIe fatal error
        efi: Export Runtime Configuration Interface table to sysfs
        efi: ia64: move SAL systab handling out of generic EFI code
        efi/x86: move UV_SYSTAB handling into arch/x86
        efi: x86: move efi_is_table_address() into arch/x86
      cc9b499a
    • Linus Torvalds's avatar
      Merge branch 'core-stacktrace-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 98c82b4b
      Linus Torvalds authored
      Pull stacktrace fixlet from Ingo Molnar:
       "Two comment fixes"
      
      * 'core-stacktrace-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        lib/stackdepot: Fix outdated comments
      98c82b4b
    • Linus Torvalds's avatar
      Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 94d18ee9
      Linus Torvalds authored
      Pull RCU updates from Ingo Molnar:
       "This cycle's RCU changes were:
      
         - A few more RCU flavor consolidation cleanups.
      
         - Updates to RCU's list-traversal macros improving lockdep usability.
      
         - Forward-progress improvements for no-CBs CPUs: Avoid ignoring
           incoming callbacks during grace-period waits.
      
         - Forward-progress improvements for no-CBs CPUs: Use ->cblist
           structure to take advantage of others' grace periods.
      
         - Also added a small commit that avoids needlessly inflicting
           scheduler-clock ticks on callback-offloaded CPUs.
      
         - Forward-progress improvements for no-CBs CPUs: Reduce contention on
           ->nocb_lock guarding ->cblist.
      
         - Forward-progress improvements for no-CBs CPUs: Add ->nocb_bypass
           list to further reduce contention on ->nocb_lock guarding ->cblist.
      
         - Miscellaneous fixes.
      
         - Torture-test updates.
      
         - minor LKMM updates"
      
      * 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (86 commits)
        MAINTAINERS: Update from paulmck@linux.ibm.com to paulmck@kernel.org
        rcu: Don't include <linux/ktime.h> in rcutiny.h
        rcu: Allow rcu_do_batch() to dynamically adjust batch sizes
        rcu/nocb: Don't wake no-CBs GP kthread if timer posted under overload
        rcu/nocb: Reduce __call_rcu_nocb_wake() leaf rcu_node ->lock contention
        rcu/nocb: Reduce nocb_cb_wait() leaf rcu_node ->lock contention
        rcu/nocb: Advance CBs after merge in rcutree_migrate_callbacks()
        rcu/nocb: Avoid synchronous wakeup in __call_rcu_nocb_wake()
        rcu/nocb: Print no-CBs diagnostics when rcutorture writer unduly delayed
        rcu/nocb: EXP Check use and usefulness of ->nocb_lock_contended
        rcu/nocb: Add bypass callback queueing
        rcu/nocb: Atomic ->len field in rcu_segcblist structure
        rcu/nocb: Unconditionally advance and wake for excessive CBs
        rcu/nocb: Reduce ->nocb_lock contention with separate ->nocb_gp_lock
        rcu/nocb: Reduce contention at no-CBs invocation-done time
        rcu/nocb: Reduce contention at no-CBs registry-time CB advancement
        rcu/nocb: Round down for number of no-CBs grace-period kthreads
        rcu/nocb: Avoid ->nocb_lock capture by corresponding CPU
        rcu/nocb: Avoid needless wakeups of no-CBs grace-period kthread
        rcu/nocb: Make __call_rcu_nocb_wake() safe for many callbacks
        ...
      94d18ee9
    • Linus Torvalds's avatar
      Merge branch 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · d75a43c6
      Linus Torvalds authored
      Pull objtool build fix from Ingo Molnar:
       "Fix objtool builds with more exotic, user-defined CFLAGS"
      
      * 'core-objtool-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        objtool: Clobber user CFLAGS variable
      d75a43c6