Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
acpi-numa-mem_hotplug-mark-hotpluggable-memory-in-memblock-checkpatch…
Browse files Browse the repository at this point in the history
…-fixes

WARNING: line over 80 characters
torvalds#65: FILE: arch/x86/mm/srat.c:187:
+			(unsigned long long) start, (unsigned long long) end - 1);

total: 0 errors, 1 warnings, 19 lines checked

./patches/acpi-numa-mem_hotplug-mark-hotpluggable-memory-in-memblock.patch has style problems, please review.

If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Tang Chen <[email protected]>
Cc: Zhang Yanfei <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
akpm00 authored and sfrothwell committed Jan 3, 2014
1 parent 6cc2a2f commit 8953a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/mm/srat.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma)
/* Mark hotplug range in memblock. */
if (hotpluggable && memblock_mark_hotplug(start, ma->length))
pr_warn("SRAT: Failed to mark hotplug range [mem %#010Lx-%#010Lx] in memblock\n",
(unsigned long long) start, (unsigned long long) end - 1);
(unsigned long long)start, (unsigned long long)end - 1);

return 0;
out_err_bad_srat:
Expand Down

0 comments on commit 8953a1a

Please sign in to comment.