page-alloc: Rename the first_node local variable
authorAndrew Cooper <andrew.cooper3@citrix.com>
Tue, 25 Jun 2019 13:07:23 +0000 (14:07 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 27 Jun 2019 17:50:41 +0000 (18:50 +0100)
commit7aac8e81dfe7611f3953f41f5e92498ea6efd261
treeab988698d163516003cc6e162827d76c054df80b
parentde07781ed69cc18b405831b7a7ade1038a1690f4
page-alloc: Rename the first_node local variable

first_node is the name of a local variable, and part of the nodemask API.  The
only reason this compiles is because the nodemask API is implemented as a
macro rather than an inline function.

It is confusing to read, and breaks when the nodemask API is cleaned up.
Rename the local variable to just 'first' which is still clear in context.

No functional change.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
xen/common/page_alloc.c