1. 22 Aug, 2018 6 commits
    • Masahiro Yamada's avatar
      scripts/dtc: consolidate include path options in Makefile · e3fd9b53
      Masahiro Yamada authored
      It is tedious to specify extra compiler options for every file.
      HOST_EXTRACFLAGS is useful to add options to all files in a
      directory.
      
      -I$(src)/libfdt is needed for all the files in this directory
      to include libfdt_env.h etc. from scripts/dtc/libfdt/.
      
      On the other hand, -I$(src) is used to include check-in headers
      from generated C files.  Thus, I added it only to dtc-lexer.lex.o
      and dtc-parser.tab.o .
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: default avatarRob Herring <robh@kernel.org>
      e3fd9b53
    • Linus Torvalds's avatar
      Merge tag 'fuse-update-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse · ad1d6973
      Linus Torvalds authored
      Pull fuse update from Miklos Szeredi:
       "Various bug fixes and cleanups"
      
      * tag 'fuse-update-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
        fuse: reduce allocation size for splice_write
        fuse: use kvmalloc to allocate array of pipe_buffer structs.
        fuse: convert last timespec use to timespec64
        fs: fuse: Adding new return type vm_fault_t
        fuse: simplify fuse_abort_conn()
        fuse: Add missed unlock_page() to fuse_readpages_fill()
        fuse: Don't access pipe->buffers without pipe_lock()
        fuse: fix initial parallel dirops
        fuse: Fix oops at process_init_reply()
        fuse: umount should wait for all requests
        fuse: fix unlocked access to processing queue
        fuse: fix double request_end()
      ad1d6973
    • Linus Torvalds's avatar
      Merge tag 'ovl-update-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs · d9a185f8
      Linus Torvalds authored
      Pull overlayfs updates from Miklos Szeredi:
       "This contains two new features:
      
         - Stack file operations: this allows removal of several hacks from
           the VFS, proper interaction of read-only open files with copy-up,
           possibility to implement fs modifying ioctls properly, and others.
      
         - Metadata only copy-up: when file is on lower layer and only
           metadata is modified (except size) then only copy up the metadata
           and continue to use the data from the lower file"
      
      * tag 'ovl-update-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs: (66 commits)
        ovl: Enable metadata only feature
        ovl: Do not do metacopy only for ioctl modifying file attr
        ovl: Do not do metadata only copy-up for truncate operation
        ovl: add helper to force data copy-up
        ovl: Check redirect on index as well
        ovl: Set redirect on upper inode when it is linked
        ovl: Set redirect on metacopy files upon rename
        ovl: Do not set dentry type ORIGIN for broken hardlinks
        ovl: Add an inode flag OVL_CONST_INO
        ovl: Treat metacopy dentries as type OVL_PATH_MERGE
        ovl: Check redirects for metacopy files
        ovl: Move some dir related ovl_lookup_single() code in else block
        ovl: Do not expose metacopy only dentry from d_real()
        ovl: Open file with data except for the case of fsync
        ovl: Add helper ovl_inode_realdata()
        ovl: Store lower data inode in ovl_inode
        ovl: Fix ovl_getattr() to get number of blocks from lower
        ovl: Add helper ovl_dentry_lowerdata() to get lower data dentry
        ovl: Copy up meta inode data from lowest data inode
        ovl: Modify ovl_lookup() and friends to lookup metacopy dentry
        ...
      d9a185f8
    • Linus Torvalds's avatar
      Merge tag 'xfs-4.19-merge-7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux · c22fc16d
      Linus Torvalds authored
      Pull xfs fixes from Darrick Wong:
      
       - Fix an uninitialized variable
      
       - Don't use obviously garbage AG header counters to calculate
         transaction reservations
      
       - Trigger icount recalculation on bad icount when mounting
      
      * tag 'xfs-4.19-merge-7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
        iomap: fix WARN_ON_ONCE on uninitialized variable
        xfs: sanity check ag header values in xrep_calc_ag_resblks
        xfs: recalculate summary counters at mount time if icount is bad
      c22fc16d
    • Linus Torvalds's avatar
      Merge tag 'for-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply · c1fecabe
      Linus Torvalds authored
      Pull power supply and reset updates from Sebastian Reichel:
      
       - Improve support for TI bq20z75 in sbs-battery
      
       - Add Qualcomm PM8xxx reboot driver
      
       - Add cros-ec USBPD charger driver
      
       - Move ds2760 battery driver from w1 to power-supply and add DT support
      
       - Misc fixes
      
      * tag 'for-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply: (28 commits)
        power: supply: bq27xxx: Update comments
        power: supply: max77693_charger: fix unintentional fall-through
        power: supply: mark expected switch fall-throughs
        power: supply: lego_ev3_battery: fix Vce offset
        power: supply: lego_ev3_battery: Don't ignore iio_read_channel_processed() return value
        power: supply: ds2760_battery: add devicetree probing
        power: supply: ds2760_battery: merge ds2760 supply driver with its w1 slave companion
        w1: core: match sub-nodes of bus masters in devicetree
        dt-bindings: w1: document bindings for ds2760 battery monitor
        dt-bindings: w1: document generic onewire bindings
        power: supply: adp5061: Fix a couple off by ones
        dt-bindings: power: reset: qcom: Add resin binding
        adp5061: New driver for ADP5061 I2C battery charger
        power: generic-adc-battery: check for duplicate properties copied from iio channels
        power: generic-adc-battery: fix out-of-bounds write when copying channel properties
        power: supply: axp288_charger: Fix initial constant_charge_current value
        power: supply: ab8500: stop using getnstimeofday64()
        power: gemini-poweroff: Avoid more spurious poweroffs
        power: vexpress: fix corruption in notifier registration
        power: remove possible deadlock when unregistering power_supply
        ...
      c1fecabe
    • Linus Torvalds's avatar
      Merge branch 'i2c/for-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · 99cc7ad4
      Linus Torvalds authored
      Pull i2c updates from Wolfram Sang:
      
       - the core has now a lockless variant of i2c_smbus_xfer. Some open
         coded versions of this got removed in drivers. This also enables
         proper SCCB support in regmap.
      
       - locking got a more precise naming. i2c_{un}lock_adapter() had to go,
         and we know use i2c_lock_bus() consistently with flags like
         I2C_LOCK_ROOT_ADAPTER and I2C_LOCK_SEGMENT to avoid ambiguity.
      
       - the gpio fault injector got a new delicate testcase
      
       - the bus recovery procedure got fixed to handle the new testcase
         correctly
      
       - a new quirk flag for controllers not able to handle zero length
         messages together with driver updates to use it
      
       - new drivers: FSI bus attached I2C masters, GENI I2C controller, Owl
         family S900
      
       - and a good set of driver improvements and bugfixes
      
      * 'i2c/for-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux: (77 commits)
        i2c: rcar: implement STOP and REP_START according to docs
        i2c: rcar: refactor private flags
        i2c: core: ACPI: Make acpi_gsb_i2c_read_bytes() check i2c_transfer return value
        i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes
        dt-bindings: i2c: rcar: Add r8a774a1 support
        dt-bindings: i2c: sh_mobile: Add r8a774a1 support
        i2c: imx: Simplify stopped state tracking
        i2c: imx: Fix race condition in dma read
        i2c: pasemi: remove hardcoded bus numbers on smbus
        i2c: designware: Add SPDX license tag
        i2c: designware: Convert to use struct i2c_timings
        i2c: core: Parse SDA hold time from firmware
        i2c: designware-pcidrv: Mark expected switch fall-through
        i2c: amd8111: Mark expected switch fall-through
        i2c: sh_mobile: use core to detect 'no zero length read' quirk
        i2c: xlr: use core to detect 'no zero length' quirk
        i2c: rcar: use core to detect 'no zero length' quirk
        i2c: stu300: use core to detect 'no zero length' quirk
        i2c: pmcmsp: use core to detect 'no zero length' quirk
        i2c: mxs: use core to detect 'no zero length' quirk
        ...
      99cc7ad4
  2. 21 Aug, 2018 8 commits
    • Linus Torvalds's avatar
      Merge branch 'siginfo-linus' of... · 0214f46b
      Linus Torvalds authored
      Merge branch 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
      
      Pull core signal handling updates from Eric Biederman:
       "It was observed that a periodic timer in combination with a
        sufficiently expensive fork could prevent fork from every completing.
        This contains the changes to remove the need for that restart.
      
        This set of changes is split into several parts:
      
         - The first part makes PIDTYPE_TGID a proper pid type instead
           something only for very special cases. The part starts using
           PIDTYPE_TGID enough so that in __send_signal where signals are
           actually delivered we know if the signal is being sent to a a group
           of processes or just a single process.
      
         - With that prep work out of the way the logic in fork is modified so
           that fork logically makes signals received while it is running
           appear to be received after the fork completes"
      
      * 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace: (22 commits)
        signal: Don't send signals to tasks that don't exist
        signal: Don't restart fork when signals come in.
        fork: Have new threads join on-going signal group stops
        fork: Skip setting TIF_SIGPENDING in ptrace_init_task
        signal: Add calculate_sigpending()
        fork: Unconditionally exit if a fatal signal is pending
        fork: Move and describe why the code examines PIDNS_ADDING
        signal: Push pid type down into complete_signal.
        signal: Push pid type down into __send_signal
        signal: Push pid type down into send_signal
        signal: Pass pid type into do_send_sig_info
        signal: Pass pid type into send_sigio_to_task & send_sigurg_to_task
        signal: Pass pid type into group_send_sig_info
        signal: Pass pid and pid type into send_sigqueue
        posix-timers: Noralize good_sigevent
        signal: Use PIDTYPE_TGID to clearly store where file signals will be sent
        pid: Implement PIDTYPE_TGID
        pids: Move the pgrp and session pid pointers from task_struct to signal_struct
        kvm: Don't open code task_pid in kvm_vcpu_ioctl
        pids: Compute task_tgid using signal->leader_pid
        ...
      0214f46b
    • Linus Torvalds's avatar
      Merge tag 'chrome-platform-for-linus-4.19' of... · 40fafdcb
      Linus Torvalds authored
      Merge tag 'chrome-platform-for-linus-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform
      
      Pull chrome platform updates from Benson Leung.
      
      Everything but the SPDX identifier updates actually came in earlier
      through the MFD merge.
      
      * tag 'chrome-platform-for-linus-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform:
        platform/chrome: chromeos_tbmc - fix SPDX identifier
      40fafdcb
    • Linus Torvalds's avatar
      Merge tag 'microblaze-v4.19-rc1' of git://git.monstr.eu/linux-2.6-microblaze · 5e268309
      Linus Torvalds authored
      Pull arch/microblaze updates from Michal Simek:
      
       - use generic noncoherent direct mapping
      
       - use LDFLAGS instead of LD
      
       - pci error path fix
      
       - remove incorrect comments
      
      * tag 'microblaze-v4.19-rc1' of git://git.monstr.eu/linux-2.6-microblaze:
        microblaze/PCI: Remove stale pcibios_align_resource() comment
        microblaze: delete wrong comment about machine_early_init
        microblaze: add endianness options to LDFLAGS instead of LD
        microblaze: remove consistent_sync and consistent_sync_page
        microblaze: use generic dma_noncoherent_ops
        microblaze: warn if of_iomap() failed
      5e268309
    • Lorenzo Pieralisi's avatar
      microblaze/PCI: Remove stale pcibios_align_resource() comment · c4347b05
      Lorenzo Pieralisi authored
      commit 01cf9d52 ("microblaze/PCI: Support generic Xilinx AXI PCIe Host
      Bridge IP driver")
      
      and
      
      commit ecf677c8 ("PCI: Add a generic weak pcibios_align_resource()")
      
      first patched then removed pcibios_align_resource() from the microblaze
      architecture code but failed to remove the comment that was added to
      it.
      
      Remove it since it has now become stale and it is quite confusing.
      Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
      Cc: Palmer Dabbelt <palmer@dabbelt.com>
      Cc: Bjorn Helgaas <bhelgaas@google.com>
      Cc: Bharat Kumar Gogada <bharatku@xilinx.com>
      Cc: Michal Simek <monstr@monstr.eu>
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      c4347b05
    • Linus Torvalds's avatar
      Merge tag 'please-pull-noboot' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux · 778a3395
      Linus Torvalds authored
      Pull ia64 NO_BOOTMEM conversion from Tony Luck:
       "Mike Rapoport kindly fixed up ia64 to work with NO_BOOTMEM"
      
      * tag 'please-pull-noboot' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux:
        ia64: switch to NO_BOOTMEM
        ia64: use mem_data to detect nodes' minimal and maximal PFNs
        ia64: remove unused num_dma_physpages member from 'struct early_node_data'
        ia64: contig/paging_init: reduce code duplication
      778a3395
    • Linus Torvalds's avatar
      Merge tag 'linux-kselftest-4.19-rc1' of... · 6b2edf27
      Linus Torvalds authored
      Merge tag 'linux-kselftest-4.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
      
      Pull Kselftest update from Shuah Khan:
      
       - add cgroup core selftests
      
       - fix compile warnings in android ion test
      
       - fix to bugs in exclude and skip paths in vDSO test
      
       - remove obsolete config options
      
       - add missing .gitignore file
      
      * tag 'linux-kselftest-4.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
        selftests/ftrace: Fix kprobe string testcase to not probe notrace function
        selftests: mount: remove no longer needed config option
        selftests: cgroup: add gitignore file
        Add cgroup core selftests
        selftests: vDSO - fix to return KSFT_SKIP when test couldn't be run
        selftests: vDSO - fix to exclude x86 test on non-x86 platforms
        selftests/android: initialize heap_type to avoid compiling warning
      6b2edf27
    • Linus Torvalds's avatar
      Merge tag 'trace-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace · 7140ad38
      Linus Torvalds authored
      Pull tracing updates from Steven Rostedt:
      
       - Restructure of lockdep and latency tracers
      
         This is the biggest change. Joel Fernandes restructured the hooks
         from irqs and preemption disabling and enabling. He got rid of a lot
         of the preprocessor #ifdef mess that they caused.
      
         He turned both lockdep and the latency tracers to use trace events
         inserted in the preempt/irqs disabling paths. But unfortunately,
         these started to cause issues in corner cases. Thus, parts of the
         code was reverted back to where lockdep and the latency tracers just
         get called directly (without using the trace events). But because the
         original change cleaned up the code very nicely we kept that, as well
         as the trace events for preempt and irqs disabling, but they are
         limited to not being called in NMIs.
      
       - Have trace events use SRCU for "rcu idle" calls. This was required
         for the preempt/irqs off trace events. But it also had to not allow
         them to be called in NMI context. Waiting till Paul makes an NMI safe
         SRCU API.
      
       - New notrace SRCU API to allow trace events to use SRCU.
      
       - Addition of mcount-nop option support
      
       - SPDX headers replacing GPL templates.
      
       - Various other fixes and clean ups.
      
       - Some fixes are marked for stable, but were not fully tested before
         the merge window opened.
      
      * tag 'trace-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace: (44 commits)
        tracing: Fix SPDX format headers to use C++ style comments
        tracing: Add SPDX License format tags to tracing files
        tracing: Add SPDX License format to bpf_trace.c
        blktrace: Add SPDX License format header
        s390/ftrace: Add -mfentry and -mnop-mcount support
        tracing: Add -mcount-nop option support
        tracing: Avoid calling cc-option -mrecord-mcount for every Makefile
        tracing: Handle CC_FLAGS_FTRACE more accurately
        Uprobe: Additional argument arch_uprobe to uprobe_write_opcode()
        Uprobes: Simplify uprobe_register() body
        tracepoints: Free early tracepoints after RCU is initialized
        uprobes: Use synchronize_rcu() not synchronize_sched()
        tracing: Fix synchronizing to event changes with tracepoint_synchronize_unregister()
        ftrace: Remove unused pointer ftrace_swapper_pid
        tracing: More reverting of "tracing: Centralize preemptirq tracepoints and unify their usage"
        tracing/irqsoff: Handle preempt_count for different configs
        tracing: Partial revert of "tracing: Centralize preemptirq tracepoints and unify their usage"
        tracing: irqsoff: Account for additional preempt_disable
        trace: Use rcu_dereference_raw for hooks from trace-event subsystem
        tracing/kprobes: Fix within_notrace_func() to check only notrace functions
        ...
      7140ad38
    • Linus Torvalds's avatar
      Merge tag 'ceph-for-4.19-rc1' of git://github.com/ceph/ceph-client · 0a78ac4b
      Linus Torvalds authored
      Pull ceph updates from Ilya Dryomov:
       "The main things are support for cephx v2 authentication protocol and
        basic support for rbd images within namespaces (myself).
      
        Also included are y2038 conversion patches from Arnd, a pile of
        miscellaneous fixes from Chengguang and Zheng's feature bit
        infrastructure for the filesystem"
      
      * tag 'ceph-for-4.19-rc1' of git://github.com/ceph/ceph-client: (40 commits)
        ceph: don't drop message if it contains more data than expected
        ceph: support cephfs' own feature bits
        crush: fix using plain integer as NULL warning
        libceph: remove unnecessary non NULL check for request_key
        ceph: refactor error handling code in ceph_reserve_caps()
        ceph: refactor ceph_unreserve_caps()
        ceph: change to void return type for __do_request()
        ceph: compare fsc->max_file_size and inode->i_size for max file size limit
        ceph: add additional size check in ceph_setattr()
        ceph: add additional offset check in ceph_write_iter()
        ceph: add additional range check in ceph_fallocate()
        ceph: add new field max_file_size in ceph_fs_client
        libceph: weaken sizeof check in ceph_x_verify_authorizer_reply()
        libceph: check authorizer reply/challenge length before reading
        libceph: implement CEPHX_V2 calculation mode
        libceph: add authorizer challenge
        libceph: factor out encrypt_authorizer()
        libceph: factor out __ceph_x_decrypt()
        libceph: factor out __prepare_write_connect()
        libceph: store ceph_auth_handshake pointer in ceph_connection
        ...
      0a78ac4b
  3. 20 Aug, 2018 26 commits