22 Feb, 2020

4 commits

  • Uacce (Unified/User-space-access-intended Accelerator Framework) is
    a kernel module targets to provide Shared Virtual Addressing (SVA)
    between the accelerator and process.

    This patch add document to explain how it works.

    Reviewed-by: Greg Kroah-Hartman
    Reviewed-by: Jonathan Cameron
    Signed-off-by: Kenneth Lee
    Signed-off-by: Zaibo Xu
    Signed-off-by: Zhou Wang
    Signed-off-by: Zhangfei Gao
    Signed-off-by: Herbert Xu

    Kenneth Lee
     
  • According to Geert's report[0],

    kernel/padata.c: warning: 'err' may be used uninitialized in this
    function [-Wuninitialized]: => 539:2

    Warning is seen only with older compilers on certain archs. The
    runtime effect is potentially returning garbage down the stack when
    padata's cpumasks are modified before any pcrypt requests have run.

    Simplest fix is to initialize err to the success value.

    [0] http://lkml.kernel.org/r/20200210135506.11536-1-geert@linux-m68k.org

    Reported-by: Geert Uytterhoeven
    Fixes: bbefa1dd6a6d ("crypto: pcrypt - Avoid deadlock by using per-instance padata queues")
    Signed-off-by: Daniel Jordan
    Cc: Herbert Xu
    Cc: Steffen Klassert
    Cc: linux-crypto@vger.kernel.org
    Cc: linux-kernel@vger.kernel.org
    Signed-off-by: Herbert Xu

    Daniel Jordan
     
  • The imx-rngc driver binds to devices that are compatible to
    "fsl,imx25-rngb". Grepping through the device tree sources suggests this
    only exists on i.MX25. So restrict dependencies to configs that have
    this SoC enabled, but allow compile testing. For the latter additional
    dependencies for clk and readl/writel are necessary.

    Signed-off-by: Uwe Kleine-König
    Signed-off-by: Herbert Xu

    Uwe Kleine-König
     
  • chtls_uld_add allocates room for info->nports net_device structs
    following the chtls_dev struct, presumably because it was originally
    intended that the ports array would be stored there. This is suggested
    by the assignment which was present in initial versions and removed by
    c4e848586cf1 ("crypto: chelsio - remove redundant assignment to
    cdev->ports"):

    cdev->ports = (struct net_device **)(cdev + 1);

    This assignment was never used, being overwritten by lldi->ports
    immediately afterwards, and I couldn't find any uses of the memory
    allocated past the end of the struct.

    Signed-off-by: Stephen Kitt
    Signed-off-by: Herbert Xu

    Stephen Kitt
     

13 Feb, 2020

23 commits

  • QCE hangs when presented with an AES-XTS request whose length is larger
    than QCE_SECTOR_SIZE (512-bytes), and is not a multiple of it. Let the
    fallback cipher handle them.

    Signed-off-by: Eneas U de Queiroz
    Signed-off-by: Herbert Xu

    Eneas U de Queiroz
     
  • Process small blocks using the fallback cipher, as a workaround for an
    observed failure (DMA-related, apparently) when computing the GCM ghash
    key. This brings a speed gain as well, since it avoids the latency of
    using the hardware engine to process small blocks.

    Using software for all 16-byte requests would be enough to make GCM
    work, but to increase performance, a larger threshold would be better.
    Measuring the performance of supported ciphers with openssl speed,
    software matches hardware at around 768-1024 bytes.

    Considering the 256-bit ciphers, software is 2-3 times faster than qce
    at 256-bytes, 30% faster at 512, and about even at 768-bytes. With
    128-bit keys, the break-even point would be around 1024-bytes.

    This adds the 'aes_sw_max_len' parameter, to set the largest request
    length processed by the software fallback. Its default is being set to
    512 bytes, a little lower than the break-even point, to balance the cost
    in CPU usage.

    Signed-off-by: Eneas U de Queiroz
    Signed-off-by: Herbert Xu

    Eneas U de Queiroz
     
  • The qce crypto driver appends an extra entry to the dst sgl, to maintain
    private state information.

    When the gcm driver sends requests to the ctr skcipher, it passes the
    authentication tag after the actual crypto payload, but it must not be
    touched.

    Commit 1336c2221bee ("crypto: qce - save a sg table slot for result
    buf") limited the destination sgl to avoid overwriting the
    authentication tag but it assumed the tag would be in a separate sgl
    entry.

    This is not always the case, so it is better to limit the length of the
    destination buffer to req->cryptlen before appending the result buf.

    Signed-off-by: Eneas U de Queiroz
    Signed-off-by: Herbert Xu

    Eneas U de Queiroz
     
  • Function dev_err() after platform_get_irq() is redundant because
    platform_get_irq() already prints an error.

    Signed-off-by: Chen Zhou
    Signed-off-by: Herbert Xu

    Chen Zhou
     
  • No logs are recorded in dmesg during chcr module load, hence
    adding the print and also appending -ko to driver version.

    Signed-off-by: Devulapally Shiva Krishna
    Signed-off-by: Herbert Xu

    Devulapally Shiva Krishna
     
  • When running tcrypt skcipher speed tests, logs contain things like:
    testing speed of async ecb(des3_ede) (ecb(des3_ede-generic)) encryption
    or:
    testing speed of async ecb(aes) (ecb(aes-ce)) encryption

    The algorithm implementations are sync, not async.
    Fix this inaccuracy.

    Fixes: 7166e589da5b6 ("crypto: tcrypt - Use skcipher")
    Signed-off-by: Horia Geantă
    Signed-off-by: Herbert Xu

    Horia Geantă
     
  • The path with the CRYPTO_ALG_LARVAL flag has jumped to the end before

    Signed-off-by: Tianjia Zhang
    Signed-off-by: Herbert Xu

    Tianjia Zhang
     
  • The libkcapi test which causes kernel panic is
    aead asynchronous vmsplice multiple test.

    ./bin/kcapi -v -d 4 -x 10 -c "ccm(aes)"
    -q 4edb58e8d5eb6bc711c43a6f3693daebde2e5524f1b55297abb29f003236e43d
    -t a7877c99 -n 674742abd0f5ba -k 2861fd0253705d7875c95ba8a53171b4
    -a fb7bc304a3909e66e2e0c5ef952712dd884ce3e7324171369f2c5db1adc48c7d

    This patch avoids dma_mapping of a zero length sg which causes the panic,
    by using sg_nents_for_len which maps only upto a specific length

    Signed-off-by: Ayush Sawal
    Signed-off-by: Herbert Xu

    Ayush Sawal
     
  • The libkcapi "cbc(aes)" failed tests are
    symmetric asynchronous cipher one shot multiple test,
    symmetric asynchronous cipher stream multiple test,
    Symmetric asynchronous cipher vmsplice multiple test

    In this patch a wait_for_completion is added in the chcr_aes_encrypt function,
    which completes when the response of comes from the hardware.
    This adds serialization for encryption in cbc(aes) aio case.

    Signed-off-by: Ayush Sawal
    Signed-off-by: Herbert Xu

    Ayush Sawal
     
  • Add arch/arm64/crypto/poly1305-core.S to .gitignore
    as it's built from poly1305-core.S_shipped

    Fixes: f569ca164751 ("crypto: arm64/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementation")
    Signed-off-by: Matteo Croce
    Signed-off-by: Herbert Xu

    Matteo Croce
     
  • Fixes gcc '-Wunused-but-set-variable' warning:

    drivers/crypto/ccree/cc_cipher.c: In function 'cc_setup_state_desc':
    drivers/crypto/ccree/cc_cipher.c:536:15: warning:
    variable 'du_size' set but not used [-Wunused-but-set-variable]

    commit 5c83e8ec4d51 ("crypto: ccree - fix FDE descriptor sequence")
    involved this unused variable, so remove it.

    Reported-by: Hulk Robot
    Signed-off-by: YueHaibing
    Signed-off-by: Herbert Xu

    YueHaibing
     
  • Remove the auth tag size from cryptlen before mapping the destination
    in out-of-place AEAD decryption thus resolving a crash with
    extended testmgr tests.

    Signed-off-by: Gilad Ben-Yossef
    Reported-by: Geert Uytterhoeven
    Cc: stable@vger.kernel.org # v4.19+
    Tested-by: Geert Uytterhoeven
    Signed-off-by: Herbert Xu

    Gilad Ben-Yossef
     
  • Add reference counter incremented for each frame enqueued in CAAM
    and replace unconditional sleep in empty_caam_fq() with polling the
    reference counter.

    When CONFIG_CRYPTO_MANAGER_EXTRA_TESTS=y boot time on LS1043A
    platform with this optimization decreases from ~1100s to ~11s.

    Signed-off-by: Valentin Ciocoi Radulescu
    Reviewed-by: Horia Geantă
    Signed-off-by: Herbert Xu

    Valentin Ciocoi Radulescu
     
  • Fix an error causing no block sizes to be reported during
    all AEAD registrations.

    Signed-off-by: Gilad Ben-Yossef
    Tested-by: Geert Uytterhoeven
    Signed-off-by: Herbert Xu

    Gilad Ben-Yossef
     
  • OFB and CTR modes block sizes were wrongfully reported as
    the underlying block sizes. Fix it to 1 bytes as they
    turn the block ciphers into stream ciphers.

    Also document why our XTS differes from the generic
    implementation.

    Signed-off-by: Gilad Ben-Yossef
    Signed-off-by: Herbert Xu

    Gilad Ben-Yossef
     
  • Make sure to only add the size of the auth tag to the source mapping
    for encryption if it is an in-place operation. Failing to do this
    previously caused us to try and map auth size len bytes from a NULL
    mapping and crashing if both the cryptlen and assoclen are zero.

    Reported-by: Geert Uytterhoeven
    Tested-by: Geert Uytterhoeven
    Signed-off-by: Gilad Ben-Yossef
    Cc: stable@vger.kernel.org # v4.19+
    Signed-off-by: Herbert Xu

    Gilad Ben-Yossef
     
  • Deal gracefully with a NULL or empty scatterlist which can happen
    if both cryptlen and assoclen are zero and we're doing in-place
    AEAD encryption.

    This fixes a crash when this causes us to try and map a NULL page,
    at least with some platforms / DMA mapping configs.

    Cc: stable@vger.kernel.org # v4.19+
    Reported-by: Geert Uytterhoeven
    Tested-by: Geert Uytterhoeven
    Signed-off-by: Gilad Ben-Yossef
    Signed-off-by: Herbert Xu

    Gilad Ben-Yossef
     
  • This comes from INRIA's HACL*/Vale. It implements the same algorithm and
    implementation strategy as the code it replaces, only this code has been
    formally verified, sans the base point multiplication, which uses code
    similar to prior, only it uses the formally verified field arithmetic
    alongside reproducable ladder generation steps. This doesn't have a
    pure-bmi2 version, which means haswell no longer benefits, but the
    increased (doubled) code complexity is not worth it for a single
    generation of chips that's already old.

    Performance-wise, this is around 1% slower on older microarchitectures,
    and slightly faster on newer microarchitectures, mainly 10nm ones or
    backports of 10nm to 14nm. This implementation is "everest" below:

    Xeon E5-2680 v4 (Broadwell)

    armfazh: 133340 cycles per call
    everest: 133436 cycles per call

    Xeon Gold 5120 (Sky Lake Server)

    armfazh: 112636 cycles per call
    everest: 113906 cycles per call

    Core i5-6300U (Sky Lake Client)

    armfazh: 116810 cycles per call
    everest: 117916 cycles per call

    Core i7-7600U (Kaby Lake)

    armfazh: 119523 cycles per call
    everest: 119040 cycles per call

    Core i7-8750H (Coffee Lake)

    armfazh: 113914 cycles per call
    everest: 113650 cycles per call

    Core i9-9880H (Coffee Lake Refresh)

    armfazh: 112616 cycles per call
    everest: 114082 cycles per call

    Core i3-8121U (Cannon Lake)

    armfazh: 113202 cycles per call
    everest: 111382 cycles per call

    Core i7-8265U (Whiskey Lake)

    armfazh: 127307 cycles per call
    everest: 127697 cycles per call

    Core i7-8550U (Kaby Lake Refresh)

    armfazh: 127522 cycles per call
    everest: 127083 cycles per call

    Xeon Platinum 8275CL (Cascade Lake)

    armfazh: 114380 cycles per call
    everest: 114656 cycles per call

    Achieving these kind of results with formally verified code is quite
    remarkable, especialy considering that performance is favorable for
    newer chips.

    Signed-off-by: Jason A. Donenfeld
    Signed-off-by: Herbert Xu

    Jason A. Donenfeld
     
  • We need to decrement this refcounter on these error paths.

    Fixes: f7d76e05d058 ("crypto: user - fix use_after_free of struct xxx_request")
    Cc:
    Signed-off-by: Dan Carpenter
    Acked-by: Neil Horman
    Signed-off-by: Herbert Xu

    Dan Carpenter
     
  • If all possible errors occurs at the same time, the error_status will be
    all 1s. The doorbell timeout error and FIFO overflow error will be print
    in each cycle, which should be print just once.

    Signed-off-by: Shukun Tan
    Reviewed-by: Zhou Wang
    Signed-off-by: Herbert Xu

    Shukun Tan
     
  • In error detect process, a lot of duplicate code can put into qm. We add
    two callback(get_dev_hw_err_status and log_dev_hw_err) into struct
    hisi_qm_err_ini to handle device error detect, meanwhile the qm error
    detect not changed.

    Signed-off-by: Shukun Tan
    Signed-off-by: Zaibo Xu
    Reviewed-by: Zhou Wang
    Signed-off-by: Herbert Xu

    Shukun Tan
     
  • Configure zip RAS error type in error handle initialization,
    Where ECC 1bit is configured as CE error, others are NFE.

    Signed-off-by: Shukun Tan
    Reviewed-by: Zhou Wang
    Signed-off-by: Herbert Xu

    Shukun Tan
     
  • The initialization and uninitialization of zip/hpre/sec/qm hardware error
    is processed in respective drivers, which could be unified into qm.c. We
    add struct hisi_qm_err_ini into struct hisi_qm, which involve all error
    handlers of device and assignment should be done in driver probe.

    Signed-off-by: Shukun Tan
    Signed-off-by: Zaibo Xu
    Reviewed-by: Zhou Wang
    Signed-off-by: Herbert Xu

    Shukun Tan
     

10 Feb, 2020

12 commits

  • Linus Torvalds
     
  • Pull more Kbuild updates from Masahiro Yamada:

    - fix randconfig to generate a sane .config

    - rename hostprogs-y / always to hostprogs / always-y, which are more
    natual syntax.

    - optimize scripts/kallsyms

    - fix yes2modconfig and mod2yesconfig

    - make multiple directory targets ('make foo/ bar/') work

    * tag 'kbuild-v5.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
    kbuild: make multiple directory targets work
    kconfig: Invalidate all symbols after changing to y or m.
    kallsyms: fix type of kallsyms_token_table[]
    scripts/kallsyms: change table to store (strcut sym_entry *)
    scripts/kallsyms: rename local variables in read_symbol()
    kbuild: rename hostprogs-y/always to hostprogs/always-y
    kbuild: fix the document to use extra-y for vmlinux.lds
    kconfig: fix broken dependency in randconfig-generated .config

    Linus Torvalds
     
  • Pull new zonefs file system from Damien Le Moal:
    "Zonefs is a very simple file system exposing each zone of a zoned
    block device as a file.

    Unlike a regular file system with native zoned block device support
    (e.g. f2fs or the on-going btrfs effort), zonefs does not hide the
    sequential write constraint of zoned block devices to the user. As a
    result, zonefs is not a POSIX compliant file system. Its goal is to
    simplify the implementation of zoned block devices support in
    applications by replacing raw block device file accesses with a richer
    file based API, avoiding relying on direct block device file ioctls
    which may be more obscure to developers.

    One example of this approach is the implementation of LSM
    (log-structured merge) tree structures (such as used in RocksDB and
    LevelDB) on zoned block devices by allowing SSTables to be stored in a
    zone file similarly to a regular file system rather than as a range of
    sectors of a zoned device. The introduction of the higher level
    construct "one file is one zone" can help reducing the amount of
    changes needed in the application while at the same time allowing the
    use of zoned block devices with various programming languages other
    than C.

    Zonefs IO management implementation uses the new iomap generic code.
    Zonefs has been successfully tested using a functional test suite
    (available with zonefs userland format tool on github) and a prototype
    implementation of LevelDB on top of zonefs"

    * tag 'zonefs-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
    zonefs: Add documentation
    fs: New zonefs file system

    Linus Torvalds
     
  • In order to allow the GICv4 code to link properly on 32bit ARM,
    make sure we don't use 64bit divisions when it isn't strictly
    necessary.

    Fixes: 4e6437f12d6e ("irqchip/gic-v4.1: Ensure L2 vPE table is allocated at RD level")
    Reported-by: Stephen Rothwell
    Cc: Zenghui Yu
    Signed-off-by: Marc Zyngier
    Signed-off-by: Linus Torvalds

    Marc Zyngier
     
  • Pull cifs fixes from Steve French:
    "13 cifs/smb3 patches, most from testing at the SMB3 plugfest this week:

    - Important fix for multichannel and for modefromsid mounts.

    - Two reconnect fixes

    - Addition of SMB3 change notify support

    - Backup tools fix

    - A few additional minor debug improvements (tracepoints and
    additional logging found useful during testing this week)"

    * tag '5.6-rc-smb3-plugfest-patches' of git://git.samba.org/sfrench/cifs-2.6:
    smb3: Add defines for new information level, FileIdInformation
    smb3: print warning once if posix context returned on open
    smb3: add one more dynamic tracepoint missing from strict fsync path
    cifs: fix mode bits from dir listing when mounted with modefromsid
    cifs: fix channel signing
    cifs: add SMB3 change notification support
    cifs: make multichannel warning more visible
    cifs: fix soft mounts hanging in the reconnect code
    cifs: Add tracepoints for errors on flush or fsync
    cifs: log warning message (once) if out of disk space
    cifs: fail i/o on soft mounts if sessionsetup errors out
    smb3: fix problem with null cifs super block with previous patch
    SMB3: Backup intent flag missing from some more ops

    Linus Torvalds
     
  • Pull vboxfs from Al Viro:
    "This is the VirtualBox guest shared folder support by Hans de Goede,
    with fixups for fs_parse folded in to avoid bisection hazards from
    those API changes..."

    * 'work.vboxsf' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
    fs: Add VirtualBox guest shared folder (vboxsf) support

    Linus Torvalds
     
  • Pull x86 fixes from Thomas Gleixner:
    "A set of fixes for X86:

    - Ensure that the PIT is set up when the local APIC is disable or
    configured in legacy mode. This is caused by an ordering issue
    introduced in the recent changes which skip PIT initialization when
    the TSC and APIC frequencies are already known.

    - Handle malformed SRAT tables during early ACPI parsing which caused
    an infinite loop anda boot hang.

    - Fix a long standing race in the affinity setting code which affects
    PCI devices with non-maskable MSI interrupts. The problem is caused
    by the non-atomic writes of the MSI address (destination APIC id)
    and data (vector) fields which the device uses to construct the MSI
    message. The non-atomic writes are mandated by PCI.

    If both fields change and the device raises an interrupt after
    writing address and before writing data, then the MSI block
    constructs a inconsistent message which causes interrupts to be
    lost and subsequent malfunction of the device.

    The fix is to redirect the interrupt to the new vector on the
    current CPU first and then switch it over to the new target CPU.
    This allows to observe an eventually raised interrupt in the
    transitional stage (old CPU, new vector) to be observed in the APIC
    IRR and retriggered on the new target CPU and the new vector.

    The potential spurious interrupts caused by this are harmless and
    can in the worst case expose a buggy driver (all handlers have to
    be able to deal with spurious interrupts as they can and do happen
    for various reasons).

    - Add the missing suspend/resume mechanism for the HYPERV hypercall
    page which prevents resume hibernation on HYPERV guests. This
    change got lost before the merge window.

    - Mask the IOAPIC before disabling the local APIC to prevent
    potentially stale IOAPIC remote IRR bits which cause stale
    interrupt lines after resume"

    * tag 'x86-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    x86/apic: Mask IOAPIC entries when disabling the local APIC
    x86/hyperv: Suspend/resume the hypercall page for hibernation
    x86/apic/msi: Plug non-maskable MSI affinity race
    x86/boot: Handle malformed SRAT tables during early ACPI parsing
    x86/timer: Don't skip PIT setup when APIC is disabled or in legacy mode

    Linus Torvalds
     
  • Pull SMP fixes from Thomas Gleixner:
    "Two fixes for the SMP related functionality:

    - Make the UP version of smp_call_function_single() match SMP
    semantics when called for a not available CPU. Instead of emitting
    a warning and assuming that the function call target is CPU0,
    return a proper error code like the SMP version does.

    - Remove a superfluous check in smp_call_function_many_cond()"

    * tag 'smp-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    smp/up: Make smp_call_function_single() match SMP semantics
    smp: Remove superfluous cond_func check in smp_call_function_many_cond()

    Linus Torvalds
     
  • Pull perf fixes from Thomas Gleixner:
    "A set of fixes and improvements for the perf subsystem:

    Kernel fixes:

    - Install cgroup events to the correct CPU context to prevent a
    potential list double add

    - Prevent an integer underflow in the perf mlock accounting

    - Add a missing prototype for arch_perf_update_userpage()

    Tooling:

    - Add a missing unlock in the error path of maps__insert() in perf
    maps.

    - Fix the build with the latest libbfd

    - Fix the perf parser so it does not delete parse event terms, which
    caused a regression for using perf with the ARM CoreSight as the
    sink configuration was missing due to the deletion.

    - Fix the double free in the perf CPU map merging test case

    - Add the missing ustring support for the perf probe command"

    * tag 'perf-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    perf maps: Add missing unlock to maps__insert() error case
    perf probe: Add ustring support for perf probe command
    perf: Make perf able to build with latest libbfd
    perf test: Fix test case Merge cpu map
    perf parse: Copy string to perf_evsel_config_term
    perf parse: Refactor 'struct perf_evsel_config_term'
    kernel/events: Add a missing prototype for arch_perf_update_userpage()
    perf/cgroups: Install cgroup events to correct cpuctx
    perf/core: Fix mlock accounting in perf_mmap()

    Linus Torvalds
     
  • Pull timer fixes from Thomas Gleixner:
    "Two small fixes for the time(r) subsystem:

    - Handle a subtle race between the clocksource watchdog and a
    concurrent clocksource watchdog stop/start sequence correctly to
    prevent a timer double add bug.

    - Fix the file path for the core time namespace file"

    * tag 'timers-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    clocksource: Prevent double add_timer_on() for watchdog_timer
    MAINTAINERS: Correct path to time namespace source file

    Linus Torvalds
     
  • Pull interrupt fixes from Thomas Gleixner:
    "A set of fixes for the interrupt subsystem:

    - Provision only ACPI enabled redistributors on GICv3

    - Use the proper command colums when building the INVALL command for
    the GICv3-ITS

    - Ensure the allocation of the L2 vPE table for GICv4.1

    - Correct the GICv4.1 VPROBASER programming so it uses the proper
    size

    - A set of small GICv4.1 tidy up patches

    - Configuration cleanup for C-SKY interrupt chip

    - Clarify the function documentation for irq_set_wake() to document
    that the wakeup functionality is orthogonal to the irq
    disable/enable mechanism"

    * tag 'irq-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    irqchip/gic-v3-its: Rename VPENDBASER/VPROPBASER accessors
    irqchip/gic-v3-its: Remove superfluous WARN_ON
    irqchip/gic-v4.1: Drop 'tmp' in inherit_vpe_l1_table_from_rd()
    irqchip/gic-v4.1: Ensure L2 vPE table is allocated at RD level
    irqchip/gic-v4.1: Set vpe_l1_base for all redistributors
    irqchip/gic-v4.1: Fix programming of GICR_VPROPBASER_4_1_SIZE
    genirq: Clarify that irq wake state is orthogonal to enable/disable
    irqchip/gic-v3-its: Reference to its_invall_cmd descriptor when building INVALL
    irqchip: Some Kconfig cleanup for C-SKY
    irqchip/gic-v3: Only provision redistributors that are enabled in ACPI

    Linus Torvalds
     
  • Pull EFI fix from Thomas Gleixner:
    "A single fix for a EFI boot regression on X86 which was caused by the
    recent rework of the EFI memory map parsing. On systems with invalid
    memmap entries the cleanup function uses an value which cannot be
    relied on in this stage. Use the actual EFI memmap entry instead"

    * tag 'efi-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
    efi/x86: Fix boot regression on systems with invalid memmap entries

    Linus Torvalds
     

09 Feb, 2020

1 commit

  • Pull misc SCSI fixes from James Bottomley:
    "Five small patches, all in drivers or doc, which missed the initial
    pull request.

    The qla2xxx and megaraid_sas are actual fixes and the rest are
    spelling and doc changes"

    * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
    scsi: ufs: fix spelling mistake "initilized" -> "initialized"
    scsi: pm80xx: fix spelling mistake "to" -> "too"
    scsi: MAINTAINERS: ufs: remove pedrom.sousa@synopsys.com
    scsi: megaraid_sas: fixup MSIx interrupt setup during resume
    scsi: qla2xxx: Fix unbound NVME response length

    Linus Torvalds