1. 08 Feb, 2023 1 commit
  2. 07 Feb, 2023 5 commits
  3. 06 Feb, 2023 6 commits
  4. 02 Feb, 2023 1 commit
    • V sujith kumar Reddy's avatar
      ASoC: SOF: amd: Fix for handling spurious interrupts from DSP · 2e7c6652
      V sujith kumar Reddy authored
      As interrupts are Level-triggered,unless and until we deassert the register
      the interrupts are generated which causes spurious interrupts unhandled.
      
      Now we deasserted the interrupt at top half which solved the below
      "nobody cared" warning.
      
      warning reported in dmesg:
      	irq 80: nobody cared (try booting with the "irqpoll" option)
      	CPU: 5 PID: 2735 Comm: irq/80-AudioDSP
      		Not tainted 5.15.86-15817-g4c19f3e06d49 #1 1bd3fd932cf58caacc95b0504d6ea1e3eab22289
      	Hardware name: Google Skyrim/Skyrim, BIOS Google_Skyrim.15303.0.0 01/03/2023
      	Call Trace:
      	<IRQ>
      	dump_stack_lvl+0x69/0x97
      	 __report_bad_irq+0x3a/0xae
      	note_interrupt+0x1a9/0x1e3
      	handle_irq_event_percpu+0x4b/0x6e
      	handle_irq_event+0x36/0x5b
      	handle_fasteoi_irq+0xae/0x171
      	 __common_interrupt+0x48/0xc4
      	</IRQ>
      
      	handlers:
      	acp_irq_handler [snd_sof_amd_acp] threaded [<000000007e089f34>] acp_irq_thread [snd_sof_amd_acp]
      	Disabling IRQ #80
      Signed-off-by: default avatarV sujith kumar Reddy <Vsujithkumar.Reddy@amd.com>
      Link: https://lore.kernel.org/r/20230203123254.1898794-1-Vsujithkumar.Reddy@amd.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      2e7c6652
  5. 01 Feb, 2023 2 commits
  6. 31 Jan, 2023 1 commit
  7. 30 Jan, 2023 1 commit
  8. 28 Jan, 2023 1 commit
    • Takashi Iwai's avatar
      Merge tag 'asoc-fix-v6.2-rc5' of... · 4f876bfd
      Takashi Iwai authored
      Merge tag 'asoc-fix-v6.2-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
      
      ASoC: Fixes for v6.2
      
      An unfortunately large batch of fixes here, the numbers amplified
      by several repeated fixes for patterns of bugs in multiple
      drivers.  Most of this is in the x86 drivers which are very
      actively developed, the implementation of PCI shutdown is a fix
      for issues with spamming warnings into the logs with a leaked
      reference to the i915 driver.
      4f876bfd
  9. 27 Jan, 2023 1 commit
  10. 26 Jan, 2023 1 commit
  11. 25 Jan, 2023 1 commit
  12. 24 Jan, 2023 1 commit
  13. 23 Jan, 2023 2 commits
  14. 20 Jan, 2023 4 commits
  15. 19 Jan, 2023 5 commits
  16. 18 Jan, 2023 6 commits
  17. 17 Jan, 2023 1 commit
    • Takashi Sakamoto's avatar
      firewire: fix memory leak for payload of request subaction to IEC 61883-1 FCP region · 531390a2
      Takashi Sakamoto authored
      This patch is fix for Linux kernel v2.6.33 or later.
      
      For request subaction to IEC 61883-1 FCP region, Linux FireWire subsystem
      have had an issue of use-after-free. The subsystem allows multiple
      user space listeners to the region, while data of the payload was likely
      released before the listeners execute read(2) to access to it for copying
      to user space.
      
      The issue was fixed by a commit 281e2032 ("firewire: core: fix
      use-after-free regression in FCP handler"). The object of payload is
      duplicated in kernel space for each listener. When the listener executes
      ioctl(2) with FW_CDEV_IOC_SEND_RESPONSE request, the object is going to
      be released.
      
      However, it causes memory leak since the commit relies on call of
      release_request() in drivers/firewire/core-cdev.c. Against the
      expectation, the function is never called due to the design of
      release_client_resource(). The function delegates release task
      to caller when called with non-NULL fourth argument. The implementation
      of ioctl_send_response() is the case. It should release the object
      explicitly.
      
      This commit fixes the bug.
      
      Cc: <stable@vger.kernel.org>
      Fixes: 281e2032 ("firewire: core: fix use-after-free regression in FCP handler")
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20230117090610.93792-2-o-takashi@sakamocchi.jpSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      531390a2