---
id: CVE-2026-89890
title: |-
  In the Linux kernel, the following vulnerability has been resolved:

  media: go7007: defer the ALSA v4l2 put until card release

  go7007_snd_init() already takes a v4l2_device reference for the ALSA
  side, but go7007_snd_remove() drops it i…
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  media: go7007: defer the ALSA v4l2 put until card release

  go7007_snd_init() already takes a v4l2_device reference for the ALSA
  side, but go7007_snd_remove() drops it i…
severity: high
cvss: 7.8
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'
vendor: Linux
product: Linux
affected:
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    1c57d1a3396b2d767d58f10dff09bb397586c714
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    9c4f9628b8558c87903492a777834cc5be14ded3
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    b7a0de398ad510426db9c8e96c516ef7abf48b0e
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    1c9fdd9465211432d5c0ff70caaec0be245823d5
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    29fe4d38fb59ec28ca656cb2dabc2b0f78e78980
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    0745a59945d927652d892437f9647ed6e87c0677
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    e6f1a1ac9b8ccabfec548aef0d0d93eaf4dba4f4
  - >-
    Linux >= d5d3a7cc127d096c22ad63c4ff72970e1beb22ef <
    1bd456afeb8a515137e567967069fce6f8fcd23e
  - Linux 3.10
published: '2026-09-16'
updated: '2026-09-16'
sourceUpdated: '2026-09-16T15:18:15.500'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-89890'
references:
  - url: 'https://git.kernel.org/stable/c/0745a59945d927652d892437f9647ed6e87c0677'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1bd456afeb8a515137e567967069fce6f8fcd23e'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1c57d1a3396b2d767d58f10dff09bb397586c714'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1c9fdd9465211432d5c0ff70caaec0be245823d5'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/29fe4d38fb59ec28ca656cb2dabc2b0f78e78980'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/9c4f9628b8558c87903492a777834cc5be14ded3'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/b7a0de398ad510426db9c8e96c516ef7abf48b0e'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/e6f1a1ac9b8ccabfec548aef0d0d93eaf4dba4f4'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
tags:
  - nvd
  - cve.org
ingestedAt: '2026-09-16T10:53:53.982Z'
epss: 0.00176
epssPercentile: 0.06296
---

## Overview

In the Linux kernel, the following vulnerability has been resolved:

media: go7007: defer the ALSA v4l2 put until card release

go7007_snd_init() already takes a v4l2_device reference for the ALSA
side, but go7007_snd_remove() drops it immediately after calling
snd_card_free_when_closed().

That is too early when a userspace process still has the capture PCM open.
The ALSA card and its PCM callbacks remain alive until the last file is
closed, so the release path can still reach struct go7007 through
pcm->private_data and call go7007_snd_hw_free() after the V4L2 release path
has freed the object.

Move the matching v4l2_device_put() to the ALSA card private_free callback
so the existing ALSA reference covers the whole deferred card lifetime.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
