mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 04:04:43 +01:00
The patch 'Replace atoi() with a robust strtoi()' introduced a bug
in parse_cpu_set(), which relies on partial parsing of the input string.
The function parses CPU specifications like '0-3,5' by incrementing
a pointer through the string. strtoi() rejects strings with trailing
characters, causing parse_cpu_set() to fail on any CPU list with
multiple entries.
Restore the original use of atoi() in parse_cpu_set().
Fixes:
|
||
|---|---|---|
| .. | ||
| latency | ||
| rtla | ||
| Makefile | ||