[PATCH] powerpc: Remove lppaca structure from the PACA
At present the lppaca - the structure shared with the iSeries hypervisor and phyp - is contained within the PACA, our own low-level per-cpu structure. This doesn't have to be so, the patch below removes it, making a separate array of lppaca structures. This saves approximately 500*NR_CPUS bytes of image size and kernel memory, because we don't need aligning gap between the Linux and hypervisor portions of every PACA. On the other hand it means an extra level of dereference in many accesses to the lppaca. The patch also gets rid of several places where we assign the paca address to a local variable for no particular reason. Signed-off-by: David Gibson <dwg@au1.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:

کامیت شده توسط
Paul Mackerras

والد
e58c3495e6
کامیت
3356bb9f7b
@@ -91,7 +91,7 @@ static void smp_iSeries_kick_cpu(int nr)
|
||||
BUG_ON((nr < 0) || (nr >= NR_CPUS));
|
||||
|
||||
/* Verify that our partition has a processor nr */
|
||||
if (paca[nr].lppaca.dyn_proc_status >= 2)
|
||||
if (lppaca[nr].dyn_proc_status >= 2)
|
||||
return;
|
||||
|
||||
/* The processor is currently spinning, waiting
|
||||
|
مرجع در شماره جدید
Block a user