CVE-2026-80980

Source
https://cve.org/CVERecord?id=CVE-2026-80980
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80980.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-80980
Downstream
Published
2026-09-11T19:42:40Z
Modified
2026-09-13T03:47:03Z
Summary
net/smc: stop killed, freed and out_of_sync sharing a byte
Details

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

net/smc: stop killed, freed and out_of_sync sharing a byte

The three connection state flags are single-bit bitfields, so they occupy one byte of struct smc_connection and every store to one is a read-modify-write of the other two:

u8  killed : 1;
u8  freed : 1;
u8  out_of_sync : 1;

They are not written under a common lock. smc_cdc_msg_validate() sets out_of_sync from the receive tasklet, while smc_conn_kill() sets killed from process context under lock_sock(), and the receive path does not defer to the backlog when the socket is owned -- smc_cdc_msg_recv() takes only bh_lock_sock().

Give each flag its own byte so a store no longer touches its neighbours. All readers test them as booleans and are unchanged. struct smc_connection grows by two bytes.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/80xxx/CVE-2026-80980.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
b286a0651e4404ab96cdfdcdad8a839a26b3751e
Fixed
313f79149eb337411c64e2c247234b62ef9a3cb9
Fixed
2cb7a8d64b7e8ccdc69bbe48fe9c4eaa79c33aec
Fixed
db51a8658c11a82432b64999519a269c3aabb447

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80980.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.8.0
Fixed
6.18.50
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.2.4

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80980.json"