summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/mdia/mdiaworkitem.C
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@us.ibm.com>2013-04-12 10:19:28 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2013-04-22 17:22:34 -0500
commit6340a95a7e95dc55fc947ecaaabb9b60b88a2915 (patch)
tree54c72ff3b9e3ce7f0541cf14ca188763f4fdec60 /src/usr/diag/mdia/mdiaworkitem.C
parent3e99599f66ac6e9037a1e7de66a15096bbc477b8 (diff)
downloadtalos-hostboot-6340a95a7e95dc55fc947ecaaabb9b60b88a2915.tar.gz
talos-hostboot-6340a95a7e95dc55fc947ecaaabb9b60b88a2915.zip
MDIA: Avoid starting commands on same Centaur
RTC: 38370 Change-Id: I55fb7d9046e54fbcc31dab595bc597724a9a09d4 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/4050 Tested-by: Jenkins Server Reviewed-by: Zane Shelley <zshelle@us.ibm.com> Reviewed-by: Christopher T. Phan <cphan@us.ibm.com> Reviewed-by: Brian H. Horton <brianh@linux.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/diag/mdia/mdiaworkitem.C')
-rw-r--r--src/usr/diag/mdia/mdiaworkitem.C60
1 files changed, 35 insertions, 25 deletions
diff --git a/src/usr/diag/mdia/mdiaworkitem.C b/src/usr/diag/mdia/mdiaworkitem.C
index 2f6f8207e..410d322f1 100644
--- a/src/usr/diag/mdia/mdiaworkitem.C
+++ b/src/usr/diag/mdia/mdiaworkitem.C
@@ -1,25 +1,25 @@
-// IBM_PROLOG_BEGIN_TAG
-// This is an automatically generated prolog.
-//
-// $Source: src/usr/diag/mdia/mdiaworkitem.C $
-//
-// IBM CONFIDENTIAL
-//
-// COPYRIGHT International Business Machines Corp. 2012
-//
-// p1
-//
-// Object Code Only (OCO) source materials
-// Licensed Internal Code Source Materials
-// IBM HostBoot Licensed Internal Code
-//
-// The source code for this program is not published or other-
-// wise divested of its trade secrets, irrespective of what has
-// been deposited with the U.S. Copyright Office.
-//
-// Origin: 30
-//
-// IBM_PROLOG_END
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/diag/mdia/mdiaworkitem.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2012,2013 */
+/* */
+/* p1 */
+/* */
+/* Object Code Only (OCO) source materials */
+/* Licensed Internal Code Source Materials */
+/* IBM HostBoot Licensed Internal Code */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* Origin: 30 */
+/* */
+/* IBM_PROLOG_END_TAG */
/**
* @file mdiaworkitem.C
* @brief threadpool workitem implementation
@@ -55,17 +55,27 @@ int64_t WorkItem::compare(const WorkItem & i_r) const
// if the state machine computed priority is the same,
// give higher priority to mbas on different dmi busses
- // TODO
+ if(iv_chipUnit < i_r.iv_chipUnit)
+ {
+ return -1;
+ }
+
+ if(i_r.iv_chipUnit < iv_chipUnit)
+ {
+ return 1;
+ }
return 0;
}
WorkItem::WorkItem(StateMachine & i_sm,
WorkFlowProperties * i_wfp,
- uint64_t i_priority) :
+ uint64_t i_priority,
+ uint8_t i_chipUnit) :
iv_sm(i_sm),
iv_wfp(i_wfp),
- iv_priority(i_priority)
+ iv_priority(i_priority),
+ iv_chipUnit(i_chipUnit)
{
}
OpenPOWER on IntegriCloud