| Submitter | Ulrich Drepper |
|---|---|
| Date | June 20, 2012, 5:11 p.m. |
| Message ID | <CAOPLpQe+PE0NLuDuPZ1JuF+8ivr1Y+xF8dNN4y-DXV7endYtFg@mail.gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/166126/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff -u b/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt --- b/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt @@ -2192,7 +2192,7 @@ realloc same as realloc=on busnum_node= Format: - <bus>:<node>[, ...] + <bus>:<node>[;...] Specifies node for bus noari do not use PCIe ARI. pcie_scan_all Scan all possible PCIe devices. Otherwise we diff -u b/arch/x86/pci/common.c b/arch/x86/pci/common.c --- b/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c @@ -509,7 +509,7 @@ } set_mp_bus_to_node(bus, node); p += count; - if (*p != ',') + if (*p != ';') break; p++; }