1. 07 Mar, 2024 1 commit
    • Rafael J. Wysocki's avatar
      Merge branches 'thermal-core' and 'thermal-intel' · dcb497ec
      Rafael J. Wysocki authored
      Merge thermal core changes and Intel thermal drivers changes for
      6.9-rc1:
      
       - Store zone trips table and zone operations directly in struct
         thermal_zone_device (Rafael Wysocki).
      
       - Rework writable trip points handling (Rafael Wysocki).
      
       - Thermal core code cleanups (Dan Carpenter, Flavio Suligoi).
      
       - Use thermal zone accessor functions in the int340x Intel thermal
         driver (Rafael Wysocki).
      
       - Add Lunar Lake-M PCI ID to the int340x Intel thermal driver (Srinivas
         Pandruvada).
      
      * thermal-core:
        thermal: core: remove unnecessary check in trip_point_hyst_store()
        thermal: core: Remove excess empty line from a comment
        thermal: core: Eliminate writable trip points masks
        thermal: of: Set THERMAL_TRIP_FLAG_RW_TEMP directly
        thermal: imx: Set THERMAL_TRIP_FLAG_RW_TEMP directly
        wifi: iwlwifi: mvm: Set THERMAL_TRIP_FLAG_RW_TEMP directly
        mlxsw: core_thermal: Set THERMAL_TRIP_FLAG_RW_TEMP directly
        thermal: intel: Set THERMAL_TRIP_FLAG_RW_TEMP directly
        thermal: core: Drop the .set_trip_hyst() thermal zone operation
        thermal: core: Add flags to struct thermal_trip
        thermal: core: Move initial num_trips assignment before memcpy()
        thermal: Get rid of CONFIG_THERMAL_WRITABLE_TRIPS
        thermal: intel: Adjust ops handling during thermal zone registration
        thermal: ACPI: Constify acpi_thermal_zone_ops
        thermal: core: Store zone ops in struct thermal_zone_device
        thermal: intel: Discard trip tables after zone registration
        thermal: ACPI: Discard trips table after zone registration
        thermal: core: Store zone trips table in struct thermal_zone_device
      
      * thermal-intel:
        thermal: intel: int340x_thermal: Use thermal zone accessor functions
        thermal: int340x: processor_thermal: Add Lunar Lake-M PCI ID
      dcb497ec
  2. 06 Mar, 2024 1 commit
  3. 05 Mar, 2024 3 commits
  4. 28 Feb, 2024 1 commit
  5. 27 Feb, 2024 9 commits
  6. 23 Feb, 2024 8 commits
    • Rafael J. Wysocki's avatar
      thermal: Get rid of CONFIG_THERMAL_WRITABLE_TRIPS · a85739c8
      Rafael J. Wysocki authored
      The only difference made by CONFIG_THERMAL_WRITABLE_TRIPS is whether or
      not the writable trips mask passed during thermal zone registration
      will take any effect, but whoever passes a non-zero writable trips mask
      to thermal_zone_device_register_with_trips() can be forgiven thinking
      that it will always work.
      
      Moreover, some thermal drivers expect user space to set trip temperature
      values, so they select CONFIG_THERMAL_WRITABLE_TRIPS, possibly overriding
      a manual choice to unset it and going against the design purportedly
      allowing system integrators to decide on the writability of trip points
      for the given kernel build.  It is also set in one platform's defconfig.
      
      Forthermore, CONFIG_THERMAL_WRITABLE_TRIPS only affects trip temperature,
      because trip hysteresis is writable as long as the thermal zone provides
      a callback to update it, regardless of the CONFIG_THERMAL_WRITABLE_TRIPS
      value.
      
      The above means that the symbol in question is used inconsistently and
      its purpose is at least moot, so remove it and always take the writable
      trip mask passed to thermal_zone_device_register_with_trips() into
      account.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      a85739c8
    • Rafael J. Wysocki's avatar
      thermal: intel: Adjust ops handling during thermal zone registration · 62dd1784
      Rafael J. Wysocki authored
      Because thermal zone operations are now stored directly in struct
      thermal_zone_device, thermal zone creators can discard the operations
      structure after the zone registration is complete, or it can be made
      read-only.
      
      Accordingly, make int340x_thermal_zone_add() use a local variable to
      represent thermal zone operations, so it is freed automatically upon the
      function exit, and make the other Intel thermal drivers use const zone
      operations structures.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
      Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      62dd1784
    • Rafael J. Wysocki's avatar
      thermal: ACPI: Constify acpi_thermal_zone_ops · 75fb8714
      Rafael J. Wysocki authored
      Because thermal zone operations are now stored directly in struct
      thermal_zone_device, acpi_thermal_zone_ops need not be modified by
      the thermal core and so it can be const.
      
      Adjust the code accordingly.
      
      No functional impact.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Acked-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      75fb8714
    • Rafael J. Wysocki's avatar
      thermal: core: Store zone ops in struct thermal_zone_device · 698a1eb1
      Rafael J. Wysocki authored
      The current code requires thermal zone creators to pass pointers to
      writable ops structures to thermal_zone_device_register_with_trips()
      which needs to modify the target struct thermal_zone_device_ops object
      if the "critical" operation in it is NULL.
      
      Moreover, the callers of thermal_zone_device_register_with_trips() are
      required to hold on to the struct thermal_zone_device_ops object passed
      to it until the given thermal zone is unregistered.
      
      Both of these requirements are quite inconvenient, so modify struct
      thermal_zone_device to contain struct thermal_zone_device_ops as field and
      make thermal_zone_device_register_with_trips() copy the contents of the
      struct thermal_zone_device_ops passed to it via a pointer (which can be
      const now) to that field.
      
      Also adjust the code using thermal zone ops accordingly and modify
      thermal_of_zone_register() to use a local ops variable during
      thermal zone registration so ops do not need to be freed in
      thermal_of_zone_unregister() any more.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
      Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      698a1eb1
    • Rafael J. Wysocki's avatar
      thermal: intel: Discard trip tables after zone registration · fcbf8780
      Rafael J. Wysocki authored
      Because the thermal core creates and uses its own copy of the trips
      table passed to thermal_zone_device_register_with_trips(), it is not
      necessary to hold on to a local copy of it any more after the given
      thermal zone has been registered.
      
      Accordingly, modify Intel thermal drivers to discard the trips tables
      passed to thermal_zone_device_register_with_trips() after thermal zone
      registration, for example by storing them in local variables which are
      automatically discarded when the zone registration is complete.
      
      Also make some additional code simplifications unlocked by the above
      changes.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
      Acked-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      fcbf8780
    • Rafael J. Wysocki's avatar
      thermal: ACPI: Discard trips table after zone registration · 9686f04a
      Rafael J. Wysocki authored
      Because the thermal core creates and uses its own copy of the trips
      table passed to thermal_zone_device_register_with_trips(), it is not
      necessary to hold on to a local copy of it any more after the given
      thermal zone has been registered.
      
      Accordingly, modify the ACPI thermal driver to store the trips table
      passed to thermal_zone_device_register_with_trips() in a local variable
      which is automatically discarded when acpi_thermal_add() returns to
      its caller.
      
      Also make some additional code simplifications unlocked by the above
      change.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
      Acked-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      9686f04a
    • Rafael J. Wysocki's avatar
      thermal: core: Store zone trips table in struct thermal_zone_device · 9b0a6275
      Rafael J. Wysocki authored
      The current code expects thermal zone creators to pass a pointer to a
      writable trips table to thermal_zone_device_register_with_trips() and
      that trips table is then used by the thermal core going forward.
      
      Consequently, the callers of thermal_zone_device_register_with_trips()
      are required to hold on to the trips table passed to it until the given
      thermal zone is unregistered, at which point the trips table can be
      freed, but at the same time they are not expected to access that table
      directly.  This is both error prone and confusing.
      
      To address it, turn the trips table pointer in struct thermal_zone_device
      into a flex array (counted by its num_trips field), allocate it during
      thermal zone device allocation and copy the contents of the trips table
      supplied by the zone creator (which can be const now) into it, which
      will allow the callers of thermal_zone_device_register_with_trips() to
      drop their trip tables right after the zone registration.
      
      This requires the imx thermal driver to be adjusted to store the new
      temperature in its internal trips table in imx_set_trip_temp(), because
      it will be separate from the core's trips table now and it has to be
      explicitly kept in sync with the latter.
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Reviewed-by: default avatarStanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
      Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
      9b0a6275
    • Rafael J. Wysocki's avatar
      Merge branch 'thermal-core' · 2c8459a5
      Rafael J. Wysocki authored
      Merge thermal core changes for 6.9:
      
       - Minor fixes for thermal governors (Rafael J. Wysocki, Di Shen).
      
       - Trip point handling fixes for the iwlwifi wireless driver (Rafael J.
         Wysocki).
      
       - Code cleanups (Rafael J. Wysocki, AngeloGioacchino Del Regno).
      
      * thermal-tmp:
        thermal: gov_power_allocator: Avoid overwriting PID coefficients from setup time
        thermal: sysfs: Fix up white space in trip_point_temp_store()
        iwlwifi: mvm: Use for_each_thermal_trip() for walking trip points
        iwlwifi: mvm: Populate trip table before registering thermal zone
        iwlwifi: mvm: Drop unused fw_trips_index[] from iwl_mvm_thermal_device
        thermal: core: Change governor name to const char pointer
        thermal: gov_bang_bang: Fix possible cooling device state ping-pong
        thermal: gov_fair_share: Fix dependency on trip points ordering
      2c8459a5
  7. 12 Feb, 2024 3 commits
  8. 11 Feb, 2024 3 commits
  9. 10 Feb, 2024 8 commits
    • Linus Torvalds's avatar
      Merge tag 'mm-hotfixes-stable-2024-02-10-11-16' of... · 7521f258
      Linus Torvalds authored
      Merge tag 'mm-hotfixes-stable-2024-02-10-11-16' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
      
      Pull misc fixes from Andrew Morton:
       "21 hotfixes. 12 are cc:stable and the remainder pertain to post-6.7
        issues or aren't considered to be needed in earlier kernel versions"
      
      * tag 'mm-hotfixes-stable-2024-02-10-11-16' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (21 commits)
        nilfs2: fix potential bug in end_buffer_async_write
        mm/damon/sysfs-schemes: fix wrong DAMOS tried regions update timeout setup
        nilfs2: fix hang in nilfs_lookup_dirty_data_buffers()
        MAINTAINERS: Leo Yan has moved
        mm/zswap: don't return LRU_SKIP if we have dropped lru lock
        fs,hugetlb: fix NULL pointer dereference in hugetlbs_fill_super
        mailmap: switch email address for John Moon
        mm: zswap: fix objcg use-after-free in entry destruction
        mm/madvise: don't forget to leave lazy MMU mode in madvise_cold_or_pageout_pte_range()
        arch/arm/mm: fix major fault accounting when retrying under per-VMA lock
        selftests: core: include linux/close_range.h for CLOSE_RANGE_* macros
        mm/memory-failure: fix crash in split_huge_page_to_list from soft_offline_page
        mm: memcg: optimize parent iteration in memcg_rstat_updated()
        nilfs2: fix data corruption in dsync block recovery for small block sizes
        mm/userfaultfd: UFFDIO_MOVE implementation should use ptep_get()
        exit: wait_task_zombie: kill the no longer necessary spin_lock_irq(siglock)
        fs/proc: do_task_stat: use sig->stats_lock to gather the threads/children stats
        fs/proc: do_task_stat: move thread_group_cputime_adjusted() outside of lock_task_sighand()
        getrusage: use sig->stats_lock rather than lock_task_sighand()
        getrusage: move thread_group_cputime_adjusted() outside of lock_task_sighand()
        ...
      7521f258
    • Linus Torvalds's avatar
      Merge tag 'block-6.8-2024-02-10' of git://git.kernel.dk/linux · a5b6244c
      Linus Torvalds authored
      Pull block fixes from Jens Axboe:
      
       - NVMe pull request via Keith:
           - Update a potentially stale firmware attribute (Maurizio)
           - Fixes for the recent verbose error logging (Keith, Chaitanya)
           - Protection information payload size fix for passthrough (Francis)
      
       - Fix for a queue freezing issue in virtblk (Yi)
      
       - blk-iocost underflow fix (Tejun)
      
       - blk-wbt task detection fix (Jan)
      
      * tag 'block-6.8-2024-02-10' of git://git.kernel.dk/linux:
        virtio-blk: Ensure no requests in virtqueues before deleting vqs.
        blk-iocost: Fix an UBSAN shift-out-of-bounds warning
        nvme: use ns->head->pi_size instead of t10_pi_tuple structure size
        nvme-core: fix comment to reflect right functions
        nvme: move passthrough logging attribute to head
        blk-wbt: Fix detection of dirty-throttled tasks
        nvme-host: fix the updating of the firmware version
      a5b6244c
    • Linus Torvalds's avatar
      Merge tag 'firewire-fixes-6.8-rc4' of... · a38ff5bb
      Linus Torvalds authored
      Merge tag 'firewire-fixes-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394
      
      Pull firewire fix from Takashi Sakamoto:
       "A change to accelerate the device detection step in some cases.
      
        In the self-identification step after bus-reset, all nodes in the same
        bus broadcast selfID packet including the value of gap count. The
        value is related to the cable hops between nodes, and used to
        calculate the subaction gap and the arbitration reset gap.
      
        When each node has the different value of the gap count, the
        asynchronous communication between them is unreliable, since an
        asynchronous transaction could be interrupted by another asynchronous
        transaction before completion. The gap count inconsistency can be
        resolved by several ways; e.g. the transfer of PHY configuration
        packet and generation of bus-reset.
      
        The current implementation of firewire stack can correctly detect the
        gap count inconsistency, however the recovery action from the
        inconsistency tends to be delayed after reading configuration ROM of
        root node. This results in the long time to probe devices in some
        combinations of hardware.
      
        Here the stack is changed to schedule the action as soon as possible"
      
      * tag 'firewire-fixes-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394:
        firewire: core: send bus reset promptly on gap count error
      a38ff5bb
    • Linus Torvalds's avatar
      Merge tag '6.8-rc3-ksmbd-server-fixes' of git://git.samba.org/ksmbd · 5a7ec870
      Linus Torvalds authored
      Pull smb server fixes from Steve French:
       "Two ksmbd server fixes:
      
         - memory leak fix
      
         - a minor kernel-doc fix"
      
      * tag '6.8-rc3-ksmbd-server-fixes' of git://git.samba.org/ksmbd:
        ksmbd: free aux buffer if ksmbd_iov_pin_rsp_read fails
        ksmbd: Add kernel-doc for ksmbd_extract_sharename() function
      5a7ec870
    • Linus Torvalds's avatar
      Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · 4a7bbe75
      Linus Torvalds authored
      Pull SCSI fixes from James Bottomley:
       "Three small driver fixes and one core fix.
      
        The core fix being a fixup to the one in the last pull request which
        didn't entirely move checking of scsi_host_busy() out from under the
        host lock"
      
      * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
        scsi: ufs: core: Remove the ufshcd_release() in ufshcd_err_handling_prepare()
        scsi: ufs: core: Fix shift issue in ufshcd_clear_cmd()
        scsi: lpfc: Use unsigned type for num_sge
        scsi: core: Move scsi_host_busy() out of host lock if it is for per-command
      4a7bbe75
    • Linus Torvalds's avatar
      Merge tag '6.8-rc3-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 · ca00c700
      Linus Torvalds authored
      Pull smb client fixes from Steve French:
      
       - reconnect fix
      
       - multichannel channel selection fix
      
       - minor mount warning fix
      
       - reparse point fix
      
       - null pointer check improvement
      
      * tag '6.8-rc3-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
        smb3: clarify mount warning
        cifs: handle cases where multiple sessions share connection
        cifs: change tcon status when need_reconnect is set on it
        smb: client: set correct d_type for reparse points under DFS mounts
        smb3: add missing null server pointer check
      ca00c700
    • Linus Torvalds's avatar
      Merge tag 'ceph-for-6.8-rc4' of https://github.com/ceph/ceph-client · e1e3f530
      Linus Torvalds authored
      Pull ceph fixes from Ilya Dryomov:
       "Some fscrypt-related fixups (sparse reads are used only for encrypted
        files) and two cap handling fixes from Xiubo and Rishabh"
      
      * tag 'ceph-for-6.8-rc4' of https://github.com/ceph/ceph-client:
        ceph: always check dir caps asynchronously
        ceph: prevent use-after-free in encode_cap_msg()
        ceph: always set initial i_blkbits to CEPH_FSCRYPT_BLOCK_SHIFT
        libceph: just wait for more data to be available on the socket
        libceph: rename read_sparse_msg_*() to read_partial_sparse_msg_*()
        libceph: fail sparse-read if the data length doesn't match
      e1e3f530
    • Linus Torvalds's avatar
      Merge tag 'ntfs3_for_6.8' of https://github.com/Paragon-Software-Group/linux-ntfs3 · a2343df3
      Linus Torvalds authored
      Pull ntfs3 fixes from Konstantin Komarov:
       "Fixed:
         - size update for compressed file
         - some logic errors, overflows
         - memory leak
         - some code was refactored
      
        Added:
         - implement super_operations::shutdown
      
        Improved:
         - alternative boot processing
         - reduced stack usage"
      
      * tag 'ntfs3_for_6.8' of https://github.com/Paragon-Software-Group/linux-ntfs3: (28 commits)
        fs/ntfs3: Slightly simplify ntfs_inode_printk()
        fs/ntfs3: Add ioctl operation for directories (FITRIM)
        fs/ntfs3: Fix oob in ntfs_listxattr
        fs/ntfs3: Fix an NULL dereference bug
        fs/ntfs3: Update inode->i_size after success write into compressed file
        fs/ntfs3: Fixed overflow check in mi_enum_attr()
        fs/ntfs3: Correct function is_rst_area_valid
        fs/ntfs3: Use i_size_read and i_size_write
        fs/ntfs3: Prevent generic message "attempt to access beyond end of device"
        fs/ntfs3: use non-movable memory for ntfs3 MFT buffer cache
        fs/ntfs3: Use kvfree to free memory allocated by kvmalloc
        fs/ntfs3: Disable ATTR_LIST_ENTRY size check
        fs/ntfs3: Fix c/mtime typo
        fs/ntfs3: Add NULL ptr dereference checking at the end of attr_allocate_frame()
        fs/ntfs3: Add and fix comments
        fs/ntfs3: ntfs3_forced_shutdown use int instead of bool
        fs/ntfs3: Implement super_operations::shutdown
        fs/ntfs3: Drop suid and sgid bits as a part of fpunch
        fs/ntfs3: Add file_modified
        fs/ntfs3: Correct use bh_read
        ...
      a2343df3
  10. 09 Feb, 2024 3 commits