[libvirt] [PATCH] nodeinfo: Prefer MIN in nodeGetFreePages

23 Sep
2014
23 Sep
'14
5:49 a.m.
It's better to use a macro instead of if-else construct. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> --- Pushed under trivial rule. src/nodeinfo.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 1b4a8d7..2459922 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -2041,9 +2041,7 @@ nodeGetFreePages(unsigned int npages, goto cleanup; } - lastCell = startCell + cellCount; - if (startCell + cellCount < lastCell) - lastCell = startCell + cellCount; + lastCell = MIN(lastCell, startCell + cellCount); for (cell = startCell; cell < lastCell; cell++) { for (i = 0; i < npages; i++) { -- 1.8.5.5
4005
Age (days ago)
4005
Last active (days ago)
0 comments
1 participants
participants (1)
-
Michal Privoznik