Skip to content
  1. Sep 22, 2019
  2. Sep 21, 2019
  3. Sep 20, 2019
  4. Sep 19, 2019
    • Oliver Neukum's avatar
      usbnet: sanity checking of packet sizes and device mtu · 280ceaed
      Oliver Neukum authored
      
      
      After a reset packet sizes and device mtu can change and need
      to be reevaluated to calculate queue sizes.
      Malicious devices can set this to zero and we divide by it.
      Introduce sanity checking.
      
      Reported-and-tested-by: default avatar <syzbot+6102c120be558c885f04@syzkaller.appspotmail.com>
      Signed-off-by: default avatarOliver Neukum <oneukum@suse.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      280ceaed
    • Linus Torvalds's avatar
      Merge tag 'xfs-5.4-merge-7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · b41dae06
      Linus Torvalds authored
      Pull xfs updates from Darrick Wong:
       "For this cycle we have the usual pile of cleanups and bug fixes, some
        performance improvements for online metadata scrubbing, massive
        speedups in the directory entry creation code, some performance
        improvement in the file ACL lookup code, a fix for a logging stall
        during mount, and fixes for concurrency problems.
      
        It has survived a couple of weeks of xfstests runs and merges cleanly.
      
        Summary:
      
         - Remove KM_SLEEP/KM_NOSLEEP.
      
         - Ensure that memory buffers for IO are properly sector-aligned to
           avoid problems that the block layer doesn't check.
      
         - Make the bmap scrubber more efficient in its record checking.
      
         - Don't crash xfs_db when superblock inode geometry is corrupt.
      
         - Fix btree key helper functions.
      
         - Remove unneeded error returns for things that can't fail.
      
         - Fix buffer logging bugs in repair.
      
         - Clean up iterator return values.
      
         - Speed up directory entry creation.
      
         - Enable allocation of xattr value memory buffer during lookup.
      
         - Fix readahead racing with truncate/punch hole.
      
         - Other minor cleanups.
      
         - Fix one AGI/AGF deadlock with RENAME_WHITEOUT.
      
         - More BUG -> WARN whackamole.
      
         - Fix various problems with the log failing to advance under certain
           circumstances, which results in stalls during mount"
      
      * tag 'xfs-5.4-merge-7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux: (45 commits)
        xfs: push the grant head when the log head moves forward
        xfs: push iclog state cleaning into xlog_state_clean_log
        xfs: factor iclog state processing out of xlog_state_do_callback()
        xfs: factor callbacks out of xlog_state_do_callback()
        xfs: factor debug code out of xlog_state_do_callback()
        xfs: prevent CIL push holdoff in log recovery
        xfs: fix missed wakeup on l_flush_wait
        xfs: push the AIL in xlog_grant_head_wake
        xfs: Use WARN_ON_ONCE for bailout mount-operation
        xfs: Fix deadlock between AGI and AGF with RENAME_WHITEOUT
        xfs: define a flags field for the AG geometry ioctl structure
        xfs: add a xfs_valid_startblock helper
        xfs: remove the unused XFS_ALLOC_USERDATA flag
        xfs: cleanup xfs_fsb_to_db
        xfs: fix the dax supported check in xfs_ioctl_setattr_dax_invalidate
        xfs: Fix stale data exposure when readahead races with hole punch
        fs: Export generic_fadvise()
        mm: Handle MADV_WILLNEED through vfs_fadvise()
        xfs: allocate xattr buffer on demand
        xfs: consolidate attribute value copying
        ...
      b41dae06
    • Linus Torvalds's avatar
      Merge tag 'vfs-5.4-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · e6bc9de7
      Linus Torvalds authored
      Pull swap access updates from Darrick Wong:
       "Prohibit writing to active swap files and swap partitions.
      
        There's no non-malicious use case for allowing userspace to scribble
        on storage that the kernel thinks it owns"
      
      * tag 'vfs-5.4-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        vfs: don't allow writes to swap files
        mm: set S_SWAPFILE on blockdev swap devices
      e6bc9de7
    • Linus Torvalds's avatar
      Merge tag 'ovl-fixes-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs · b6c0d357
      Linus Torvalds authored
      Pull overlayfs fixes from Miklos Szeredi:
       "Fix a regression in docker introduced by overlayfs changes in 4.19.
        Also fix a couple of miscellaneous bugs"
      
      * tag 'ovl-fixes-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs:
        ovl: filter of trusted xattr results in audit
        ovl: Fix dereferencing possible ERR_PTR()
        ovl: fix regression caused by overlapping layers detection
      b6c0d357
    • Linus Torvalds's avatar
      Merge tag 'for-5.4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux · 7d14df2d
      Linus Torvalds authored
      Pull btrfs updates from David Sterba:
       "This continues with work on code refactoring, sanity checks and space
        handling. There are some less user visible changes, nothing that would
        particularly stand out.
      
        User visible changes:
         - tree checker, more sanity checks of:
             - ROOT_ITEM (key, size, generation, level, alignment, flags)
             - EXTENT_ITEM and METADATA_ITEM checks (key, size, offset,
               alignment, refs)
             - tree block reference items
             - EXTENT_DATA_REF (key, hash, offset)
      
         - deprecate flag BTRFS_SUBVOL_CREATE_ASYNC for subvolume creation
           ioctl, scheduled removal in 5.7
      
         - delete stale and unused UAPI definitions
           BTRFS_DEV_REPLACE_ITEM_STATE_*
      
         - improved export of debugging information available via existing
           sysfs directory structure
      
         - try harder to delete relations between qgroups and allow to delete
           orphan entries
      
         - remove unreliable space checks before relocation starts
      
        Core:
         - space handling:
             - improved ticket reservations and other high level logic in
               order to remove special cases
             - factor flushing infrastructure and use it for different
               contexts, allows to remove some special case handling
             - reduce metadata reservation when only updating inodes
             - reduce global block reserve minimum size (affects small
               filesystems)
             - improved overcommit logic wrt global block reserve
      
         - tests:
             - fix memory leaks in extent IO tree
             - catch all TRIM range
      
        Fixes:
         - fix ENOSPC errors, leading to transaction aborts, when cloning
           extents
      
         - several fixes for inode number cache (mount option inode_cache)
      
         - fix potential soft lockups during send when traversing large trees
      
         - fix unaligned access to space cache pages with SLUB debug on
           (PowerPC)
      
        Other:
         - refactoring public/private functions, moving to new or more
           appropriate files
      
         - defines converted to enums
      
         - error handling improvements
      
         - more assertions and comments
      
         - old code deletion"
      
      * tag 'for-5.4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux: (138 commits)
        btrfs: Relinquish CPUs in btrfs_compare_trees
        btrfs: Don't assign retval of btrfs_try_tree_write_lock/btrfs_tree_read_lock_atomic
        btrfs: create structure to encode checksum type and length
        btrfs: turn checksum type define into an enum
        btrfs: add enospc debug messages for ticket failure
        btrfs: do not account global reserve in can_overcommit
        btrfs: use btrfs_try_granting_tickets in update_global_rsv
        btrfs: always reserve our entire size for the global reserve
        btrfs: change the minimum global reserve size
        btrfs: rename btrfs_space_info_add_old_bytes
        btrfs: remove orig_bytes from reserve_ticket
        btrfs: fix may_commit_transaction to deal with no partial filling
        btrfs: rework wake_all_tickets
        btrfs: refactor the ticket wakeup code
        btrfs: stop partially refilling tickets when releasing space
        btrfs: add space reservation tracepoint for reserved bytes
        btrfs: roll tracepoint into btrfs_space_info_update helper
        btrfs: do not allow reservations if we have pending tickets
        btrfs: stop clearing EXTENT_DIRTY in inode I/O tree
        btrfs: treat RWF_{,D}SYNC writes as sync for CRCs
        ...
      7d14df2d
    • Linus Torvalds's avatar
      Merge tag 'afs-next-20190915' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs · 0bb73e42
      Linus Torvalds authored
      Pull AFS updates from David Howells:
       "Here's a set of patches for AFS. The first three are trivial, deleting
        unused symbols and rolling out a wrapper function.
      
        The fourth and fifth patches make use of the previously added RCU-safe
        request_key facility to allow afs_permission() and afs_d_revalidate()
        to attempt to operate without dropping out of RCU-mode pathwalk. Under
        certain conditions, such as conflict with another client, we still
        have to drop out anyway, take a lock and consult the server"
      
      * tag 'afs-next-20190915' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs:
        afs: Support RCU pathwalk
        afs: Provide an RCU-capable key lookup
        afs: Use afs_extract_discard() rather than iov_iter_discard()
        afs: remove unused variable 'afs_zero_fid'
        afs: remove unused variable 'afs_voltypes'
      0bb73e42
    • Linus Torvalds's avatar
      Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt · f60c55a9
      Linus Torvalds authored
      Pull fs-verity support from Eric Biggers:
       "fs-verity is a filesystem feature that provides Merkle tree based
        hashing (similar to dm-verity) for individual readonly files, mainly
        for the purpose of efficient authenticity verification.
      
        This pull request includes:
      
         (a) The fs/verity/ support layer and documentation.
      
         (b) fs-verity support for ext4 and f2fs.
      
        Compared to the original fs-verity patchset from last year, the UAPI
        to enable fs-verity on a file has been greatly simplified. Lots of
        other things were cleaned up too.
      
        fs-verity is planned to be used by two different projects on Android;
        most of the userspace code is in place already. Another userspace tool
        ("fsverity-utils"), and xfstests, are also available. e2fsprogs and
        f2fs-tools already have fs-verity support. Other people have shown
        interest in using fs-verity too.
      
        I've tested this on ext4 and f2fs with xfstests, both the existing
        tests and the new fs-verity tests. This has also been in linux-next
        since July 30 with no reported issues except a couple minor ones I
        found myself and folded in fixes for.
      
        Ted and I will be co-maintaining fs-verity"
      
      * tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt:
        f2fs: add fs-verity support
        ext4: update on-disk format documentation for fs-verity
        ext4: add fs-verity read support
        ext4: add basic fs-verity support
        fs-verity: support builtin file signatures
        fs-verity: add SHA-512 support
        fs-verity: implement FS_IOC_MEASURE_VERITY ioctl
        fs-verity: implement FS_IOC_ENABLE_VERITY ioctl
        fs-verity: add data verification hooks for ->readpages()
        fs-verity: add the hook for file ->setattr()
        fs-verity: add the hook for file ->open()
        fs-verity: add inode and superblock fields
        fs-verity: add Kconfig and the helper functions for hashing
        fs: uapi: define verity bit for FS_IOC_GETFLAGS
        fs-verity: add UAPI header
        fs-verity: add MAINTAINERS file entry
        fs-verity: add a documentation file
      f60c55a9
    • Linus Torvalds's avatar
      Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt · 734d1ed8
      Linus Torvalds authored
      Pull fscrypt updates from Eric Biggers:
       "This is a large update to fs/crypto/ which includes:
      
         - Add ioctls that add/remove encryption keys to/from a
           filesystem-level keyring.
      
           These fix user-reported issues where e.g. an encrypted home
           directory can break NetworkManager, sshd, Docker, etc. because they
           don't get access to the needed keyring. These ioctls also provide a
           way to lock encrypted directories that doesn't use the
           vm.drop_caches sysctl, so is faster, more reliable, and doesn't
           always need root.
      
         - Add a new encryption policy version ("v2") which switches to a more
           standard, secure, and flexible key derivation function, and starts
           verifying that the correct key was supplied before using it.
      
           The key derivation improvement is needed for its own sake as well
           as for ongoing feature work for which the current way is too
           inflexible.
      
        Work is in progress to update both Android and the 'fscrypt' userspace
        tool to use both these features. (Working patches are available and
        just need to be reviewed+merged.) Chrome OS will likely use them too.
      
        This has also been tested on ext4, f2fs, and ubifs with xfstests --
        both the existing encryption tests, and the new tests for this. This
        has also been in linux-next since Aug 16 with no reported issues. I'm
        also using an fscrypt v2-encrypted home directory on my personal
        desktop"
      
      * tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt: (27 commits)
        ext4 crypto: fix to check feature status before get policy
        fscrypt: document the new ioctls and policy version
        ubifs: wire up new fscrypt ioctls
        f2fs: wire up new fscrypt ioctls
        ext4: wire up new fscrypt ioctls
        fscrypt: require that key be added when setting a v2 encryption policy
        fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS ioctl
        fscrypt: allow unprivileged users to add/remove keys for v2 policies
        fscrypt: v2 encryption policy support
        fscrypt: add an HKDF-SHA512 implementation
        fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
        fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
        fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
        fscrypt: rename keyinfo.c to keysetup.c
        fscrypt: move v1 policy key setup to keysetup_v1.c
        fscrypt: refactor key setup code in preparation for v2 policies
        fscrypt: rename fscrypt_master_key to fscrypt_direct_key
        fscrypt: add ->ci_inode to fscrypt_info
        fscrypt: use FSCRYPT_* definitions, not FS_*
        fscrypt: use FSCRYPT_ prefix for uapi constants
        ...
      734d1ed8
    • Linus Torvalds's avatar
      Merge tag 'filelock-v5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux · d013cc80
      Linus Torvalds authored
      Pull file locking updates from Jeff Layton:
       "Just a couple of minor bugfixes, a revision to a tracepoint to account
        for some earlier changes to the internals, and a patch to add a
        pr_warn message when someone tries to mount a filesystem with '-o
        mand' on a kernel that has that support disabled"
      
      * tag 'filelock-v5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux:
        locks: fix a memory leak bug in __break_lease()
        locks: print a warning when mount fails due to lack of "mand" support
        locks: Fix procfs output for file leases
        locks: revise generic_add_lease tracepoint
      d013cc80
    • Linus Torvalds's avatar
      Merge branch 'work.mount-base' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs · e170eb27
      Linus Torvalds authored
      Pull vfs mount API infrastructure updates from Al Viro:
       "Infrastructure bits of mount API conversions.
      
        The rest is more of per-filesystem updates and that will happen
        in separate pull requests"
      
      * 'work.mount-base' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
        mtd: Provide fs_context-aware mount_mtd() replacement
        vfs: Create fs_context-aware mount_bdev() replacement
        new helper: get_tree_keyed()
        vfs: set fs_context::user_ns for reconfigure
      e170eb27
    • Linus Torvalds's avatar
      Merge branch 'work.dcache' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs · b30d87cf
      Linus Torvalds authored
      Pull d_path fix from Al Viro:
       "Fix d_absolute_path() regression in the last cycle (felt by tomoyo,
        mostly)"
      
      * 'work.dcache' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
        [PATCH] fix d_absolute_path() interplay with fsmount()
      b30d87cf
    • Linus Torvalds's avatar
      Merge branch 'work.namei' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs · 53e5e7a7
      Linus Torvalds authored
      Pull vfs namei updates from Al Viro:
       "Pathwalk-related stuff"
      
      [ Audit-related cleanups, misc simplifications, and easier to follow
        nd->root refcounts     - Linus ]
      
      * 'work.namei' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
        devpts_pty_kill(): don't bother with d_delete()
        infiniband: don't bother with d_delete()
        hypfs: don't bother with d_delete()
        fs/namei.c: keep track of nd->root refcount status
        fs/namei.c: new helper - legitimize_root()
        kill the last users of user_{path,lpath,path_dir}()
        namei.h: get the comments on LOOKUP_... in sync with reality
        kill LOOKUP_NO_EVAL, don't bother including namei.h from audit.h
        audit_inode(): switch to passing AUDIT_INODE_...
        filename_mountpoint(): make LOOKUP_NO_EVAL unconditional there
        filename_lookup(): audit_inode() argument is always 0
      53e5e7a7
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next · 81160dda
      Linus Torvalds authored
      Pull networking updates from David Miller:
      
       1) Support IPV6 RA Captive Portal Identifier, from Maciej Żenczykowski.
      
       2) Use bio_vec in the networking instead of custom skb_frag_t, from
          Matthew Wilcox.
      
       3) Make use of xmit_more in r8169 driver, from Heiner Kallweit.
      
       4) Add devmap_hash to xdp, from Toke Høiland-Jørgensen.
      
       5) Support all variants of 5750X bnxt_en chips, from Michael Chan.
      
       6) More RTNL avoidance work in the core and mlx5 driver, from Vlad
          Buslov.
      
       7) Add TCP syn cookies bpf helper, from Petar Penkov.
      
       8) Add 'nettest' to selftests and use it, from David Ahern.
      
       9) Add extack support to drop_monitor, add packet alert mode and
          support for HW drops, from Ido Schimmel.
      
      10) Add VLAN offload to stmmac, from Jose Abreu.
      
      11) Lots of devm_platform_ioremap_resource() conversions, from
          YueHaibing.
      
      12) Add IONIC driver, from Shannon Nelson.
      
      13) Several kTLS cleanups, from Jakub Kicinski.
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1930 commits)
        mlxsw: spectrum_buffers: Add the ability to query the CPU port's shared buffer
        mlxsw: spectrum: Register CPU port with devlink
        mlxsw: spectrum_buffers: Prevent changing CPU port's configuration
        net: ena: fix incorrect update of intr_delay_resolution
        net: ena: fix retrieval of nonadaptive interrupt moderation intervals
        net: ena: fix update of interrupt moderation register
        net: ena: remove all old adaptive rx interrupt moderation code from ena_com
        net: ena: remove ena_restore_ethtool_params() and relevant fields
        net: ena: remove old adaptive interrupt moderation code from ena_netdev
        net: ena: remove code duplication in ena_com_update_nonadaptive_moderation_interval _*()
        net: ena: enable the interrupt_moderation in driver_supported_features
        net: ena: reimplement set/get_coalesce()
        net: ena: switch to dim algorithm for rx adaptive interrupt moderation
        net: ena: add intr_moder_rx_interval to struct ena_com_dev and use it
        net: phy: adin: implement Energy Detect Powerdown mode via phy-tunable
        ethtool: implement Energy Detect Powerdown support via phy-tunable
        xen-netfront: do not assume sk_buff_head list is empty in error handling
        s390/ctcm: Delete unnecessary checks before the macro call “dev_kfree_skb”
        net: ena: don't wake up tx queue when down
        drop_monitor: Better sanitize notified packets
        ...
      81160dda
    • Linus Torvalds's avatar
      Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 · 8b53c765
      Linus Torvalds authored
      Pull crypto updates from Herbert Xu:
       "API:
         - Add the ability to abort a skcipher walk.
      
        Algorithms:
         - Fix XTS to actually do the stealing.
         - Add library helpers for AES and DES for single-block users.
         - Add library helpers for SHA256.
         - Add new DES key verification helper.
         - Add surrounding bits for ESSIV generator.
         - Add accelerations for aegis128.
         - Add test vectors for lzo-rle.
      
        Drivers:
         - Add i.MX8MQ support to caam.
         - Add gcm/ccm/cfb/ofb aes support in inside-secure.
         - Add ofb/cfb aes support in media-tek.
         - Add HiSilicon ZIP accelerator support.
      
        Others:
         - Fix potential race condition in padata.
         - Use unbound workqueues in padata"
      
      * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (311 commits)
        crypto: caam - Cast to long first before pointer conversion
        crypto: ccree - enable CTS support in AES-XTS
        crypto: inside-secure - Probe transform record cache RAM sizes
        crypto: inside-secure - Base RD fetchcount on actual RD FIFO size
        crypto: inside-secure - Base CD fetchcount on actual CD FIFO size
        crypto: inside-secure - Enable extended algorithms on newer HW
        crypto: inside-secure: Corrected configuration of EIP96_TOKEN_CTRL
        crypto: inside-secure - Add EIP97/EIP197 and endianness detection
        padata: remove cpu_index from the parallel_queue
        padata: unbind parallel jobs from specific CPUs
        padata: use separate workqueues for parallel and serial work
        padata, pcrypt: take CPU hotplug lock internally in padata_alloc_possible
        crypto: pcrypt - remove padata cpumask notifier
        padata: make padata_do_parallel find alternate callback CPU
        workqueue: require CPU hotplug read exclusion for apply_workqueue_attrs
        workqueue: unconfine alloc/apply/free_workqueue_attrs()
        padata: allocate workqueue internally
        arm64: dts: imx8mq: Add CAAM node
        random: Use wait_event_freezable() in add_hwgenerator_randomness()
        crypto: ux500 - Fix COMPILE_TEST warnings
        ...
      8b53c765
    • Linus Torvalds's avatar
      Merge tag 'char-misc-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc · 6cfae0c2
      Linus Torvalds authored
      Pull char/misc driver updates from Greg KH:
       "Here is the big char/misc driver pull request for 5.4-rc1.
      
        As has been happening in previous releases, more and more individual
        driver subsystem trees are ending up in here. Now if that is good or
        bad I can't tell, but hopefully it makes your life easier as it's more
        of an aggregation of trees together to one merge point for you.
      
        Anyway, lots of stuff in here:
           - habanalabs driver updates
           - thunderbolt driver updates
           - misc driver updates
           - coresight and intel_th hwtracing driver updates
           - fpga driver updates
           - extcon driver updates
           - some dma driver updates
           - char driver updates
           - android binder driver updates
           - nvmem driver updates
           - phy driver updates
           - parport driver fixes
           - pcmcia driver fix
           - uio driver updates
           - w1 driver updates
           - configfs fixes
           - other assorted driver updates
      
        All of these have been in linux-next for a long time with no reported
        issues"
      
      * tag 'char-misc-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (200 commits)
        misc: mic: Use PTR_ERR_OR_ZERO rather than its implementation
        habanalabs: correctly cast variable to __le32
        habanalabs: show correct id in error print
        habanalabs: stop using the acronym KMD
        habanalabs: display card name as sensors header
        habanalabs: add uapi to retrieve aggregate H/W events
        habanalabs: add uapi to retrieve device utilization
        habanalabs: Make the Coresight timestamp perpetual
        habanalabs: explicitly set the queue-id enumerated numbers
        habanalabs: print to kernel log when reset is finished
        habanalabs: replace __le32_to_cpu with le32_to_cpu
        habanalabs: replace __cpu_to_le32/64 with cpu_to_le32/64
        habanalabs: Handle HW_IP_INFO if device disabled or in reset
        habanalabs: Expose devices after initialization is done
        habanalabs: improve security in Debug IOCTL
        habanalabs: use default structure for user input in Debug IOCTL
        habanalabs: Add descriptive name to PSOC app status register
        habanalabs: Add descriptive names to PSOC scratch-pad registers
        habanalabs: create two char devices per ASIC
        habanalabs: change device_setup_cdev() to be more generic
        ...
      6cfae0c2
    • Linus Torvalds's avatar
      Merge tag 'staging-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging · e6874fc2
      Linus Torvalds authored
      Pull staging and IIO driver updates from Greg KH:
       "Here is the big staging/iio driver update for 5.4-rc1.
      
        Lots of churn here, with a few driver/filesystems moving out of
        staging finally:
      
           - erofs moved out of staging
      
           - greybus core code moved out of staging
      
        Along with that, a new filesytem has been added:
      
           - extfat
      
        to provide support for those devices requiring that filesystem (i.e.
        transfer devices to/from windows systems or printers)
      
        Other than that, there a number of new IIO drivers, and lots and lots
        and lots of staging driver cleanups and minor fixes as people continue
        to dig into those for easy changes.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'staging-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (453 commits)
        Staging: gasket: Use temporaries to reduce line length.
        Staging: octeon: Avoid several usecases of strcpy
        staging: vhciq_core: replace snprintf with scnprintf
        staging: wilc1000: avoid twice IRQ handler execution for each single interrupt
        staging: wilc1000: remove unused interrupt status handling code
        staging: fbtft: make several arrays static const, makes object smaller
        staging: rtl8188eu: make two arrays static const, makes object smaller
        staging: rtl8723bs: core: Remove Macro "IS_MAC_ADDRESS_BROADCAST"
        dt-bindings: anybus-controller: move to staging/ tree
        staging: emxx_udc: remove local TRUE/FALSE definition
        staging: wilc1000: look for rtc_clk clock
        staging: dt-bindings: wilc1000: add optional rtc_clk property
        staging: nvec: make use of devm_platform_ioremap_resource
        staging: exfat: drop unused function parameter
        Staging: exfat: Avoid use of strcpy
        staging: exfat: use integer constants
        staging: exfat: cleanup spacing for casts
        staging: exfat: cleanup spacing for operators
        staging: rtl8723bs: hal: remove redundant variable n
        staging: pi433: Fix typo in documentation
        ...
      e6874fc2
    • Linus Torvalds's avatar
      Merge tag 'tty-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty · e444d51b
      Linus Torvalds authored
      Pull tty/serial driver updates from Greg KH:
       "Even in this age, people are still making new serial port silicon,
        why...
      
        Anyway, here's the TTY and Serial driver update for 5.4-rc1. Lots of
        changes in here for a number of embedded serial port devices that are
        being worked on because people really like to see those console
        logs...
      
        Other than that, nothing major here, no core tty changes that anyone
        should care about.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'tty-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (125 commits)
        serial: tegra: Add PIO mode support
        serial: tegra: report clk rate errors
        serial: tegra: add support to adjust baud rate
        serial: tegra: DT for Adjusted baud rates
        serial: tegra: add support to use 8 bytes trigger
        serial: tegra: set maximum num of uart ports to 8
        serial: tegra: check for FIFO mode enabled status
        dt-binding: serial: tegra: add new chips
        serial: tegra: report error to upper tty layer
        serial: tegra: flush the RX fifo on frame error
        serial: tegra: avoid reg access when clk disabled
        serial: tegra: add support to ignore read
        serial: sprd: correct the wrong sequence of arguments
        dt-bindings: serial: Convert riscv,sifive-serial to json-schema
        serial: max310x: turn off transmitter before activating AutoCTS or auto transmitter flow control
        serial: max310x: Properly set flags in AutoCTS mode
        tty: serial: fix platform_no_drv_owner.cocci warnings
        dt-bindings: serial: Document Freescale LINFlexD UART
        serial: fsl_linflexuart: Update compatible string
        tty: n_gsm: avoid recursive locking with async port hangup
        ...
      e444d51b
    • Linus Torvalds's avatar
      Merge tag 'usb-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · c6b48dad
      Linus Torvalds authored
      Pull USB updates from Greg KH:
       "Here is the big set of USB patches for 5.4-rc1.
      
        Two major chunks of code are moving out of the tree and into the
        staging directory, uwb and wusb (wireless USB support), because there
        are no devices that actually use this protocol anymore, and what we
        have today probably doesn't work at all given that the maintainers
        left many many years ago. So move it to staging where it will be
        removed in a few releases if no one screams.
      
        Other than that, lots of little things. The usual gadget and xhci and
        usb serial driver updates, along with a bunch of sysfs file cleanups
        due to the driver core changes to support that. Nothing really major,
        just constant forward progress.
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'usb-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (159 commits)
        USB: usbcore: Fix slab-out-of-bounds bug during device reset
        usb: cdns3: Remove redundant dev_err call in cdns3_probe()
        USB: rio500: Fix lockdep violation
        USB: rio500: simplify locking
        usb: mtu3: register a USB Role Switch for dual role mode
        usb: common: add USB GPIO based connection detection driver
        usb: common: create Kconfig file
        usb: roles: get usb-role-switch from parent
        usb: roles: Add fwnode_usb_role_switch_get() function
        device connection: Add fwnode_connection_find_match()
        usb: roles: Introduce stubs for the exiting functions in role.h
        dt-bindings: usb: mtu3: add properties about USB Role Switch
        dt-bindings: usb: add binding for USB GPIO based connection detection driver
        dt-bindings: connector: add optional properties for Type-B
        dt-binding: usb: add usb-role-switch property
        usbip: Implement SG support to vhci-hcd and stub driver
        usb: roles: intel: Enable static DRD mode for role switch
        xhci-ext-caps.c: Add property to disable Intel SW switch
        usb: dwc3: remove generic PHY calibrate() calls
        usb: core: phy: add support for PHY calibration
        ...
      c6b48dad
    • Linus Torvalds's avatar
      Merge tag 'driver-core-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core · 1f7d290a
      Linus Torvalds authored
      Pull driver core updates from Greg Kroah-Hartman:
       "Here is the big driver core update for 5.4-rc1.
      
        There was a bit of a churn in here, with a number of core and OF
        platform patches being added to the tree, and then after much
        discussion and review and a day-long in-person meeting, they were
        decided to be reverted and a new set of patches is currently being
        reviewed on the mailing list.
      
        Other than that churn, there are two "persistent" branches in here
        that other trees will be pulling in as well during the merge window.
        One branch to add support for drivers to have the driver core
        automatically add sysfs attribute files when a driver is bound to a
        device so that the driver doesn't have to manually do it (and then
        clean it up, as it always gets it wrong).
      
        There's another branch in here for generic lookup helpers for the
        driver core that lots of busses are starting to use. That's the
        majority of the non-driver-core changes in this patch series.
      
        There's also some on-going debugfs file creation cleanup that has been
        slowly happening over the past few releases, with the goal to
        hopefully get that done sometime next year.
      
        All of these have been in linux-next for a while now with no reported
        issues"
      
      [ Note that the above-mentioned generic lookup helpers branch was
        already brought in by the LED merge (commit 4feaab05) that had
        shared it.
      
        Also note that that common branch introduced an i2c bug due to a bad
        conversion, which got fixed here. - Linus ]
      
      * tag 'driver-core-5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (49 commits)
        coccinelle: platform_get_irq: Fix parse error
        driver-core: add include guard to linux/container.h
        sysfs: add BIN_ATTR_WO() macro
        driver core: platform: Export platform_get_irq_optional()
        hwmon: pwm-fan: Use platform_get_irq_optional()
        driver core: platform: Introduce platform_get_irq_optional()
        Revert "driver core: Add support for linking devices during device addition"
        Revert "driver core: Add edit_links() callback for drivers"
        Revert "of/platform: Add functional dependency link from DT bindings"
        Revert "driver core: Add sync_state driver/bus callback"
        Revert "of/platform: Pause/resume sync state during init and of_platform_populate()"
        Revert "of/platform: Create device links for all child-supplier depencencies"
        Revert "of/platform: Don't create device links for default busses"
        Revert "of/platform: Fix fn definitons for of_link_is_valid() and of_link_property()"
        Revert "of/platform: Fix device_links_supplier_sync_state_resume() warning"
        Revert "of/platform: Disable generic device linking code for PowerPC"
        devcoredump: fix typo in comment
        devcoredump: use memory_read_from_buffer
        of/platform: Disable generic device linking code for PowerPC
        device.h: Fix warnings for mismatched parameter names in comments
        ...
      1f7d290a
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm · fe38bd68
      Linus Torvalds authored
      Pull KVM updates from Paolo Bonzini:
       "s390:
         - ioctl hardening
         - selftests
      
        ARM:
         - ITS translation cache
         - support for 512 vCPUs
         - various cleanups and bugfixes
      
        PPC:
         - various minor fixes and preparation
      
        x86:
         - bugfixes all over the place (posted interrupts, SVM, emulation
           corner cases, blocked INIT)
         - some IPI optimizations"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm: (75 commits)
        KVM: X86: Use IPI shorthands in kvm guest when support
        KVM: x86: Fix INIT signal handling in various CPU states
        KVM: VMX: Introduce exit reason for receiving INIT signal on guest-mode
        KVM: VMX: Stop the preemption timer during vCPU reset
        KVM: LAPIC: Micro optimize IPI latency
        kvm: Nested KVM MMUs need PAE root too
        KVM: x86: set ctxt->have_exception in x86_decode_insn()
        KVM: x86: always stop emulation on page fault
        KVM: nVMX: trace nested VM-Enter failures detected by H/W
        KVM: nVMX: add...
      fe38bd68
    • Linus Torvalds's avatar
      Merge tag 'for-linus-urgent' of git://git.kernel.org/pub/scm/virt/kvm/kvm · 404e634f
      Linus Torvalds authored
      Pull KVM fix from Paolo Bonzini:
       "Fix missing bounds-checking in coalesced_mmio (CVE-2019-14821)"
      
      * tag 'for-linus-urgent' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
        KVM: coalesced_mmio: add bounds checking
      404e634f