commit 3829606fc5dffeccdf80aebeed3aa75255257f35 Author: Greg Kroah-Hartman Date: Wed Oct 26 12:53:32 2022 +0200 Linux 6.0.5 Signed-off-by: Greg Kroah-Hartman commit 217fd7557896d990c3dd8beea83a6feeb504f235 Author: Greg Kroah-Hartman Date: Wed Oct 26 12:24:13 2022 +0200 Revert "btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure" This reverts commit 3ea7c50339859394dd667184b5b16eee1ebb53bc which is commit 8a1ae2781dee9fc21ca82db682d37bea4bd074ad upstream. It causes many reported btrfs issues, so revert it for now. Cc: Josef Bacik Cc: David Sterba Cc: Sasha Levin Reported-by: Tobias Powalowski Link: https://lore.kernel.org/r/CAHfPjO8G1Tq2iJDhPry-dPj1vQZRh4NYuRmhHByHgu7_2rQkrQ@mail.gmail.com Reported-by: Ernst Herzberg Link: https://lore.kernel.org/r/8196dd88-4e11-78a7-8f96-20cf3e886e68@net4u.de Signed-off-by: Greg Kroah-Hartman commit c86103faa9db320cc31cc3e878195f9b80fa8a58 Author: Jon Hunter Date: Mon Oct 10 11:00:46 2022 +0100 clk: tegra: Fix Tegra PWM parent clock commit c461c677a8cb19026fd06741a23ff32d0759342b upstream. Commit 8c193f4714df ("pwm: tegra: Optimize period calculation") updated the period calculation in the Tegra PWM driver and now returns an error if the period requested is less than minimum period supported. This is breaking PWM support on various Tegra platforms. For example, on the Tegra210 Jetson Nano platform this is breaking the PWM fan support and probing the PWM fan driver now fails ... pwm-fan pwm-fan: Failed to configure PWM: -22 pwm-fan: probe of pwm-fan failed with error -22 The problem is that the default parent clock for the PWM on Tegra210 is a 32kHz clock and is unable to support the requested PWM period. Fix PWM support on Tegra20, Tegra30, Tegra114, Tegra124 and Tegra210 by updating the parent clock for the PWM to be the PLL_P. Fixes: 8c193f4714df ("pwm: tegra: Optimize period calculation") Signed-off-by: Jon Hunter Tested-by: Robert Eckelmann # TF101 T20 Tested-by: Antoni Aloy Torrens # TF101 T20 Tested-by: Svyatoslav Ryhel # TF201 T30 Tested-by: Andreas Westman Dorcsak # TF700T T3 Link: https://lore.kernel.org/r/20221010100046.6477-1-jonathanh@nvidia.com Acked-by: Uwe Kleine-König Signed-off-by: Stephen Boyd Signed-off-by: Greg Kroah-Hartman