Skip to content
  1. Jul 11, 2019
    • Linus Torvalds's avatar
      Merge tag 'pidfd-updates-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux · 5450e8a3
      Linus Torvalds authored
      Pull pidfd updates from Christian Brauner:
       "This adds two main features.
      
         - First, it adds polling support for pidfds. This allows process
           managers to know when a (non-parent) process dies in a race-free
           way.
      
           The notification mechanism used follows the same logic that is
           currently used when the parent of a task is notified of a child's
           death. With this patchset it is possible to put pidfds in an
           {e}poll loop and get reliable notifications for process (i.e.
           thread-group) exit.
      
         - The second feature compliments the first one by making it possible
           to retrieve pollable pidfds for processes that were not created
           using CLONE_PIDFD.
      
           A lot of processes get created with traditional PID-based calls
           such as fork() or clone() (without CLONE_PIDFD). For these
           processes a caller can currently not create a pollable pidfd. This
           is a problem for Android's low memory killer (LMK) and service
           managers such as systemd.
      
        Both patchsets are accompanied by selftests.
      
        It's perhaps worth noting that the work done so far and the work done
        in this branch for pidfd_open() and polling support do already see
        some adoption:
      
         - Android is in the process of backporting this work to all their LTS
           kernels [1]
      
         - Service managers make use of pidfd_send_signal but will need to
           wait until we enable waiting on pidfds for full adoption.
      
         - And projects I maintain make use of both pidfd_send_signal and
           CLONE_PIDFD [2] and will use polling support and pidfd_open() too"
      
      [1] https://android-review.googlesource.com/q/topic:%22pidfd+polling+support+4.9+backport%22
          https://android-review.googlesource.com/q/topic:%22pidfd+polling+support+4.14+backport%22
          https://android-review.googlesource.com/q/topic:%22pidfd+polling+support+4.19+backport%22
      
      [2] https://github.com/lxc/lxc/blob/aab6e3eb73c343231cdde775db938994fc6f2803/src/lxc/start.c#L1753
      
      * tag 'pidfd-updates-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux:
        tests: add pidfd_open() tests
        arch: wire-up pidfd_open()
        pid: add pidfd_open()
        pidfd: add polling selftests
        pidfd: add polling support
      5450e8a3
    • Linus Torvalds's avatar
      Merge tag 'm68k-for-v5.3-tag2' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k · 29cd581b
      Linus Torvalds authored
      Pull m68k fix from Geert Uytterhoeven:
       "Don't select ARCH_HAS_DMA_PREP_COHERENT for nommu or coldfire.
      
        This is a fix for an issue detected in next, to avoid introducing
        build failures when merging Christoph's dma-mapping tree later"
      
      * tag 'm68k-for-v5.3-tag2' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k:
        m68k: Don't select ARCH_HAS_DMA_PREP_COHERENT for nommu or coldfire
      29cd581b
    • Linus Torvalds's avatar
      Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu · 398364a3
      Linus Torvalds authored
      Pull m68nommu updates from Greg Ungerer:
       "A series of cleanups for the FLAT format binary loader, binfmt_flat,
        from Christoph.
      
        The end goal is to support no-MMU on RISC-V, and the last patch
        enables that"
      
      * 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
        riscv: add binfmt_flat support
        binfmt_flat: don't offset the data start
        binfmt_flat: move the MAX_SHARED_LIBS definition to binfmt_flat.c
        binfmt_flat: remove the persistent argument from flat_get_addr_from_rp
        binfmt_flat: provide an asm-generic/flat.h
        binfmt_flat: make support for old format binaries optional
        binfmt_flat: add a ARCH_HAS_BINFMT_FLAT option
        binfmt_flat: add endianess annotations
        binfmt_flat: use fixed size type for the on-disk format
        binfmt_flat: consolidate two version of flat_v2_reloc_t
        binfmt_flat: remove the unused OLD_FLAT_FLAG_RAM definition
        binfmt_flat: remove the uapi <linux/flat.h> header
        binfmt_flat: replace flat_argvp_envp_on_stack with a Kconfig variable
        binfmt_flat: remove flat_old_ram_flag
        binfmt_flat: provide a default version of flat_get_relocate_addr
        binfmt_flat: remove flat_set_persistent
        binfmt_flat: remove flat_reloc_valid
      398364a3
    • Linus Torvalds's avatar
      Merge tag 'nfsd-5.3' of git://linux-nfs.org/~bfields/linux · d2b6b4c8
      Linus Torvalds authored
      Pull nfsd updates from Bruce Fields:
       "Highlights:
      
         - Add a new /proc/fs/nfsd/clients/ directory which exposes some
           long-requested information about NFSv4 clients (like open files)
           and allows forced revocation of client state.
      
         - Replace the global duplicate reply cache by a cache per network
           namespace; previously, a request in one network namespace could
           incorrectly match an entry from another, though we haven't seen
           this in production. This is the last remaining container bug that
           I'm aware of; at this point you should be able to run separate
           nfsd's in each network namespace, each with their own set of
           exports, and everything should work.
      
         - Cleanup and modify lock code to show the pid of lockd as the owner
           of NLM locks. This is the correct version of the bugfix originally
           attempted in b8eee0e9 ("lockd: Show pid of lockd for remote
           locks")"
      
      * tag 'nfsd-5.3' of git://linux-nfs.org/~bfields/linux: (34 commits)
        nfsd: Make __get_nfsdfs_client() static
        nfsd: Make two functions static
        nfsd: Fix misuse of strlcpy
        sunrpc/cache: remove the exporting of cache_seq_next
        nfsd: decode implementation id
        nfsd: create xdr_netobj_dup helper
        nfsd: allow forced expiration of NFSv4 clients
        nfsd: create get_nfsdfs_clp helper
        nfsd4: show layout stateids
        nfsd: show lock and deleg stateids
        nfsd4: add file to display list of client's opens
        nfsd: add more information to client info file
        nfsd: escape high characters in binary data
        nfsd: copy client's address including port number to cl_addr
        nfsd4: add a client info file
        nfsd: make client/ directory names small ints
        nfsd: add nfsd/clients directory
        nfsd4: use reference count to free client
        nfsd: rename cl_refcount
        nfsd: persist nfsd filesystem across mounts
        ...
      d2b6b4c8
    • Linus Torvalds's avatar
      Merge tag 'gfs2-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2 · 0248a8be
      Linus Torvalds authored
      Pull gfs2 updates from Andreas Gruenbacher:
       "Some relatively minor changes for gfs2:
      
         - An initial batch of obvious cleanups and fixes from Bob's recovery
           patch queue.
      
         - Two iomap conversion patches and some cleanups from Christoph
           Hellwig.
      
         - A cosmetic cleanup from Kefeng Wang (Huawei).
      
         - Another minor fix and cleanup by me"
      
      * tag 'gfs2-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2:
        gfs2: Remove unused gfs2_iomap_alloc argument
        gfs2: don't use buffer_heads in gfs2_allocate_page_backing
        gfs2: use iomap_bmap instead of generic_block_bmap
        gfs2: mark stuffed_readpage static
        gfs2: merge gfs2_writepage_common into gfs2_writepage
        gfs2: merge gfs2_writeback_aops and gfs2_ordered_aops
        gfs2: remove the unused gfs2_stuffed_write_end function
        gfs2: use page_offset in gfs2_page_mkwrite
        gfs2: replace more printk with calls to fs_info and friends
        gfs2: dump fsid when dumping glock problems
        gfs2: simplify gfs2_freeze by removing case
        gfs2: Rename SDF_SHUTDOWN to SDF_WITHDRAWN
        gfs2: Warn when a journal replay overwrites a rgrp with buffers
        gfs2: log which portion of the journal is replayed
        gfs2: eliminate tr_num_revoke_rm
        gfs2: kthread and remount improvements
        gfs2: Use IS_ERR_OR_NULL
        gfs2: Clean up freeing struct gfs2_sbd
      0248a8be
    • Linus Torvalds's avatar
      Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 · 2e756758
      Linus Torvalds authored
      Pull ext4 updates from Ted Ts'o:
       "Many bug fixes and cleanups, and an optimization for case-insensitive
        lookups"
      
      * tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4:
        ext4: fix coverity warning on error path of filename setup
        ext4: replace ktype default_attrs with default_groups
        ext4: rename htree_inline_dir_to_tree() to ext4_inlinedir_to_tree()
        ext4: refactor initialize_dirent_tail()
        ext4: rename "dirent_csum" functions to use "dirblock"
        ext4: allow directory holes
        jbd2: drop declaration of journal_sync_buffer()
        ext4: use jbd2_inode dirty range scoping
        jbd2: introduce jbd2_inode dirty range scoping
        mm: add filemap_fdatawait_range_keep_errors()
        ext4: remove redundant assignment to node
        ext4: optimize case-insensitive lookups
        ext4: make __ext4_get_inode_loc plug
        ext4: clean up kerneldoc warnigns when building with W=1
        ext4: only set project inherit bit for d...
      2e756758
    • Linus Torvalds's avatar
      Merge tag 'afs-next-20190628' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs · 8dda9957
      Linus Torvalds authored
      Pull afs updates from David Howells:
       "A set of minor changes for AFS:
      
         - Remove an unnecessary check in afs_unlink()
      
         - Add a tracepoint for tracking callback management
      
         - Add a tracepoint for afs_server object usage
      
         - Use struct_size()
      
         - Add mappings for AFS UAE abort codes to Linux error codes, using
           symbolic names rather than hex numbers in the .c file"
      
      * tag 'afs-next-20190628' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs:
        afs: Add support for the UAE error table
        fs/afs: use struct_size() in kzalloc()
        afs: Trace afs_server usage
        afs: Add some callback management tracepoints
        afs: afs_unlink() doesn't need to check dentry->d_inode
      8dda9957
    • Linus Torvalds's avatar
      Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt · 25cd6f35
      Linus Torvalds authored
      Pull fscrypt updates from Eric Biggers:
      
       - Preparations for supporting encryption on ext4 filesystems where the
         filesystem block size is smaller than PAGE_SIZE.
      
       - Don't allow setting encryption policies on dead directories.
      
       - Various cleanups.
      
      * tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt:
        fscrypt: document testing with xfstests
        fscrypt: remove selection of CONFIG_CRYPTO_SHA256
        fscrypt: remove unnecessary includes of ratelimit.h
        fscrypt: don't set policy for a dead directory
        ext4: encrypt only up to last block in ext4_bio_write_page()
        ext4: decrypt only the needed block in __ext4_block_zero_page_range()
        ext4: decrypt only the needed blocks in ext4_block_write_begin()
        ext4: clear BH_Uptodate flag on decryption error
        fscrypt: decrypt only the needed blocks in __fscrypt_decrypt_bio()
        fscrypt: support decrypting multiple filesystem blocks per page
        fscrypt: introduce fscrypt_decrypt_block_inplace()
        fscrypt: handle blocksize < PAGE_SIZE in fscrypt_zeroout_range()
        fscrypt: support encrypting multiple filesystem blocks per page
        fscrypt: introduce fscrypt_encrypt_block_inplace()
        fscrypt: clean up some BUG_ON()s in block encryption/decryption
        fscrypt: rename fscrypt_do_page_crypto() to fscrypt_crypt_block()
        fscrypt: remove the "write" part of struct fscrypt_ctx
        fscrypt: simplify bounce page handling
      25cd6f35
    • Linus Torvalds's avatar
      Merge tag 'copy-file-range-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · 40f06c79
      Linus Torvalds authored
      Pull copy_file_range updates from Darrick Wong:
       "This fixes numerous parameter checking problems and inconsistent
        behaviors in the new(ish) copy_file_range system call.
      
        Now the system call will actually check its range parameters
        correctly; refuse to copy into files for which the caller does not
        have sufficient privileges; update mtime and strip setuid like file
        writes are supposed to do; and allows copying up to the EOF of the
        source file instead of failing the call like we used to.
      
        Summary:
      
         - Create a generic copy_file_range handler and make individual
           filesystems responsible for calling it (i.e. no more assuming that
           do_splice_direct will work or is appropriate)
      
         - Refactor copy_file_range and remap_range parameter checking where
           they are the same
      
         - Install missing copy_file_range parameter checking(!)
      
         - Remove suid/sgid and update mtime like any other file write
      
         - Change the behavior so that a copy range crossing the source file's
           eof will result in a short copy to the source file's eof instead of
           EINVAL
      
         - Permit filesystems to decide if they want to handle
           cross-superblock copy_file_range in their local handlers"
      
      * tag 'copy-file-range-fixes-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        fuse: copy_file_range needs to strip setuid bits and update timestamps
        vfs: allow copy_file_range to copy across devices
        xfs: use file_modified() helper
        vfs: introduce file_modified() helper
        vfs: add missing checks to copy_file_range
        vfs: remove redundant checks from generic_remap_checks()
        vfs: introduce generic_file_rw_checks()
        vfs: no fallback for ->copy_file_range
        vfs: introduce generic_copy_file_range()
      40f06c79
    • Linus Torvalds's avatar
      Merge tag 'iomap-5.3-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · a47f5c56
      Linus Torvalds authored
      Pull iomap updates from Darrick Wong:
       "There are a few fixes for gfs2 but otherwise it's pretty quiet so far.
      
         - Only mark inode dirty at the end of writing to a file (instead of
           once for every page written).
      
         - Fix for an accounting error in the page_done callback"
      
      * tag 'iomap-5.3-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        iomap: fix page_done callback for short writes
        fs: fold __generic_write_end back into generic_write_end
        iomap: don't mark the inode dirty in iomap_write_end
      a47f5c56
    • Linus Torvalds's avatar
      Merge tag 'for_v5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs · 682f7c5c
      Linus Torvalds authored
      Pull ext2, udf and quota updates from Jan Kara:
      
       - some ext2 fixes and cleanups
      
       - a fix of udf bug when extending files
      
       - a fix of quota Q_XGETQSTAT[V] handling
      
      * tag 'for_v5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
        udf: Fix incorrect final NOT_ALLOCATED (hole) extent length
        ext2: Use kmemdup rather than duplicating its implementation
        quota: honor quota type in Q_XGETQSTAT[V] calls
        ext2: Always brelse bh on failure in ext2_iget()
        ext2: add missing brelse() in ext2_iget()
        ext2: Fix a typo in ext2_getattr argument
        ext2: fix a typo in comment
        ext2: add missing brelse() in ext2_new_inode()
        ext2: optimize ext2_xattr_get()
        ext2: introduce new helper for xattr entry comparison
        ext2: merge xattr next entry check to ext2_xattr_entry_valid()
        ext2: code cleanup for ext2_preread_inode()
        ext2: code cleanup by using test_opt() and clear_opt()
        doc: ext2: update description of quota options for ext2
        ext2: Strengthen xattr block checks
        ext2: Merge loops in ext2_xattr_set()
        ext2: introduce helper for xattr entry validation
        ext2: introduce helper for xattr header validation
        quota: add dqi_dirty_list description to comment of Dquot List Management
      682f7c5c
    • Linus Torvalds's avatar
      Merge tag 'fsnotify_for_v5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs · e6983afd
      Linus Torvalds authored
      Pull fsnotify updates from Jan Kara:
       "This contains cleanups of the fsnotify name removal hook and also a
        patch to disable fanotify permission events for 'proc' filesystem"
      
      * tag 'fsnotify_for_v5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
        fsnotify: get rid of fsnotify_nameremove()
        fsnotify: move fsnotify_nameremove() hook out of d_delete()
        configfs: call fsnotify_rmdir() hook
        debugfs: call fsnotify_{unlink,rmdir}() hooks
        debugfs: simplify __debugfs_remove_file()
        devpts: call fsnotify_unlink() hook
        tracefs: call fsnotify_{unlink,rmdir}() hooks
        rpc_pipefs: call fsnotify_{unlink,rmdir}() hooks
        btrfs: call fsnotify_rmdir() hook
        fsnotify: add empty fsnotify_{unlink,rmdir}() hooks
        fanotify: Disallow permission events for proc filesystem
      e6983afd
    • Linus Torvalds's avatar
      Merge tag 'locks-v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux · 988052f4
      Linus Torvalds authored
      Pull file locking updates from Jeff Layton:
       "Just a couple of small lease-related patches this cycle.
      
        One from Ira to add a new tracepoint that fires during lease conflict
        checks, and another patch from Amir to reduce false positives when
        checking for lease conflicts"
      
      * tag 'locks-v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux:
        locks: eliminate false positive conflicts for write lease
        locks: Add trace_leases_conflict
      988052f4
    • Linus Torvalds's avatar
      Revert "Merge tag 'keys-acl-20190703' of... · 028db3e2
      Linus Torvalds authored
      Revert "Merge tag 'keys-acl-20190703' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs"
      
      This reverts merge 0f75ef6a (and thus
      effectively commits
      
         7a1ade84 ("keys: Provide KEYCTL_GRANT_PERMISSION")
         2e12256b
      
       ("keys: Replace uid/gid/perm permissions checking with an ACL")
      
      that the merge brought in).
      
      It turns out that it breaks booting with an encrypted volume, and Eric
      biggers reports that it also breaks the fscrypt tests [1] and loading of
      in-kernel X.509 certificates [2].
      
      The root cause of all the breakage is likely the same, but David Howells
      is off email so rather than try to work it out it's getting reverted in
      order to not impact the rest of the merge window.
      
       [1] https://lore.kernel.org/lkml/20190710011559.GA7973@sol.localdomain/
       [2] https://lore.kernel.org/lkml/20190710013225.GB7973@sol.localdomain/
      
      Link: https://lore.kernel.org/lkml/CAHk-=wjxoeMJfeBahnWH=9zShKp2bsVy527vo3_y8HfOdhwAAw@mail.gmail.com/
      Reported-by: default avatarEric Biggers <ebiggers@kernel.org>
      Cc: David Howells <dhowells@redhat.com>
      Cc: James Morris <jmorris@namei.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      028db3e2
  2. Jul 10, 2019
    • Steven J. Magnani's avatar
      udf: Fix incorrect final NOT_ALLOCATED (hole) extent length · fa33cdbf
      Steven J. Magnani authored
      In some cases, using the 'truncate' command to extend a UDF file results
      in a mismatch between the length of the file's extents (specifically, due
      to incorrect length of the final NOT_ALLOCATED extent) and the information
      (file) length. The discrepancy can prevent other operating systems
      (i.e., Windows 10) from opening the file.
      
      Two particular errors have been observed when extending a file:
      
      1. The final extent is larger than it should be, having been rounded up
         to a multiple of the block size.
      
      B. The final extent is not shorter than it should be, due to not having
         been updated when the file's information length was increased.
      
      [JK: simplified udf_do_extend_final_block(), fixed up some types]
      
      Fixes: 2c948b3f
      
       ("udf: Avoid IO in udf_clear_inode")
      CC: stable@vger.kernel.org
      Signed-off-by: default avatarSteven J. Magnani <steve@digidescorp.com>
      Link: https://lore.kernel.org/r/1561948775-5878-1-git-send-email-steve@digidescorp.com
      Signed-off-by: default avatarJan Kara <jack@suse.cz>
      fa33cdbf
    • YueHaibing's avatar
      nfsd: Make __get_nfsdfs_client() static · b78fa45d
      YueHaibing authored
      
      
      Fix sparse warning:
      
      fs/nfsd/nfsctl.c:1221:22: warning:
       symbol '__get_nfsdfs_client' was not declared. Should it be static?
      
      Reported-by: default avatarHulk Robot <hulkci@huawei.com>
      Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      b78fa45d
    • YueHaibing's avatar
      nfsd: Make two functions static · 297e57a2
      YueHaibing authored
      
      
      Fix sparse warnings:
      
      fs/nfsd/nfs4state.c:1908:6: warning: symbol 'drop_client' was not declared. Should it be static?
      fs/nfsd/nfs4state.c:2518:6: warning: symbol 'force_expire_client' was not declared. Should it be static?
      
      Reported-by: default avatarHulk Robot <hulkci@huawei.com>
      Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
      Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
      297e57a2
    • Linus Torvalds's avatar
      Merge tag 'docs-5.3' of git://git.lwn.net/linux · e9a83bd2
      Linus Torvalds authored
      Pull Documentation updates from Jonathan Corbet:
       "It's been a relatively busy cycle for docs:
      
         - A fair pile of RST conversions, many from Mauro. These create more
           than the usual number of simple but annoying merge conflicts with
           other trees, unfortunately. He has a lot more of these waiting on
           the wings that, I think, will go to you directly later on.
      
         - A new document on how to use merges and rebases in kernel repos,
           and one on Spectre vulnerabilities.
      
         - Various improvements to the build system, including automatic
           markup of function() references because some people, for reasons I
           will never understand, were of the opinion that
           :c:func:``function()`` is unattractive and not fun to type.
      
         - We now recommend using sphinx 1.7, but still support back to 1.4.
      
         - Lots of smaller improvements, warning fixes, typo fixes, etc"
      
      * tag 'docs-5.3' of git://git.lwn.net/linux: (129 commits)
        docs: automarkup.py: ignore exceptions when seeking for xrefs
        docs: Move binderfs to admin-guide
        Disable Sphinx SmartyPants in HTML output
        doc: RCU callback locks need only _bh, not necessarily _irq
        docs: format kernel-parameters -- as code
        Doc : doc-guide : Fix a typo
        platform: x86: get rid of a non-existent document
        Add the RCU docs to the core-api manual
        Documentation: RCU: Add TOC tree hooks
        Documentation: RCU: Rename txt files to rst
        Documentation: RCU: Convert RCU UP systems to reST
        Documentation: RCU: Convert RCU linked list to reST
        Documentation: RCU: Convert RCU basic concepts to reST
        docs: filesystems: Remove uneeded .rst extension on toctables
        scripts/sphinx-pre-install: fix out-of-tree build
        docs: zh_CN: submitting-drivers.rst: Remove a duplicated Documentation/
        Documentation: PGP: update for newer HW devices
        Documentation: Add section about CPU vulnerabilities for Spectre
        Documentation: platform: Delete x86-laptop-drivers.txt
        docs: Note that :c:func: should no longer be used
        ...
      e9a83bd2
    • Linus Torvalds's avatar
      Merge tag 'printk-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk · 7011b7e1
      Linus Torvalds authored
      Pull printk updates from Petr Mladek:
      
       - distinguish different legacy clocks again
      
       - small clean up
      
      * tag 'printk-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk:
        lib/vsprintf: Reinstate printing of legacy clock IDs
        vsprintf: fix data type of variable in string_nocheck()
      7011b7e1
    • Linus Torvalds's avatar
      Merge branch 'next-lsm' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security · 9d22167f
      Linus Torvalds authored
      Pull capabilities update from James Morris:
       "Minor fixes for capabilities:
      
         - Update the commoncap.c code to utilize XATTR_SECURITY_PREFIX_LEN,
           from Carmeli tamir.
      
         - Make the capability hooks static, from Yue Haibing"
      
      * 'next-lsm' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security:
        security/commoncap: Use xattr security prefix len
        security: Make capability_hooks static
      9d22167f
    • Linus Torvalds's avatar
      Merge branch 'parisc-5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux · 593c7546
      Linus Torvalds authored
      Pull parisc updates from Helge Deller:
       "Dynamic ftrace support by Sven Schnelle and a header guard fix by
        Denis Efremov"
      
      * 'parisc-5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux:
        parisc: asm: psw.h: missing header guard
        parisc: add dynamic ftrace
        compiler.h: add CC_USING_PATCHABLE_FUNCTION_ENTRY
        parisc: use pr_debug() in kernel/module.c
        parisc: add WARN_ON() to clear_fixmap
        parisc: add spinlock to patch function
        parisc: add support for patching multiple words
      593c7546
    • Linus Torvalds's avatar
      Merge branch 'x86-kdump-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 565eb5f8
      Linus Torvalds authored
      Pull x865 kdump updates from Thomas Gleixner:
       "Yet more kexec/kdump updates:
      
         - Properly support kexec when AMD's memory encryption (SME) is
           enabled
      
         - Pass reserved e820 ranges to the kexec kernel so both PCI and SME
           can work"
      
      * 'x86-kdump-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        fs/proc/vmcore: Enable dumping of encrypted memory when SEV was active
        x86/kexec: Set the C-bit in the identity map page table when SEV is active
        x86/kexec: Do not map kexec area as decrypted when SEV is active
        x86/crash: Add e820 reserved ranges to kdump kernel's e820 table
        x86/mm: Rework ioremap resource mapping determination
        x86/e820, ioport: Add a new I/O resource descriptor IORES_DESC_RESERVED
        x86/mm: Create a workarea in the kernel for SME early encryption
        x86/mm: Identify the end of the kernel area to be reserved
      565eb5f8
    • Linus Torvalds's avatar
      Merge branch 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · b7d5c923
      Linus Torvalds authored
      Pull x86 boot updates from Thomas Gleixner:
       "Assorted updates to kexec/kdump:
      
         - Proper kexec support for 4/5-level paging and jumping from a
           5-level to a 4-level paging kernel.
      
         - Make the EFI support for kexec/kdump more robust
      
         - Enforce that the GDT is properly aligned instead of getting the
           alignment by chance"
      
      * 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/kdump/64: Restrict kdump kernel reservation to <64TB
        x86/kexec/64: Prevent kexec from 5-level paging to a 4-level only kernel
        x86/boot: Add xloadflags bits to check for 5-level paging support
        x86/boot: Make the GDT 8-byte aligned
        x86/kexec: Add the ACPI NVS region to the ident map
        x86/boot: Call get_rsdp_addr() after console_init()
        Revert "x86/boot: Disable RSDP parsing temporarily"
        x86/boot: Use efi_setup_data for searching RSDP on kexec-ed kernels
        x86/kexec: Add the EFI system tables and ACPI tables to the ident map
      b7d5c923
    • Linus Torvalds's avatar
      Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 608745f1
      Linus Torvalds authored
      Pull perf updates from Ingo Molnar:
       "The main changes in this cycle on the kernel side were:
      
         - CPU PMU and uncore driver updates to Intel Snow Ridge, IceLake,
           KabyLake, AmberLake and WhiskeyLake CPUs.
      
         - Rework the MSR probing infrastructure to make it more robust, make
           it work better on virtualized systems and to better expose it on
           sysfs.
      
         - Rework PMU attributes group support based on the feedback from
           Greg. The core sysfs patch that adds sysfs_update_groups() was
           acked by Greg.
      
        There's a lot of perf tooling changes as well, all around the place:
      
         - vendor updates to Intel, cs-etm (ARM), ARM64, s390,
      
         - various enhancements to Intel PT tooling support:
            - Improve CBR (Core to Bus Ratio) packets support.
            - Export power and ptwrite events to sqlite and postgresql.
            - Add support for decoding PEBS via PT packets.
            - Add support for samples to contain IPC ratio, collecting cycles
              information from CYC packets, showing the IPC info periodically
            - Allow using time ranges
      
         - lots of updates to perf pmu, perf stat, perf trace, eBPF support,
           perf record, perf diff, etc. - please see the shortlog and Git log
           for details"
      
      * 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (252 commits)
        tools arch x86: Sync asm/cpufeatures.h with the with the kernel
        tools build: Check if gettid() is available before providing helper
        perf jvmti: Address gcc string overflow warning for strncpy()
        perf python: Remove -fstack-protector-strong if clang doesn't have it
        perf annotate TUI browser: Do not use member from variable within its own initialization
        perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64
        perf evsel: Do not rely on errno values for precise_ip fallback
        perf thread: Allow references to thread objects after machine__exit()
        perf header: Assign proper ff->ph in perf_event__synthesize_features()
        tools arch kvm: Sync kvm headers with the kernel sources
        perf script: Allow specifying the files to process guest samples
        perf tools metric: Don't include duration_time in group
        perf list: Avoid extra : for --raw metrics
        perf vendor events intel: Metric fixes for SKX/CLX
        perf tools: Fix typos / broken sentences
        perf jevents: Add support for Hisi hip08 L3C PMU aliasing
        perf jevents: Add support for Hisi hip08 HHA PMU aliasing
        perf jevents: Add support for Hisi hip08 DDRC PMU aliasing
        perf pmu: Support more complex PMU event aliasing
        perf diff: Documentation -c cycles option
        ...
      608745f1
    • Linus Torvalds's avatar
      Merge tag 'for-5.3/libata-20190708' of git://git.kernel.dk/linux-block · cdc5ffc4
      Linus Torvalds authored
      Pull libata updates from Jens Axboe:
       "These are the changes that are reviewed, tested, and queued up for
        this merge window. This contains:
      
         - Removal of redundant memset after dmam_alloc_coherent (Fuqian)
      
         - Expand blacklist check for ST1000LM024, making it independent of
           firmware version (Hans)
      
         - Request sense fix (Tejun)
      
         - ahci_sunxi FIFO fix (Uenal)"
      
      * tag 'for-5.3/libata-20190708' of git://git.kernel.dk/linux-block:
        drivers: ata: ahci_sunxi: Increased SATA/AHCI DMA TX/RX FIFOs
        libata: Drop firmware version check from the ST1000LM024 quirk
        ata: sata_sil24: Remove call to memset after dmam_alloc_coherent
        ata:sata_qstor: Remove call to memset after dmam_alloc_coherent
        ata: sata_nv: Remove call to memset after dmam_alloc_coherent
        ata: pdc_adma: Remove call to memset after dmam_alloc_coherent
        ata: libahci: Remove call to memset after dmam_alloc_coherent
        ata: acard-ahci: Remove call to memset after dmam_alloc_coherent
        libata: don't request sense data on !ZAC ATA devices
      cdc5ffc4
    • Linus Torvalds's avatar
      Merge tag 'for-5.3/block-20190708' of git://git.kernel.dk/linux-block · 3b99107f
      Linus Torvalds authored
      Pull block updates from Jens Axboe:
       "This is the main block updates for 5.3. Nothing earth shattering or
        major in here, just fixes, additions, and improvements all over the
        map. This contains:
      
         - Series of documentation fixes (Bart)
      
         - Optimization of the blk-mq ctx get/put (Bart)
      
         - null_blk removal race condition fix (Bob)
      
         - req/bio_op() cleanups (Chaitanya)
      
         - Series cleaning up the segment accounting, and request/bio mapping
           (Christoph)
      
         - Series cleaning up the page getting/putting for bios (Christoph)
      
         - block cgroup cleanups and moving it to where it is used (Christoph)
      
         - block cgroup fixes (Tejun)
      
         - Series of fixes and improvements to bcache, most notably a write
           deadlock fix (Coly)
      
         - blk-iolatency STS_AGAIN and accounting fixes (Dennis)
      
         - Series of improvements and fixes to BFQ (Douglas, Paolo)
      
         - debugfs_create() return value check removal for drbd (Greg)
      
         - Use struct_size(), where appropriate (Gustavo)
      
         - Two lighnvm fixes (Heiner, Geert)
      
         - MD fixes, including a read balance and corruption fix (Guoqing,
           Marcos, Xiao, Yufen)
      
         - block opal shadow mbr additions (Jonas, Revanth)
      
         - sbitmap compare-and-exhange improvemnts (Pavel)
      
         - Fix for potential bio->bi_size overflow (Ming)
      
         - NVMe pull requests:
             - improved PCIe suspent support (Keith Busch)
             - error injection support for the admin queue (Akinobu Mita)
             - Fibre Channel discovery improvements (James Smart)
             - tracing improvements including nvmetc tracing support (Minwoo Im)
             - misc fixes and cleanups (Anton Eidelman, Minwoo Im, Chaitanya
               Kulkarni)"
      
         - Various little fixes and improvements to drivers and core"
      
      * tag 'for-5.3/block-20190708' of git://git.kernel.dk/linux-block: (153 commits)
        blk-iolatency: fix STS_AGAIN handling
        block: nr_phys_segments needs to be zero for REQ_OP_WRITE_ZEROES
        blk-mq: simplify blk_mq_make_request()
        blk-mq: remove blk_mq_put_ctx()
        sbitmap: Replace cmpxchg with xchg
        block: fix .bi_size overflow
        block: sed-opal: check size of shadow mbr
        block: sed-opal: ioctl for writing to shadow mbr
        block: sed-opal: add ioctl for done-mark of shadow mbr
        block: never take page references for ITER_BVEC
        direct-io: use bio_release_pages in dio_bio_complete
        block_dev: use bio_release_pages in bio_unmap_user
        block_dev: use bio_release_pages in blkdev_bio_end_io
        iomap: use bio_release_pages in iomap_dio_bio_end_io
        block: use bio_release_pages in bio_map_user_iov
        block: use bio_release_pages in bio_unmap_user
        block: optionally mark pages dirty in bio_release_pages
        block: move the BIO_NO_PAGE_REF check into bio_release_pages
        block: skd_main.c: Remove call to memset after dma_alloc_coherent
        block: mtip32xx: Remove call to memset after dma_alloc_coherent
        ...
      3b99107f
    • Linus Torvalds's avatar
      Merge tag 'devprop-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 0415052d
      Linus Torvalds authored
      Pull device properties framework updates from Rafael Wysocki:
       "These add helpers for counting items in a property array and extend
        the "software nodes" support to be more convenient for representing
        device properties supplied by drivers and make the intel_cht_int33fe
        driver use that.
      
        Specifics:
      
         - Add helpers to count items in a property array (Andy Shevchenko).
      
         - Extend "software nodes" support to be more convenient for
           representing device properties supplied by drivers (Heikki
           Krogerus).
      
         - Add device_find_child_by_name() helper to the driver core (Heikki
           Krogerus).
      
         - Extend device connection code to also look for references provided
           via fwnode pointers (Heikki Krogerus).
      
         - Start to register proper struct device objects for USB Type-C muxes
           and orientation switches (Heikki Krogerus).
      
         - Update the intel_cht_int33fe driver to describe devices in a more
           general way with the help of "software nodes" (Heikki Krogerus)"
      
      * tag 'devprop-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
        device property: Add helpers to count items in an array
        platform/x86: intel_cht_int33fe: Replacing the old connections with references
        platform/x86: intel_cht_int33fe: Supply fwnodes for the external dependencies
        platform/x86: intel_cht_int33fe: Provide fwnode for the USB connector
        platform/x86: intel_cht_int33fe: Provide software nodes for the devices
        platform/x86: intel_cht_int33fe: Remove unused fusb302 device property
        platform/x86: intel_cht_int33fe: Register max17047 in its own function
        usb: typec: Registering real device entries for the muxes
        device connection: Find connections also by checking the references
        device property: Introduce fwnode_find_reference()
        ACPI / property: Don't limit named child node matching to data nodes
        driver core: Add helper device_find_child_by_name()
        software node: Add software_node_get_reference_args()
        software node: Use kobject name when finding child nodes by name
        software node: Add support for static node descriptors
        software node: Simplify software_node_release() function
        software node: Allow node creation without properties
      0415052d
    • Linus Torvalds's avatar
      Merge tag 'acpi-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 4b470452
      Linus Torvalds authored
      Pull ACPI updates from Rafael Wysocki:
       "These update the ACPICA code in the kernel to upstream revision
        20190703, fix up the handling of GPEs in ACPICA, allow some more ACPI
        code to be built on ARM64 platforms, allow BGRT to be overridden, fix
        minor issues and clean up assorted pieces of ACPI code.
      
        Specifics:
      
         - Update the ACPICA code in the kernel to upstream revision 20190703
           including:
             - Initial/default namespace creation simplification (Bob Moore).
             - Object initialization sequence update (Bob Moore).
             - Removal of legacy module-level (dead) code (Erik Schmauss).
             - Table load object initialization update (Erik Schmauss,
               Nikolaus Voss).
      
         - Fix GPE enabling issue in ACPICA causing premature wakeups from
           suspend-to-idle to occur (Rafael Wysocki).
      
         - Allow ACPI AC and battery drivers to be built on non-X86 (Ard
           Biesheuvel).
      
         - Fix address space h...
      4b470452
    • Linus Torvalds's avatar
      Merge tag 'pm-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · cf2d213e
      Linus Torvalds authored
      Pull power management updates from Rafael Wysocki:
       "These update PCI and ACPI power management (improved handling of ACPI
        power resources and PCIe link delays, fixes related to corner cases,
        hibernation handling rework), fix and extend the operating performance
        points (OPP) framework, add new cpufreq drivers for Raspberry Pi and
        imx8m chips, update some other cpufreq drivers, clean up assorted
        pieces of PM code and documentation and update tools.
      
        Specifics:
      
         - Improve the handling of shared ACPI power resources in the PCI bus
           type layer (Mika Westerberg).
      
         - Make the PCI layer take link delays required by the PCIe spec into
           account as appropriate and avoid polling devices in D3cold for PME
           (Mika Westerberg).
      
         - Fix some corner case issues in ACPI device power management and in
           the PCI bus type layer, optimiza and clean up the handling of
           runtime-suspended PCI devices during system-wide transitions to
           sleep states (Rafael Wysocki).
      
         - Rework hibernation handling in the ACPI core and the PCI bus type
           to resume runtime-suspended devices before hibernation (which
           allows some functional problems to be avoided) and fix some ACPI
           power management issues related to hiberation (Rafael Wysocki).
      
         - Extend the operating performance points (OPP) framework to support
           a wider range of devices (Rajendra Nayak, Stehpen Boyd).
      
         - Fix issues related to genpd_virt_devs and issues with platforms
           using the set_opp() callback in the OPP framework (Viresh Kumar,
           Dmitry Osipenko).
      
         - Add new cpufreq driver for Raspberry Pi (Nicolas Saenz Julienne).
      
         - Add new cpufreq driver for imx8m and imx7d chips (Leonard Crestez).
      
         - Fix and clean up the pcc-cpufreq, brcmstb-avs-cpufreq, s5pv210, and
           armada-37xx cpufreq drivers (David Arcari, Florian Fainelli, Paweł
           Chmiel, YueHaibing).
      
         - Clean up and fix the cpufreq core (Viresh Kumar, Daniel Lezcano).
      
         - Fix minor issue in the ACPI system sleep support code and export
           one function from it (Lenny Szubowicz, Dexuan Cui).
      
         - Clean up assorted pieces of PM code and documentation (Kefeng Wang,
           Andy Shevchenko, Bart Van Assche, Greg Kroah-Hartman, Fuqian Huang,
           Geert Uytterhoeven, Mathieu Malaterre, Rafael Wysocki).
      
         - Update the pm-graph utility to v5.4 (Todd Brandt).
      
         - Fix and clean up the cpupower utility (Abhishek Goel, Nick Black)"
      
      * tag 'pm-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (57 commits)
        ACPI: PM: Make acpi_sleep_state_supported() non-static
        PM: sleep: Drop dev_pm_skip_next_resume_phases()
        ACPI: PM: Unexport acpi_device_get_power()
        Documentation: ABI: power: Add missing newline at end of file
        ACPI: PM: Drop unused function and function header
        ACPI: PM: Introduce "poweroff" callbacks for ACPI PM domain and LPSS
        ACPI: PM: Simplify and fix PM domain hibernation callbacks
        PCI: PM: Simplify bus-level hibernation callbacks
        PM: ACPI/PCI: Resume all devices during hibernation
        cpufreq: Avoid calling cpufreq_verify_current_freq() from handle_update()
        cpufreq: Consolidate cpufreq_update_current_freq() and __cpufreq_get()
        kernel: power: swap: use kzalloc() instead of kmalloc() followed by memset()
        cpufreq: Don't skip frequency validation for has_target() drivers
        PCI: PM/ACPI: Refresh all stale power state data in pci_pm_complete()
        PCI / ACPI: Add _PR0 dependent devices
        ACPI / PM: Introduce concept of a _PR0 dependent device
        PCI / ACPI: Use cached ACPI device state to get PCI device power state
        ACPI: PM: Allow transitions to D0 to occur in special cases
        ACPI: PM: Avoid evaluating _PS3 on transitions from D3hot to D3cold
        cpufreq: Use has_target() instead of !setpolicy
        ...
      cf2d213e
    • Linus Torvalds's avatar
      Merge tag 'sound-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound · 4cdd5f91
      Linus Torvalds authored
      Pull sound updates from Takashi Iwai:
       "Many updates in this development cycle are found in ASoC where it got
        a wide range of changes for the continued refactoring.
      
        Some highlights are below.
      
        ASoC:
      
         - Continued refactoring work by Morimoto-san toward the full
           componentization; the changes are seen allover the places
      
         - Support for force disconnecting muxes in DAPM
      
         - Continued development of ASoC Intel SOF stuff
      
         - New drivers for Cirrus Logic CS47L35, CS47L85 and CS47L90, Conexant
           CX2072X, Realtek RT1011 and RT1308
      
        HD-audio:
      
         - More fixes and adjustments for ASoC SOF HD-audio
      
         - Fix for resume problem on some Realtek codecs
      
        USB-audio:
      
         - A few fixes for the issues reported by syzbot USB fuzzer
      
         - Fix for UAC2 extension unit parser
      
         - Quirks for Line6 Helix, Emgaic Unitor 8
      
        FireWire:
      
         - Lots of code refactoring and fixes in most of its components"
      
      * tag 'sound-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (626 commits)
        ALSA: firewire-lib: code refactoring for local variables
        ALSA: firewire-lib: code refactoring for post operation to data block counter
        ALSA: firewire-lib: code refactoring for error path of parser for CIP header
        ALSA: firewire-lib: fix different data block counter between probed event and transferred isochronous packet
        ALSA: firewire-lib: fix initial value of data block count for IR context without CIP_DBC_IS_END_EVENT
        ALSA: firewire-lib/fireface: fix initial value of data block counter for IR context with CIP_NO_HEADER
        ALSA: firewire-lib: fix invalid length of rx packet payload for tracepoint events
        ALSA: usb-audio: fix Line6 Helix audio format rates
        firewire-motu: fix wrong reference count for stream functionality at error path of rawmidi interface
        ALSA: firewire-digi00x: fix wrong reference count for stream functionality at error path of rawmidi interface
        ALSA: dice: fix wrong reference count for stream functionality at error path of rawmidi interface
        ALSA: oxfw: fix wrong reference count for stream functionality at error path of rawmidi interface
        ALSA: fireworks: fix wrong reference count for stream functionality at error path of rawmidi interface
        ALSA: bebob: fix wrong reference count for stream functionality at error path of rawmidi interface
        ASoC: SOF: Intel: implement runtime idle for CNL/APL
        ASoC: SOF: add runtime idle callback
        ASoC: hdac_hdmi: report codec link up/down status to bus
        ASoC: SOF: debug: fix possible memory leak in sof_dfsentry_write()
        ASoC: sunxi: sun50i-codec-analog: Add earpiece
        ASoC: rt5665: remove redundant assignment to variable idx
        ...
      4cdd5f91
    • Linus Torvalds's avatar
      Merge tag 'fbdev-v5.3' of git://github.com/bzolnier/linux · 2d41ef54
      Linus Torvalds authored
      Pull fbdev updates from Bartlomiej Zolnierkiewicz:
      
       - remove fbdev notifier usage for fbcon (as prep work to clean up the
         fbcon locking), add locking checks in vt/console code and make
         assorted cleanups in fbdev and backlight code (Daniel Vetter)
      
       - add COMPILE_TEST support to atmel_lcdfb, da8xx-fb, gbefb, imxfb,
         pvr2fb and pxa168fb drivers (me)
      
       - fix DMA API abuse in au1200fb and jz4740_fb drivers (Christoph
         Hellwig)
      
       - add check for new BGRT status field rotation bits in efifb driver
         (Hans de Goede)
      
       - mark expected switch fall-throughs in s3c-fb driver (Gustavo A. R.
         Silva)
      
       - remove fbdev mxsfb driver in favour of the drm version (Fabio
         Estevam)
      
       - remove broken rfbi code from omap2fb driver (me)
      
       - misc fixes (Arnd Bergmann, Shobhit Kukreti, Wei Yongjun, me)
      
       - misc cleanups (Gustavo A. R. Silva, Colin Ian King, me)
      
      * tag 'fbdev-v5.3' of git://github.com/bzolnier/linux: (62 commits)
        video: fbdev: imxfb: fix a ...
      2d41ef54
    • Linus Torvalds's avatar
      Merge tag 'media/v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media · ed63b9c8
      Linus Torvalds authored
      Pull media updates from Mauro Carvalho Chehab:
      
       - new Atmel microship ISC driver
      
       - coda has gained support for mpeg2 and mpeg4
      
       - cxusb gained support for analog TV
      
       - rockchip staging driver was split into two separate staging drivers
      
       - added a new staging driver for Allegro DVT video IP core
      
       - added a new staging driver for Amlogic Meson video decoder
      
       - lots of improvements and cleanups
      
      * tag 'media/v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (398 commits)
        media: allegro: use new v4l2_m2m_ioctl_try_encoder_cmd funcs
        media: doc-rst: Fix typos
        media: radio-raremono: change devm_k*alloc to k*alloc
        media: stv0297: fix frequency range limit
        media: rc: Prefer KEY_NUMERIC_* for number buttons on remotes
        media: dvb_frontend: split dvb_frontend_handle_ioctl function
        media: mceusb: disable "nonsensical irdata" messages
        media: rc: remove redundant dev_err messa...
      ed63b9c8
    • Linus Torvalds's avatar
      Merge tag 'please-pull-for_5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras · 947fbd4c
      Linus Torvalds authored
      Pull EDAC updates from Tony Luck:
       "All the bits that Boris had queued in his tree plus four patches to
        add support for Intel Icelake Xeon and then fix a few corner cases"
      
      * tag 'please-pull-for_5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
        EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec
        EDAC, skx, i10nm: Fix source ID register offset
        EDAC, i10nm: Check ECC enabling status per channel
        EDAC, i10nm: Add Intel additional Ice-Lake support
        EDAC: Make edac_debugfs_create_x*() return void
        EDAC/aspeed: Remove set but not used variable 'np'
        EDAC/ie31200: Reformat PCI device table
        EDAC/ie31200: Add Intel Coffee Lake CPU support
        EDAC/sifive: Add EDAC platform driver for SiFive SoCs
        EDAC/sb_edac: Remove redundant update of tad_base
        arm64: dts: stratix10: Add SDMMC EDAC node
        EDAC/altera: Add Stratix10 SDMMC support
        arm64: dts: stratix10: Add OCRAM EDAC node
        EDAC/altera: Add Stratix10 OCRAM ECC support
        EDAC/sysfs: Drop device references properly
        EDAC/sysfs: Fix memory leak when creating a csrow object
      947fbd4c
    • Linus Torvalds's avatar
      Merge tag 'iommu-updates-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu · 6b04014f
      Linus Torvalds authored
      Pull iommu updates from Joerg Roedel:
      
       - Make the dma-iommu code more generic so that it can be used outside
         of the ARM context with other IOMMU drivers. Goal is to make use of
         it on x86 too.
      
       - Generic IOMMU domain support for the Intel VT-d driver. This driver
         now makes more use of common IOMMU code to allocate default domains
         for the devices it handles.
      
       - An IOMMU fault reporting API to userspace. With that the IOMMU fault
         handling can be done in user-space, for example to forward the faults
         to a VM.
      
       - Better handling for reserved regions requested by the firmware. These
         can be 'relaxed' now, meaning that those don't prevent a device being
         attached to a VM.
      
       - Suspend/Resume support for the Renesas IOMMU driver.
      
       - Added support for dumping SVA related fields of the DMAR table in the
         Intel VT-d driver via debugfs.
      
       - A pile of smaller fixes and cleanups.
      
      * tag 'iommu-updates-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu: (90 commits)
        iommu/omap: No need to check return value of debugfs_create functions
        iommu/arm-smmu-v3: Invalidate ATC when detaching a device
        iommu/arm-smmu-v3: Fix compilation when CONFIG_CMA=n
        iommu/vt-d: Cleanup unused variable
        iommu/amd: Flush not present cache in iommu_map_page
        iommu/amd: Only free resources once on init error
        iommu/amd: Move gart fallback to amd_iommu_init
        iommu/amd: Make iommu_disable safer
        iommu/io-pgtable: Support non-coherent page tables
        iommu/io-pgtable: Replace IO_PGTABLE_QUIRK_NO_DMA with specific flag
        iommu/io-pgtable-arm: Add support to use system cache
        iommu/arm-smmu-v3: Increase maximum size of queues
        iommu/vt-d: Silence a variable set but not used
        iommu/vt-d: Remove an unused variable "length"
        iommu: Fix integer truncation
        iommu: Add padding to struct iommu_fault
        iommu/vt-d: Consolidate domain_init() to avoid duplication
        iommu/vt-d: Cleanup after delegating DMA domain to generic iommu
        iommu/vt-d: Fix suspicious RCU usage in probe_acpi_namespace_devices()
        iommu/vt-d: Allow DMA domain attaching to rmrr locked device
        ...
      6b04014f
    • Linus Torvalds's avatar
      Merge tag 'spi-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi · c6b6cebb
      Linus Torvalds authored
      Pull spi updates from Mark Brown:
       "For the most part this is a quiet release for SPI, though there's
        several of the more widely used drivers that have had some fairly
        substantial development done on them, mainly improving performance and
        adding support for some more obscure use cases.
      
        Summary:
      
         - Support for configuring a minimum time for chip select to be
           deasserted between transfers from Martin Sperl.
      
         - A rework of the ACPI device instantiation code from Ard Biesheuvel.
      
         - Fairly substantial development on the AT91 USART, BCM2835 and
           Tegra114 drivers.
      
         - New driver for Socionext SynQuacer"
      
      * tag 'spi-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: (58 commits)
        spi: pxa2xx: Add support for Intel Elkhart Lake
        spi: atmel-quadspi: fix resume call
        spi: atmel-quadspi: void return type for atmel_qspi_init()
        spi: pxa2xx: Set minimum transfer speed
        spi: stm32-qspi: remove signal sensitive on completion
        dt-bindings: spi: stm32-qspi: add dma properties
        spi: uniphier: fix zero-length transfer
        spi: uniphier: fix timeout error
        spi/acpi: avoid spurious matches during slave enumeration
        spi: spi-stm32-qspi: Remove CR_FTHRES_MASK usage
        spi: fix ctrl->num_chipselect constraint
        spi: spi-synquacer: Fixed build on architectures missing readsl/writesl series
        spi/acpi: fix incorrect ACPI parent check
        spi: don't open code list_for_each_entry_safe_reverse()
        spi: No need to assign dummy value in spi_unregister_controller()
        spi: Add a prototype for exported spi_set_cs_timing()
        spi/acpi: enumerate all SPI slaves in the namespace
        spi: qup: fix PIO/DMA transfers.
        spi: Use struct_size() helper
        spi: mediatek: add SPI_LSB_FIRST support
        ...
      c6b6cebb
    • Linus Torvalds's avatar
      Merge tag 'regulator-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator · 98537ee9
      Linus Torvalds authored
      Pull regulator updates from Mark Brown:
       "A couple of new features in the core, the most interesting one being
        support for complex regulator coupling configurations initially
        targeted at nVidia Tegra SoCs, and some new drivers but otherwise
        quite a quiet release.
      
        Summary:
      
         - Core support for gradual ramping of voltages for devices that can't
           manage large changes in hardware from Bartosz Golaszewski.
      
         - Core support for systems that have complex coupling requirements
           best described via code, contributed by Dmitry Osipenko.
      
         - New drivers for Dialog SLG51000, Qualcomm PM8005 and ST
           Microelectronics STM32-Booster"
      
      * tag 'regulator-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: (52 commits)
        regulator: max77650: use vsel_step
        regulator: implement selector stepping
        regulator: max77650: add MODULE_ALIAS()
        regulator: max77620: remove redundant assignment to variable ret
        dt-bindings: regulator: add support for the stm32-booster
        regulator: add support for the stm32-booster
        regulator: s2mps11: Adjust supported buck voltages to real values
        regulator: s2mps11: Fix buck7 and buck8 wrong voltages
        gpio: Fix return value mismatch of function gpiod_get_from_of_node()
        regulator: core: Expose some of core functions needed by couplers
        regulator: core: Introduce API for regulators coupling customization
        regulator: s2mps11: Add support for disabling S2MPS11 regulators in suspend
        regulator: s2mps11: Reduce number of rdev_get_id() calls
        regulator: qcom_spmi: Do NULL check for lvs
        regulator: qcom_spmi: Fix math of spmi_regulator_set_voltage_time_sel
        regulator: da9061/62: Adjust LDO voltage selection minimum value
        regulator: s2mps11: Fix ERR_PTR dereference on GPIO lookup failure
        regulator: qcom_spmi: add PMS405 SPMI regulator
        dt-bindings: qcom_spmi: Document pms405 support
        arm64: dts: msm8998-mtp: Add pm8005_s1 regulator
        ...
      98537ee9
    • Linus Torvalds's avatar
      Merge tag 'regmap-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap · 12a5146b
      Linus Torvalds authored
      Pull regmap updates from Mark Brown:
       "This is a relatively busy release for regmap, though not busy in the
        grand scheme of things, with the addition of support for I3C from
        Vitor Soares and a few small fixes and cleanups"
      
      * tag 'regmap-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
        regmap: select CONFIG_REGMAP while REGMAP_SCCB is set
        regmap: lzo: Switch to bitmap_zalloc()
        regmap: fix bulk writes on paged registers
        regmap: add i3c bus support
        regmap: debugfs: Fix memory leak in regmap_debugfs_init
      12a5146b
    • Linus Torvalds's avatar
      Merge tag 'gpio-v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio · 2ec98f56
      Linus Torvalds authored
      Pull GPIO updates from Linus Walleij:
       "This is the big slew of GPIO changes for the v5.3 kernel cycle. This
        is mostly incremental work this time.
      
        Three important things:
      
         - The FMC subsystem is deleted through my tree. This happens through
           GPIO as its demise was discussed in relation to a patch decoupling
           its GPIO implementation from the standard way of handling GPIO. As
           it turns out, that is not the only subsystem it reimplements and
           the authors think it is better do scratch it and start over using
           the proper kernel subsystems than try to polish the rust shiny. See
           the commit (ACKed by the maintainers) for details.
      
         - Arnd made a small devres patch that was ACKed by Greg and goes into
           the device core.
      
         - SPDX header change colissions may happen, because at times I've
           seen that quite a lot changed during the -rc:s in regards to SPDX.
           (It is good stuff, tglx has me convinced, and it is worth the
           occasional pain.)
      
        Apart from this is is nothing controversial or problematic.
      
        Summary:
      
        Core:
      
         - When a gpio_chip request GPIOs from itself, it can now fully
           control the line characteristics, both machine and consumer flags.
           This makes a lot of sense, but took some time before I figured out
           that this is how it has to work.
      
         - Several smallish documentation fixes.
      
        New drivers:
      
         - The PCA953x driver now supports the TI TCA9539.
      
         - The DaVinci driver now supports the K3 AM654 SoCs.
      
        Driver improvements:
      
         - Major overhaul and hardening of the OMAP driver by Russell King.
      
         - Starting to move some drivers to the new API passing irq_chip along
           with the gpio_chip when adding the gpio_chip instead of adding it
           separately.
      
        Unrelated:
      
         - Delete the FMC subsystem"
      
      * tag 'gpio-v5.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: (87 commits)
        Revert "gpio: tegra: Clean-up debugfs initialisation"
        gpiolib: Use spinlock_t instead of struct spinlock
        gpio: stp-xway: allow compile-testing
        gpio: stp-xway: get rid of the #include <lantiq_soc.h> dependency
        gpio: stp-xway: improve module clock error handling
        gpio: stp-xway: simplify error handling in xway_stp_probe()
        gpiolib: Clarify use of non-sleeping functions
        gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants
        gpiolib: Document new gpio_chip.init_valid_mask field
        Documentation: gpio: Fix reference to gpiod_get_array()
        gpio: pl061: drop duplicate printing of device name
        gpio: altera: Pass irqchip when adding gpiochip
        gpio: siox: Use devm_ managed gpiochip
        gpio: siox: Add struct device *dev helper variable
        gpio: siox: Pass irqchip when adding gpiochip
        drivers: gpio: amd-fch: make resource struct const
        devres: allow const resource arguments
        gpio: ath79: Pass irqchip when adding gpiochip
        gpio: tegra: Clean-up debugfs initialisation
        gpio: siox: Switch to IRQ_TYPE_NONE
        ...
      2ec98f56
    • Linus Torvalds's avatar
      Merge tag 'i3c/for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux · 96407298
      Linus Torvalds authored
      Pull ic3 updates from Boris Brezillon:
      
       - Drop support for 10-bit I2C addresses
      
       - Add support for limited bus mode
      
       - Fix the Cadence DT binding doc
      
       - Use struct_size() to allocate a DEFSLVS packet
      
      * tag 'i3c/for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux:
        i3c: master: Use struct_size() helper
        dt-bindings: i3c: cdns: Use correct cells for I2C device
        i3c: dw: add limited bus mode support
        i3c: add mixed limited bus mode
        i3c: fix i2c and i3c scl rate by bus mode
        dt-bindings: i3c: Document dropped support for I2C 10 bit devices
        i3c: Drop support for I2C 10 bit addresing
      96407298
  3. Jul 09, 2019
    • Linus Torvalds's avatar
      Merge tag 'leds-for-5.3-rc1' of... · 8a3367cc
      Linus Torvalds authored
      Merge tag 'leds-for-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds
      
      Pull LED updates from Jacek Anaszewski:
      
       - Add a new LED common module for ti-lmu driver family
      
       - Modify MFD ti-lmu bindings
              - add ti,brightness-resolution
              - add the ramp up/down property
      
       - Add regulator support for LM36274 driver to lm363x-regulator.c
      
       - New LED class drivers with DT bindings:
              - leds-spi-byte
              - leds-lm36274
              - leds-lm3697 (move the support from MFD to LED subsystem)
      
       - Simplify getting the I2C adapter of a client:
              - leds-tca6507
              - leds-pca955x
      
       - Convert LED documentation to ReST
      
      * tag 'leds-for-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds:
        dt: leds-lm36274.txt: fix a broken reference to ti-lmu.txt
        docs: leds: convert to ReST
        leds: leds-tca6507: simplify getting the adapter of a client
        leds: leds-pca955x: simplify getting the adapter of a client
        leds: lm36274: Introduce the TI LM36274 LED driver
        dt-bindings: leds: Add LED bindings for the LM36274
        regulator: lm363x: Add support for LM36274
        mfd: ti-lmu: Add LM36274 support to the ti-lmu
        dt-bindings: mfd: Add lm36274 bindings to ti-lmu
        leds: max77650: Remove set but not used variable 'parent'
        leds: avoid flush_work in atomic context
        leds: lm3697: Introduce the lm3697 driver
        mfd: ti-lmu: Remove support for LM3697
        dt-bindings: ti-lmu: Modify dt bindings for the LM3697
        leds: TI LMU: Add common code for TI LMU devices
        leds: spi-byte: add single byte SPI LED driver
        dt-bindings: leds: Add binding for spi-byte LED.
        dt-bindings: mfd: LMU: Add ti,brightness-resolution
        dt-bindings: mfd: LMU: Add the ramp up/down property
      8a3367cc