diff options
| author | Brian Stegmiller <bjs@us.ibm.com> | 2015-11-15 10:52:28 -0600 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2015-12-11 15:30:29 -0600 |
| commit | cb1f5614326054b025774dae1a37ad5bdf07902d (patch) | |
| tree | 4b5ef74fd7aac1b7bba91da711da867ccb870920 /src/kernel/syscall.C | |
| parent | bedb0a1a1818ebe6d683028926ccaec14fdb9f8d (diff) | |
| download | talos-hostboot-cb1f5614326054b025774dae1a37ad5bdf07902d.tar.gz talos-hostboot-cb1f5614326054b025774dae1a37ad5bdf07902d.zip | |
HOSTBOOT: Support fused cores
Change-Id: I2ad133be733ee9e41590b3b8bd60bd6abe69d1a9
RTC: 126786
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22054
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/kernel/syscall.C')
| -rw-r--r-- | src/kernel/syscall.C | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/syscall.C b/src/kernel/syscall.C index 1b1bd7f57..92907c3df 100644 --- a/src/kernel/syscall.C +++ b/src/kernel/syscall.C @@ -751,7 +751,8 @@ namespace Systemcalls DeferredWork* deferred = NULL; if (WINKLE_SCOPE_MASTER == TASK_GETARG0(t)) { - deferred = new KernelMisc::WinkleCore(t); + bool l_fusedCores = (bool)TASK_GETARG1(t); + deferred = new KernelMisc::WinkleCore(t, l_fusedCores); } else { |

