Answer in brief
CVE-2026-72063 records a Unknown severity vulnerability in gpio: tegra: do not call pinctrl for GPIO direction. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=11da905412833d9b369a6a09a401f87149d674dc <e57a4845b0da60a7b9f052160878097826320954 || >=11da905412833d9b369a6a09a401f87149d674dc <cd17c5a1d9f186b57e9e2949be427803b7110a5c || >=11da905412833d9b369a6a09a401f87149d674dc <ac761e66708d51dac35c4c7f1891ea991dc788f0 || >=11da905412833d9b369a6a09a401f87149d674dc <628c63f96f4564fa145f602af2d41daf9532201f || >=11da905412833d9b369a6a09a401f87149d674dc <d3e91a95b2b0fc6336dbf3ec90d831a1654d2720 | e57a4845b0da60a7b9f052160878097826320954, cd17c5a1d9f186b57e9e2949be427803b7110a5c, ac761e66708d51dac35c4c7f1891ea991dc788f0, 628c63f96f4564fa145f602af2d41daf9532201f, d3e91a95b2b0fc6336dbf3ec90d831a1654d2720 |
| Linux/Linuxgeneric | 5.1 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: gpio: tegra: do not call pinctrl for GPIO direction tegra_gpio_direction_input() and tegra_gpio_direction_output() already program the GPIO controller direction registers directly. The additional pinctrl_gpio_direction_input/output() calls do not add a Tegra pinctrl operation, because the Tegra pinmux ops provide GPIO request/free handling but no gpio_set_direction hook. The extra call still enters the pinctrl core and takes pctldev->mutex. Shared GPIO users can call the direction path while holding their per-line spinlock, so this otherwise redundant pinctrl direction call can sleep in an atomic context. This was found by our static analysis tool and then confirmed by manual review of tegra_gpio_probe(), the Tegra GPIO direction callbacks and the Tegra pinctrl ops. The reviewed path has a default non-sleeping struct gpio_chip while the direction callback still enters the pinctrl mutex path. A directed runtime validation kept the same non-sleeping chip registration and drove: gpio_shared_proxy_direction_output() gpiod_direction_output_raw_commit() tegra_gpio_direction_output() pinctrl_gpio_direction_output() Lockdep reported a sleep-in-atomic warning with the shared GPIO spinlock held and pinctrl_get_device_gpio_range() plus tegra_gpio_direction_output() on the stack. Do not mark the whole chip as can_sleep to paper over this: can_sleep describes whether get()/set() may sleep, and Tegra value access is MMIO. Remove the redundant pinctrl direction calls and keep pinctrl involvement in the existing request/free path.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-72063 records a Unknown severity vulnerability in gpio: tegra: do not call pinctrl for GPIO direction. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=11da905412833d9b369a6a09a401f87149d674dc <e57a4845b0da60a7b9f052160878097826320954 || >=11da905412833d9b369a6a09a401f87149d674dc <cd17c5a1d9f186b57e9e2949be427803b7110a5c || >=11da905412833d9b369a6a09a401f87149d674dc <ac761e66708d51dac35c4c7f1891ea991dc788f0 || >=11da905412833d9b369a6a09a401f87149d674dc <628c63f96f4564fa145f602af2d41daf9532201f || >=11da905412833d9b369a6a09a401f87149d674dc <d3e91a95b2b0fc6336dbf3ec90d831a1654d2720 | e57a4845b0da60a7b9f052160878097826320954, cd17c5a1d9f186b57e9e2949be427803b7110a5c, ac761e66708d51dac35c4c7f1891ea991dc788f0, 628c63f96f4564fa145f602af2d41daf9532201f, d3e91a95b2b0fc6336dbf3ec90d831a1654d2720 |
| Linux/Linuxgeneric | 5.1 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: gpio: tegra: do not call pinctrl for GPIO direction tegra_gpio_direction_input() and tegra_gpio_direction_output() already program the GPIO controller direction registers directly. The additional pinctrl_gpio_direction_input/output() calls do not add a Tegra pinctrl operation, because the Tegra pinmux ops provide GPIO request/free handling but no gpio_set_direction hook. The extra call still enters the pinctrl core and takes pctldev->mutex. Shared GPIO users can call the direction path while holding their per-line spinlock, so this otherwise redundant pinctrl direction call can sleep in an atomic context. This was found by our static analysis tool and then confirmed by manual review of tegra_gpio_probe(), the Tegra GPIO direction callbacks and the Tegra pinctrl ops. The reviewed path has a default non-sleeping struct gpio_chip while the direction callback still enters the pinctrl mutex path. A directed runtime validation kept the same non-sleeping chip registration and drove: gpio_shared_proxy_direction_output() gpiod_direction_output_raw_commit() tegra_gpio_direction_output() pinctrl_gpio_direction_output() Lockdep reported a sleep-in-atomic warning with the shared GPIO spinlock held and pinctrl_get_device_gpio_range() plus tegra_gpio_direction_output() on the stack. Do not mark the whole chip as can_sleep to paper over this: can_sleep describes whether get()/set() may sleep, and Tegra value access is MMIO. Remove the redundant pinctrl direction calls and keep pinctrl involvement in the existing request/free path.
Quoted source text, attributed separately from HOL analysis.