summaryrefslogtreecommitdiffstats
path: root/src/include/kernel
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2011-06-17 12:35:39 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2011-06-24 11:30:00 -0500
commitd85739a1ad9e58339f5a58225da2ba5c7476c68b (patch)
treeae0acc7d51df7c742e8683ee100558ecb8766ff2 /src/include/kernel
parent74d2fd5773f91470e17009b5da93f9d4a5cb1d5c (diff)
downloadtalos-hostboot-d85739a1ad9e58339f5a58225da2ba5c7476c68b.tar.gz
talos-hostboot-d85739a1ad9e58339f5a58225da2ba5c7476c68b.zip
Remove heap allocation of xscom mutex.
Since mutexes are simply a uint64 with a static initializer, the xscom mutex is now a instance variable directly in the cpu object. Remove unneeded mutex_create function and changed the behavior of mutex_destroy. Change-Id: If6e1d1bf0083c32ef9e7502d27678811bdaf7e1e Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/150 Tested-by: Jenkins Server Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com> Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Diffstat (limited to 'src/include/kernel')
-rw-r--r--src/include/kernel/cpu.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/kernel/cpu.H b/src/include/kernel/cpu.H
index 0f36dd941..8f6fedb69 100644
--- a/src/include/kernel/cpu.H
+++ b/src/include/kernel/cpu.H
@@ -36,7 +36,7 @@ struct cpu_t
task_t* idle_task;
/** XSCOM mutex to serialize access per CPU */
- mutex_t * xscom_mutex;
+ mutex_t xscom_mutex;
};
/** @fn getCpuId
OpenPOWER on IntegriCloud